/* ===================================
   QuizMarshall - Fun & Playful Design
   Game Night Vibes!
   =================================== */

/* CSS Custom Properties */
:root {
    /* Fun Primary Colors */
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --primary-glow: rgba(139, 92, 246, 0.4);

    /* Bright Fun Colors */
    --yellow: #fbbf24;
    --yellow-light: #fde68a;
    --pink: #f472b6;
    --pink-light: #fbcfe8;
    --teal: #2dd4bf;
    --teal-light: #5eead4;
    --orange: #fb923c;
    --orange-light: #fed7aa;
    --blue: #60a5fa;
    --blue-light: #bfdbfe;
    --green: #4ade80;
    --green-light: #bbf7d0;
    --red: #f87171;
    --coral: #ff6b6b;

    /* Gradients - Clean Purple & Teal */
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    --gradient-accent: linear-gradient(135deg, #8b5cf6 0%, #14b8a6 100%);
    --gradient-hero: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #4c1d95 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #faf5ff 100%);

    /* Neutrals */
    --dark: #1e1b4b;
    --dark-light: #312e81;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #faf5ff;
    --white: #ffffff;

    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Fredoka', 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --section-padding-sm: 60px;

    /* Shadows - More playful */
    --shadow-sm: 0 2px 4px rgba(139, 92, 246, 0.1);
    --shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
    --shadow-md: 0 8px 24px rgba(139, 92, 246, 0.15);
    --shadow-lg: 0 16px 40px rgba(139, 92, 246, 0.2);
    --shadow-xl: 0 24px 60px rgba(139, 92, 246, 0.25);
    --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.4);
    --shadow-teal: 0 8px 30px rgba(20, 184, 166, 0.3);
    --shadow-yellow: 0 8px 30px rgba(251, 191, 36, 0.3);

    /* Borders - More rounded! */
    --radius-sm: 12px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-2xl: 40px;
    --radius-full: 9999px;

    /* Fun Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-fast: all 0.15s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   Fun Navigation
   =================================== */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: none;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
}

.navbar-logo {
    height: 75px;
    width: auto;
    margin: -20px 0;
    transition: var(--transition);
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.08) rotate(3deg);
}

.navbar.scrolled .navbar-logo {
    height: 60px;
    margin: -15px 0;
}

.navbar-brand .brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.navbar-brand .brand-highlight {
    color: var(--primary);
}

.navbar.scrolled .navbar-brand .brand-text {
    font-size: 1.35rem;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--gray-600) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-full);
    transition: var(--transition-bounce);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background: var(--gradient-primary);
}

.btn-nav {
    padding: 12px 28px;
    font-weight: 700;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-nav:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===================================
   Fun Buttons
   =================================== */
.btn {
    font-family: var(--font-display);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    transition: var(--transition-bounce);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
    transform: translateY(-4px);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: var(--yellow-light);
    color: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-yellow);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ===================================
   Fun Hero Section
   =================================== */
.hero {
    position: relative;
    padding: 160px 0 120px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.min-vh-hero {
    min-height: calc(100vh - 280px);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Fun floating shapes */
.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.15) 0%, transparent 70%);
    animation: pulse 5s ease-in-out infinite 1s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 20%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Fun floating icons */
.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    animation: floatBounce 4s ease-in-out infinite;
}

.floating-1 { top: 15%; left: 8%; color: var(--yellow); animation-delay: 0s; }
.floating-2 { top: 65%; left: 3%; color: var(--primary-light); animation-delay: 0.5s; }
.floating-3 { top: 25%; right: 5%; color: var(--teal); animation-delay: 1s; }
.floating-4 { top: 75%; right: 10%; color: var(--teal-light); animation-delay: 1.5s; }

@keyframes floatBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(-25px) rotate(-5deg); }
    75% { transform: translateY(-10px) rotate(3deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(251, 191, 36, 0.2);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    color: var(--yellow);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(251, 191, 36, 0.3);
    animation: badgePop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes badgePop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 28px;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--primary-light) 50%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow);
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.hero-stats .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Hero Character Peeking */
.hero-character {
    position: absolute;
    bottom: 0;
    right: 5%;
    z-index: 3;
    pointer-events: none;
}

.hero-character img {
    height: 280px;
    width: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: characterPeek 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transform: translateY(100%);
}

@keyframes characterPeek {
    0% { transform: translateY(100%); }
    100% { transform: translateY(0); }
}

/* Speech Bubble */
.speech-bubble {
    position: absolute;
    bottom: 95px;
    right: 220px;
    background: var(--white);
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
    opacity: 0;
    transform: scale(0.8) translateX(20px);
    animation: bubblePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.8s;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    border: 12px solid transparent;
    border-left-color: var(--white);
    border-right: none;
}

@keyframes bubblePop {
    0% { opacity: 0; transform: scale(0.8) translateX(20px); }
    100% { opacity: 1; transform: scale(1) translateX(0); }
}

/* Section Characters - dotted around the site */
.section-with-character {
    position: relative;
    overflow: hidden;
}

/* Add padding on large screens to give breathing room for characters */
@media (min-width: 1400px) {
    .section-with-character > .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.section-character {
    position: absolute;
    bottom: 0;
    z-index: 10;
    pointer-events: none;
}

.section-character.left {
    left: 20px;
}

.section-character.right {
    right: 20px;
}

.section-character img {
    height: 280px;
    width: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.section-character .quiz-bubble {
    position: absolute;
    background: var(--white);
    color: var(--dark);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    line-height: 1.4;
}

.section-character.left .quiz-bubble {
    left: 160px;
    bottom: 20px;
}

.section-character.right .quiz-bubble {
    right: 160px;
    bottom: 20px;
}

/* Section characters on mobile - show in flow */
@media (max-width: 1199px) {
    .section-character {
        position: relative;
        left: auto !important;
        right: auto !important;
        bottom: auto;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        margin-top: 40px;
        margin-bottom: -1px;
    }

    .section-character img {
        height: 200px;
        margin-bottom: 0;
    }

    .section-character .quiz-bubble {
        position: relative;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin-top: 15px;
        max-width: 280px;
        white-space: normal;
        text-align: center;
        box-shadow: var(--shadow-lg);
    }

    .section-character.left .quiz-bubble,
    .section-character.right .quiz-bubble {
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }

    .section-character .quiz-bubble::after,
    .section-character.left .quiz-bubble::after,
    .section-character.right .quiz-bubble::after {
        content: '';
        position: absolute;
        left: 50% !important;
        right: auto !important;
        top: auto !important;
        bottom: -12px !important;
        transform: translateX(-50%) !important;
        border: 12px solid transparent !important;
        border-top-color: var(--white) !important;
        border-bottom: none !important;
    }

    .section-with-character {
        padding-bottom: 0;
    }
}

/* Fun Dashboard Preview */
.hero-visual {
    position: relative;
    z-index: 2;
}

.dashboard-preview {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl), 0 0 80px rgba(139, 92, 246, 0.3);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
    transition: var(--transition);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(90deg, var(--gray-100), var(--gray-50));
    border-bottom: 2px solid var(--gray-200);
}

.preview-dots {
    display: flex;
    gap: 8px;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.preview-dots span:first-child { background: #ff5f56; }
.preview-dots span:nth-child(2) { background: #ffbd2e; }
.preview-dots span:last-child { background: #27c93f; }

.preview-title {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 600;
}

.preview-content {
    display: flex;
    min-height: 300px;
}

.preview-sidebar {
    width: 65px;
    background: linear-gradient(180deg, var(--dark) 0%, var(--primary-dark) 100%);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sidebar-item {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    transition: var(--transition-bounce);
}

.sidebar-item:hover {
    color: var(--white);
    transform: scale(1.1);
}

.sidebar-item.active {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.preview-main {
    flex: 1;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    background: var(--gray-50);
}

.preview-card {
    background: var(--white);
    padding: 18px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
}

.preview-card:hover {
    transform: translateY(-5px) scale(1.05);
}

.preview-card i {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.preview-card.card-purple i { color: var(--primary); }
.preview-card.card-teal i { color: var(--teal); }
.preview-card.card-blue i { color: var(--blue); }

.preview-card .card-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
}

.preview-card .card-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

.preview-chart {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 12px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.chart-bar {
    width: 35px;
    background: linear-gradient(180deg, var(--gray-200) 0%, var(--gray-300) 100%);
    border-radius: 8px 8px 0 0;
    transition: var(--transition);
}

.chart-bar:hover {
    background: linear-gradient(180deg, var(--teal-light) 0%, var(--teal) 100%);
}

.chart-bar.active {
    background: var(--gradient-primary);
    box-shadow: 0 -10px 30px rgba(139, 92, 246, 0.3);
}

/* ===================================
   Fun Trusted By Section
   =================================== */
.trusted-by {
    padding: 50px 0;
    background: linear-gradient(90deg, var(--gray-50), var(--white), var(--gray-50));
    border-bottom: 2px dashed var(--gray-200);
    position: relative;
    overflow: hidden;
}

.trusted-by::before {
    content: '✨';
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

.trusted-by::after {
    content: '🎯';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite 1s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; transform: translateY(-50%) scale(1); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.2); }
}

.trusted-label {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--gray-400);
    font-size: 1rem;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
}

.logo-item:hover {
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.logo-item i {
    font-size: 1.5rem;
}

/* ===================================
   Fun Section Styles
   =================================== */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.section-badge.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(99, 102, 241, 0.1));
    color: var(--primary);
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.section-badge.teal {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.15), rgba(96, 165, 250, 0.1));
    color: var(--teal);
    border: 2px solid rgba(45, 212, 191, 0.2);
}

.section-badge.blue {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(99, 102, 241, 0.1));
    color: var(--blue);
    border: 2px solid rgba(96, 165, 250, 0.2);
}

.section-badge.green {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(45, 212, 191, 0.1));
    color: var(--green);
    border: 2px solid rgba(74, 222, 128, 0.2);
}

.section-badge.pink {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(99, 102, 241, 0.1));
    color: var(--primary);
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.section-badge.red {
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.15), rgba(248, 113, 113, 0.05));
    color: var(--red);
    border: 2px solid rgba(248, 113, 113, 0.2);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Fun Problem/Solution Section
   =================================== */
.problem-solution {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
}

.problem-solution::before {
    content: '🤔';
    position: absolute;
    top: 80px;
    left: 10%;
    font-size: 3rem;
    opacity: 0.3;
}

.problem-solution::after {
    content: '🎉';
    position: absolute;
    top: 80px;
    right: 10%;
    font-size: 3rem;
    opacity: 0.3;
}

.problem-box, .solution-box {
    padding: 45px;
    border-radius: var(--radius-2xl);
    height: 100%;
    transition: var(--transition);
}

.problem-box {
    background: var(--white);
    border: 3px solid var(--coral);
    box-shadow: 0 10px 40px rgba(248, 113, 113, 0.15);
}

.problem-box:hover {
    transform: translateY(-5px);
}

.solution-box {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.solution-box:hover {
    transform: translateY(-5px) scale(1.02);
}

.problem-box h3, .solution-box h3 {
    font-size: 1.6rem;
    margin: 20px 0;
}

.solution-box h3 {
    color: var(--white);
}

.problem-list, .solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-list li, .solution-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 500;
}

.problem-list li i {
    color: var(--coral);
    font-size: 1.4rem;
}

.solution-list li i {
    color: var(--yellow);
    font-size: 1.4rem;
}

/* ===================================
   Fun Feature Cards
   =================================== */
.feature-card {
    background: var(--gradient-card);
    padding: 36px;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    height: 100%;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 1.8rem;
    margin-bottom: 24px;
    transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon.purple { background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05)); color: var(--primary); }
.feature-icon.teal { background: linear-gradient(135deg, rgba(45, 212, 191, 0.15), rgba(45, 212, 191, 0.05)); color: var(--teal); }
.feature-icon.yellow { background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05)); color: var(--yellow); }
.feature-icon.pink { background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(99, 102, 241, 0.05)); color: var(--primary); }
.feature-icon.blue { background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(96, 165, 250, 0.05)); color: var(--blue); }
.feature-icon.green { background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(74, 222, 128, 0.05)); color: var(--green); }

.feature-card h4 {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.feature-card p {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary);
    padding: 8px 0;
}

.feature-link:hover {
    gap: 16px;
    color: var(--teal);
}

/* ===================================
   Fun How It Works
   =================================== */
.how-it-works {
    background: var(--gradient-hero);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.how-it-works .section-title {
    color: var(--white);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 70px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: var(--radius-2xl);
    text-align: center;
    max-width: 300px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    transition: var(--transition-bounce);
}

.step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.step-content h4 {
    color: var(--white);
    font-size: 1.35rem;
    margin: 15px 0;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.step-icon {
    margin-top: 25px;
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

.step:nth-child(1) .step-icon { color: var(--teal-light); animation-delay: 0s; }
.step:nth-child(3) .step-icon { color: var(--primary-light); animation-delay: 0.3s; }
.step:nth-child(5) .step-icon { color: var(--teal); animation-delay: 0.6s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.step-connector {
    color: var(--yellow);
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

/* ===================================
   Fun Pricing Teaser
   =================================== */
.pricing-teaser {
    padding: var(--section-padding) 0;
}

.pricing-teaser-box {
    background: var(--gradient-primary);
    padding: 60px;
    border-radius: var(--radius-2xl);
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.pricing-teaser-box::before {
    content: '🎁';
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 4rem;
    opacity: 0.3;
    animation: wiggle 3s ease-in-out infinite;
}

.pricing-teaser-box h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.pricing-teaser-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 24px;
}

.pricing-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.pricing-highlights .highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: var(--radius-full);
}

.pricing-highlights .highlight i {
    color: var(--yellow);
}

/* ===================================
   Fun Testimonials
   =================================== */
.testimonials {
    background: linear-gradient(180deg, #f5f3ff 0%, #faf5ff 100%);
    position: relative;
}

.testimonials::before {
    content: '💬';
    position: absolute;
    top: 80px;
    left: 8%;
    font-size: 3rem;
    opacity: 0.2;
}

.testimonials::after {
    content: '⭐';
    position: absolute;
    top: 120px;
    right: 8%;
    font-size: 2.5rem;
    opacity: 0.2;
}

.testimonial-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-xl);
    height: 100%;
    border: 2px solid var(--gray-100);
    transition: var(--transition-bounce);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.testimonial-card.featured {
    border-color: var(--yellow);
    box-shadow: var(--shadow-yellow);
    background: linear-gradient(145deg, var(--white) 0%, rgba(251, 191, 36, 0.05) 100%);
}

.testimonial-card.featured::before {
    content: '👑';
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 2rem;
}

.testimonial-stars {
    color: var(--yellow);
    font-size: 1.2rem;
    margin-bottom: 18px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 28px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: var(--shadow-md);
}

.author-info strong {
    display: block;
    color: var(--dark);
    font-size: 1.05rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ===================================
   Fun Final CTA
   =================================== */
.final-cta {
    padding: var(--section-padding) 0;
}

.cta-box {
    background: var(--gradient-hero);
    padding: 90px 60px;
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--teal) 100%);
    opacity: 0.15;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-box::after {
    content: '🚀';
    position: absolute;
    bottom: 40px;
    right: 60px;
    font-size: 5rem;
    opacity: 0.2;
    animation: floatBounce 4s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===================================
   Fun Page Heroes
   =================================== */
.page-hero {
    padding: 180px 0 100px;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.page-title {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: 1.7;
}

/* ===================================
   Fun Features Page
   =================================== */
.features-main {
    padding: var(--section-padding) 0;
}

.feature-block {
    padding: 70px 0;
    border-bottom: 2px dashed var(--gray-200);
}

.feature-block:last-child {
    border-bottom: none;
}

.feature-visual {
    padding: 50px;
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    background: inherit;
    filter: blur(40px);
    opacity: 0.5;
    z-index: -1;
}

.feature-visual.purple { background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.05)); }
.feature-visual.teal { background: linear-gradient(135deg, rgba(45, 212, 191, 0.1), rgba(96, 165, 250, 0.05)); }
.feature-visual.yellow { background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.05)); }
.feature-visual.pink { background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.05)); }
.feature-visual.blue { background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(45, 212, 191, 0.05)); }
.feature-visual.green { background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(251, 191, 36, 0.05)); }

.visual-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
    border: 2px solid rgba(139, 92, 246, 0.1);
}

.feature-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.feature-info .lead {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    color: var(--gray-700);
    font-weight: 500;
}

.feature-list li i {
    color: var(--green);
    margin-top: 4px;
    font-size: 1.1rem;
}

/* Fun Visual Card Demos */
.venue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.venue-item {
    background: linear-gradient(145deg, var(--white), var(--gray-50));
    padding: 22px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition-bounce);
    cursor: pointer;
}

.venue-item:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.venue-item i {
    font-size: 2.2rem;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
}

.venue-item span {
    display: block;
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.venue-item small {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.venue-item.add-new {
    border: 3px dashed var(--gray-300);
    background: transparent;
}

.venue-item.add-new:hover {
    border-color: var(--teal);
    background: rgba(45, 212, 191, 0.05);
}

.venue-item.add-new i {
    color: var(--gray-400);
}

.venue-item.add-new:hover i {
    color: var(--teal);
}

.venue-item.add-new span {
    color: var(--gray-500);
}

/* Auto-Gen Demo - More Fun */
.auto-gen-demo {
    text-align: center;
}

.gen-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.gen-header i {
    font-size: 1.8rem;
    animation: wiggle 2s ease-in-out infinite;
}

.gen-progress {
    background: var(--gray-200);
    height: 12px;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 24px;
}

.gen-progress .progress-bar {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, var(--teal), var(--primary), var(--teal-light));
    background-size: 200% 100%;
    border-radius: var(--radius-full);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0%, 100% { background-position: 0% 50%; width: 75%; }
    50% { background-position: 100% 50%; width: 95%; }
}

.gen-result .result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: var(--gray-50);
    border-radius: var(--radius);
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.gen-result .result-item:hover {
    transform: translateX(5px);
}

.gen-result .result-item i {
    color: var(--teal);
    font-size: 1.2rem;
}

.gen-result .result-item.success {
    background: linear-gradient(90deg, rgba(74, 222, 128, 0.1), rgba(45, 212, 191, 0.1));
    color: var(--green);
    font-weight: 700;
    border: 2px solid rgba(74, 222, 128, 0.3);
}

/* Question Bank Demo - More Fun */
.question-bank-demo {
    text-align: center;
}

.bank-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.stat-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
    cursor: pointer;
}

.stat-circle:hover {
    transform: scale(1.1);
}

.stat-circle.easy {
    background: linear-gradient(145deg, rgba(74, 222, 128, 0.15), rgba(74, 222, 128, 0.05));
    color: var(--green);
    border: 2px solid rgba(74, 222, 128, 0.3);
}

.stat-circle.medium {
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05));
    color: var(--yellow);
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.stat-circle.hard {
    background: linear-gradient(145deg, rgba(248, 113, 113, 0.15), rgba(248, 113, 113, 0.05));
    color: var(--coral);
    border: 2px solid rgba(248, 113, 113, 0.3);
}

.stat-circle .num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
}

.stat-circle .label {
    font-size: 0.75rem;
    font-weight: 600;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-tags .tag {
    background: linear-gradient(145deg, var(--white), var(--gray-50));
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 600;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.category-tags .tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Template Demo */
.template-demo {
    text-align: left;
}

.template-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.template-header i {
    font-size: 1.8rem;
}

.template-rules {
    background: linear-gradient(145deg, var(--gray-50), var(--white));
    padding: 18px;
    border-radius: var(--radius-lg);
    margin-bottom: 18px;
    border: 1px solid var(--gray-200);
}

.template-rules .rule {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
}

.rule-label { color: var(--gray-600); }
.rule-value { font-weight: 700; color: var(--dark); }

.template-venues {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 500;
}

.venue-pills {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.venue-pills .pill {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Duplicate Demo */
.duplicate-demo {
    text-align: center;
}

.dup-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.dup-header i {
    font-size: 1.8rem;
}

.dup-results {
    margin-bottom: 24px;
}

.dup-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    background: var(--gray-50);
    border-radius: var(--radius);
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.dup-item:hover {
    transform: translateX(5px);
}

.dup-item.exact { border-left: 4px solid var(--coral); }
.dup-item.semantic { border-left: 4px solid var(--yellow); }
.dup-item.possible { border-left: 4px solid var(--blue); }

.dup-item.exact i { color: var(--coral); }
.dup-item.semantic i { color: var(--yellow); }
.dup-item.possible i { color: var(--blue); }

.dup-action {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-bounce);
    font-family: var(--font-display);
}

.dup-action:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Import Demo */
.import-demo {
    text-align: center;
}

.import-steps {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.import-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 600;
}

.import-step .step-num {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: var(--transition-bounce);
}

.import-step.done .step-num {
    background: var(--green);
    color: var(--white);
}

.import-step.active .step-num {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.import-step.done, .import-step.active {
    color: var(--dark);
}

.import-preview {
    background: var(--gray-50);
    padding: 18px;
    border-radius: var(--radius-lg);
    text-align: left;
    border: 1px solid var(--gray-200);
}

.preview-row {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    border-bottom: 1px dashed var(--gray-200);
    font-weight: 500;
}

.preview-row:last-child {
    border-bottom: none;
}

/* More Features Grid - Fun */
.more-features {
    background: linear-gradient(180deg, #f0fdfa 0%, #f5f3ff 100%);
}

.mini-feature {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 2px solid var(--gray-100);
    height: 100%;
    transition: var(--transition-bounce);
}

.mini-feature:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.mini-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition-bounce);
}

.mini-feature:hover .mini-icon {
    transform: rotate(10deg) scale(1.1);
}

.mini-feature h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.mini-feature p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
}

/* Features CTA */
.features-cta {
    padding: var(--section-padding) 0;
}

.features-cta .cta-box {
    background: var(--gradient-primary);
    padding: 60px;
}

.features-cta .cta-box h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.features-cta .cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ===================================
   Fun Pricing Page
   =================================== */
.pricing-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.pricing-section::before {
    content: '💰';
    position: absolute;
    top: 80px;
    left: 8%;
    font-size: 3rem;
    opacity: 0.2;
}

.pricing-section::after {
    content: '🎊';
    position: absolute;
    top: 120px;
    right: 8%;
    font-size: 2.5rem;
    opacity: 0.2;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 60px;
    background: var(--gray-50);
    padding: 15px 30px;
    border-radius: var(--radius-full);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-label {
    font-weight: 700;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--dark);
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--gray-300);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gradient-primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(28px);
}

.save-badge {
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 10px;
    animation: badgeFloat 2s ease-in-out infinite;
}

/* Fun Pricing Cards */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 45px 35px;
    border: 3px solid var(--gray-100);
    height: 100%;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gray-200);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured::before {
    background: var(--gradient-primary);
}

.popular-badge {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 28px;
}

.plan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: var(--transition-bounce);
}

.pricing-card:hover .plan-icon {
    transform: rotate(10deg) scale(1.1);
}

.plan-icon.starter {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(45, 212, 191, 0.1));
    color: var(--green);
}

.plan-icon.professional {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.plan-icon.enterprise {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.15), rgba(96, 165, 250, 0.1));
    color: var(--teal);
}

.plan-name {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.plan-tagline {
    color: var(--gray-500);
    font-size: 1rem;
    font-weight: 500;
}

.pricing-price {
    text-align: center;
    margin-bottom: 10px;
}

.pricing-price .currency {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    vertical-align: top;
}

.pricing-price .amount {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.pricing-price .period {
    color: var(--gray-500);
    font-weight: 500;
}

.yearly-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    font-weight: 500;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.included i {
    color: var(--green);
    font-size: 1.1rem;
}

.pricing-features li.excluded {
    color: var(--gray-400);
}

.pricing-features li.excluded i {
    color: var(--gray-300);
}

.pricing-features li.highlight i {
    color: var(--primary);
    font-size: 1.2rem;
}

.btn-pricing {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
}

/* Fun Comparison Table */
.comparison-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.comparison-table {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-table th,
.comparison-table td {
    padding: 18px 22px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-table thead th {
    background: var(--gray-50);
    font-weight: 700;
    color: var(--dark);
    font-size: 1.05rem;
}

.comparison-table thead th.featured {
    background: var(--gradient-primary);
    color: var(--white);
}

.comparison-table td.featured {
    background: rgba(139, 92, 246, 0.03);
}

.category-row td {
    background: linear-gradient(90deg, var(--gray-50), var(--white));
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.comparison-table .bi-check-circle-fill {
    font-size: 1.3rem;
    color: var(--green);
}

.comparison-table .bi-x-circle {
    font-size: 1.3rem;
    color: var(--gray-300);
}

/* Fun FAQ Section */
.faq-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #faf5ff 0%, #f0fdfa 100%);
}

.accordion-item {
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-xl) !important;
    margin-bottom: 18px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--primary-light);
}

.accordion-button {
    font-weight: 700;
    color: var(--dark);
    padding: 22px 28px;
    background: var(--white);
    font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, var(--gray-50), var(--white));
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238b5cf6'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 22px 28px;
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Fun Guarantee Section */
.guarantee-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.guarantee-box {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-2xl);
    border: 3px solid var(--green);
    box-shadow: 0 10px 40px rgba(74, 222, 128, 0.15);
    position: relative;
}

.guarantee-box::before {
    content: '✅';
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    opacity: 0.3;
}

.guarantee-badge {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(45, 212, 191, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--green);
    margin: 0 auto 24px;
    border: 3px solid rgba(74, 222, 128, 0.3);
}

.guarantee-box h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.guarantee-box p {
    color: var(--gray-600);
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ===================================
   Fun About Page
   =================================== */
.origin-story {
    padding: var(--section-padding) 0;
}

.story-visual .visual-card {
    background: var(--gradient-primary);
    padding: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.story-scene {
    position: relative;
    width: 220px;
    height: 170px;
}

.scene-item {
    position: absolute;
    color: var(--white);
    font-size: 3.5rem;
}

.scene-item.laptop {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.scene-item.papers {
    left: 0;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0.6;
    font-size: 1.8rem;
    animation: shake 3s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.scene-item.lightbulb {
    top: 0;
    right: 0;
    animation: floatBounce 3s ease-in-out infinite;
    color: var(--yellow);
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.story-content .lead {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-style: italic;
}

.story-content p {
    color: var(--gray-600);
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Fun Mission Section */
.mission-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.mission-box {
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--gray-100);
}

.mission-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--white);
    margin: 0 auto 24px;
    box-shadow: var(--shadow-glow);
    animation: pulse 3s ease-in-out infinite;
}

.mission-box h2 {
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.mission-text {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.8;
}

/* Fun Values Section */
.values-section {
    padding: var(--section-padding) 0;
}

.value-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-100);
    height: 100%;
    text-align: center;
    transition: var(--transition-bounce);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition-bounce);
}

.value-card:hover .value-icon {
    transform: rotate(10deg) scale(1.1);
}

.value-icon.purple { background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05)); color: var(--primary); }
.value-icon.teal { background: linear-gradient(135deg, rgba(45, 212, 191, 0.15), rgba(45, 212, 191, 0.05)); color: var(--teal); }
.value-icon.yellow { background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.05)); color: var(--yellow); }
.value-icon.pink { background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(99, 102, 241, 0.05)); color: var(--primary); }
.value-icon.blue { background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(96, 165, 250, 0.05)); color: var(--blue); }
.value-icon.green { background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(74, 222, 128, 0.05)); color: var(--green); }

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.value-card p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
}

/* Fun Stats Section */
.stats-section {
    background: var(--gradient-hero);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-card {
    padding: 35px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-card .stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 10px;
    text-shadow: 0 0 40px rgba(251, 191, 36, 0.5);
}

.stat-card .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    font-weight: 600;
}

/* Fun Difference Section */
.difference-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #f0fdfa 0%, #faf5ff 100%);
}

.difference-item {
    display: flex;
    gap: 24px;
    margin-bottom: 35px;
    padding: 25px;
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-100);
    transition: var(--transition);
}

.difference-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.diff-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.diff-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.diff-content p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
}

/* About CTA */
.about-cta {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.about-cta .cta-box {
    background: var(--gradient-primary);
}

/* ===================================
   Fun Contact Page
   =================================== */
.contact-section {
    padding: var(--section-padding) 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--gray-100);
}

.contact-form-wrapper h2 {
    font-size: 1.9rem;
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: var(--gray-600);
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.form-label {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-control, .form-select {
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: var(--transition);
    font-weight: 500;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(139, 92, 246, 0.1);
}

.form-control.is-invalid {
    border-color: var(--coral);
    box-shadow: 0 0 0 5px rgba(248, 113, 113, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

/* Fun Contact Info */
.contact-info-wrapper {
    position: sticky;
    top: 100px;
}

.contact-info-card {
    background: var(--gradient-hero);
    padding: 35px;
    border-radius: var(--radius-2xl);
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '💬';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    opacity: 0.2;
}

.contact-info-card h3 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 28px;
}

.contact-method {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.method-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.method-content h5 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.method-content a {
    color: var(--yellow);
}

.method-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

.quick-links-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-100);
    margin-bottom: 24px;
}

.quick-links-card h4 {
    font-size: 1.15rem;
    margin-bottom: 18px;
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-600);
    padding: 12px;
    border-radius: var(--radius);
    transition: var(--transition);
    font-weight: 600;
}

.quick-links a:hover {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.05), transparent);
    color: var(--primary);
    padding-left: 18px;
}

.support-hours {
    background: linear-gradient(145deg, var(--gray-50), var(--white));
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-100);
}

.support-hours h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    margin-bottom: 18px;
}

.hours-grid {
    margin-bottom: 14px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--gray-200);
    font-weight: 500;
}

.hours-row:last-child {
    border-bottom: none;
}

.timezone {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

/* FAQ Teaser */
.faq-teaser {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #faf5ff 0%, #f5f3ff 100%);
}

.faq-teaser h2 {
    font-size: 1.9rem;
    margin-bottom: 10px;
}

.faq-teaser p {
    color: var(--gray-600);
    margin: 0;
    font-size: 1.05rem;
}

/* ===================================
   Fun Footer
   =================================== */
.site-footer {
    background: var(--dark);
    color: var(--white);
    position: relative;
}

.footer-wave {
    color: var(--dark);
    margin-top: -1px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-main {
    padding: 70px 0;
}

.footer-brand .brand-link {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    text-decoration: none;
}

.footer-logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer-brand .brand-link:hover .footer-logo {
    transform: scale(1.08) rotate(3deg);
}

.footer-brand .brand-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand .brand-highlight {
    color: var(--teal-light);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.footer-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.feature-badge i {
    color: var(--yellow);
}

.footer-title {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--yellow);
    padding-left: 8px;
}

.footer-links a i {
    font-size: 0.85rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--yellow);
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--yellow);
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-bounce);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-5px) rotate(5deg);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.95rem;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 28px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-legal a:hover {
    color: var(--yellow);
}

/* Fun Back to Top */
.back-to-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: var(--shadow-glow);
}

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 991px) {
    :root {
        --section-padding: 80px;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-character {
        position: relative;
        right: auto;
        bottom: auto;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        margin-top: 40px;
        margin-bottom: -1px;
    }

    .hero-character img {
        height: 200px;
        animation: none;
        transform: none;
        margin-bottom: 0;
    }

    .hero {
        padding-bottom: 0;
    }

    .speech-bubble {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 15px;
        opacity: 1;
        transform: none;
        animation: none;
    }

    .speech-bubble::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: -12px;
        transform: translateX(-50%);
        border: 12px solid transparent;
        border-top-color: var(--white);
        border-bottom: none;
        border-left-color: transparent;
    }

    .hero-visual {
        margin-top: 60px;
    }

    .dashboard-preview {
        transform: none;
    }

    .hero-stats {
        gap: 35px;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
    }

    .feature-block.reverse .order-lg-1,
    .feature-block.reverse .order-lg-2 {
        order: 0;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 25px;
        border-radius: var(--radius-xl);
        margin-top: 18px;
        box-shadow: var(--shadow-xl);
        border: 2px solid var(--gray-100);
    }

    .nav-cta {
        margin-top: 18px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-stats .stat {
        flex: 0 0 33.333%;
    }

    .pricing-teaser-box,
    .cta-box {
        padding: 45px 28px;
    }

    .pricing-highlights {
        flex-direction: column;
        gap: 14px;
    }

    .footer-legal {
        justify-content: flex-start;
        margin-top: 18px;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 14px 12px;
    }

    .contact-form-wrapper {
        padding: 35px 25px;
    }
}

@media (max-width: 575px) {
    .preview-content {
        flex-direction: column;
    }

    .preview-sidebar {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        padding: 18px;
    }

    .trusted-logos {
        gap: 20px;
    }

    .logo-item {
        font-size: 0.9rem;
        padding: 10px 16px;
    }

    .billing-toggle {
        flex-wrap: wrap;
        padding: 18px 20px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stats .stat-number {
        font-size: 2rem;
    }
}
