      :root {
            --gold: #D4A853;
            --gold-light: #E8C97A;
            --gold-dark: #B8923F;
            --navy: #1A2744;
            --navy-light: #2A3B5C;
            --navy-dark: #0F1A2E;
            --cream: #FBF9F3;
            --cream-dark: #F0EDE3;
            --white: #FFFFFF;
            --text-dark: #1A1A1A;
            --text-muted: #5A6170;
            --success: #2D8A5F;
            --shadow-sm: 0 2px 8px rgba(26, 39, 68, 0.08);
            --shadow-md: 0 8px 24px rgba(26, 39, 68, 0.12);
            --shadow-lg: 0 16px 48px rgba(26, 39, 68, 0.16);
            --shadow-gold: 0 8px 32px rgba(212, 168, 83, 0.3);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Source Sans 3', sans-serif;
            background: var(--cream);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(212, 168, 83, 0.2);
            transition: all 0.3s ease;
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }
        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: var(--shadow-sm);
        }
        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--navy);
        }
        .logo-text span { color: var(--gold); }
        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
            position: relative;
        }
        .nav-links a:hover { color: var(--gold-dark); }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s;
        }
        .nav-links a:hover::after { width: 100%; }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            color: var(--navy-dark);
            box-shadow: var(--shadow-gold);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(212, 168, 83, 0.4);
        }
        .btn-secondary {
            background: var(--navy);
            color: var(--white);
            box-shadow: var(--shadow-md);
        }
        .btn-secondary:hover {
            background: var(--navy-light);
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            color: var(--navy);
            border: 2px solid var(--navy);
        }
        .btn-outline:hover {
            background: var(--navy);
            color: var(--white);
        }
        .btn-lg {
            padding: 1.125rem 2.5rem;
            font-size: 1.1rem;
        }

        /* User Menu (for logged-in users) */
        .user-menu {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .user-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--navy-dark);
            font-size: 0.9rem;
        }
        .user-name {
            font-weight: 600;
            color: var(--navy);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 8rem 2rem 4rem;
            background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(ellipse, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(0deg, var(--cream) 0%, transparent 100%);
            pointer-events: none;
        }
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, rgba(212, 168, 83, 0.05) 100%);
            border: 1px solid rgba(212, 168, 83, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--gold-dark);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.6s ease;
        }
        .hero-badge::before { content: '✨'; }
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--navy);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.6s ease 0.1s both;
        }
        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-description {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            max-width: 540px;
            animation: fadeInUp 0.6s ease 0.2s both;
        }
        .hero-ctas {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.6s ease 0.3s both;
        }
        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(26, 39, 68, 0.1);
            animation: fadeInUp 0.6s ease 0.4s both;
        }
        .stat { text-align: center; }
        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--navy);
        }
        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            animation: fadeInRight 0.8s ease 0.3s both;
        }
        .hero-mockup { position: relative; perspective: 1000px; }
        .mockup-browser {
            background: var(--white);
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            transform: rotateY(-5deg) rotateX(2deg);
            transition: transform 0.5s ease;
        }
        .mockup-browser:hover { transform: rotateY(0) rotateX(0); }
        .browser-bar {
            background: var(--cream-dark);
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .browser-dots { display: flex; gap: 6px; }
        .browser-dots span { width: 12px; height: 12px; border-radius: 50%; }
        .browser-dots span:nth-child(1) { background: #FF5F57; }
        .browser-dots span:nth-child(2) { background: #FEBC2E; }
        .browser-dots span:nth-child(3) { background: #28C840; }
        .browser-url {
            flex: 1;
            background: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-left: 1rem;
        }
        .mockup-content {
            padding: 1.5rem;
            background: var(--cream);
            min-height: 350px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mockup-toolbar {
            display: flex;
            gap: 0.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .mockup-btn {
            padding: 0.5rem 1rem;
            background: var(--gold);
            color: var(--navy-dark);
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .mockup-btn.secondary { background: var(--navy); color: var(--white); }
        .mockup-preview {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.75rem;
        }
        .mockup-page {
            background: var(--white);
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            aspect-ratio: 0.7;
            display: flex;
            flex-direction: column;
            padding: 0.5rem;
            gap: 0.25rem;
        }
        .mockup-page .line { height: 4px; background: var(--cream-dark); border-radius: 2px; }
        .mockup-page .line.title { width: 60%; background: var(--navy); height: 6px; margin-bottom: 0.25rem; }
        .floating-element {
            position: absolute;
            background: var(--white);
            border-radius: 12px;
            padding: 1rem;
            box-shadow: var(--shadow-md);
            animation: float 4s ease-in-out infinite;
        }
        .floating-element.books {
            top: -20px;
            right: -40px;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .floating-element.books span { font-size: 2rem; }
        .floating-element.books .text { font-weight: 600; font-size: 0.85rem; color: var(--navy); }
        .floating-element.books .text small { display: block; font-weight: 400; color: var(--text-muted); font-size: 0.75rem; }
        .floating-element.credits {
            bottom: 40px;
            left: -60px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            animation-delay: -2s;
        }
        .credits-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        /* Section Styles */
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }
      .section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, rgba(212, 168, 83, 0.2) 100%);
    color: var(--gold-dark);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}
        /* How It Works */
        .how-it-works {
            padding: 6rem 2rem;
            background: var(--white);
            position: relative;
        }
        .steps-container { max-width: 1200px; margin: 0 auto; position: relative; }
        .steps-line {
            position: absolute;
            top: 60px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 4px;
            background: linear-gradient(90deg, var(--gold) 0%, var(--navy) 50%, var(--gold) 100%);
            border-radius: 2px;
            z-index: 0;
        }
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            position: relative;
            z-index: 1;
        }
        .step { text-align: center; padding: 1rem; }
        .step-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 1.5rem;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            position: relative;
            transition: all 0.3s ease;
        }
        .step:hover .step-icon { transform: scale(1.05); box-shadow: var(--shadow-lg); }
        .step-icon::before {
            content: attr(data-step);
            position: absolute;
            top: -8px;
            right: -8px;
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--navy-dark);
            box-shadow: var(--shadow-sm);
        }
        .step-icon .icon { font-size: 3rem; }
        .step h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
        .step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

        /* Features */
        .features {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
        }
        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .feature-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(212, 168, 83, 0.2);
        }
        .feature-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, rgba(212, 168, 83, 0.05) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }
        .feature-card h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.75rem; }
        .feature-card p { color: var(--text-muted); font-size: 0.95rem; }
        .feature-card.highlight {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            color: var(--white);
        }
        .feature-card.highlight h3, .feature-card.highlight p { color: var(--white); }
        .feature-card.highlight p { opacity: 0.85; }
        .feature-card.highlight .feature-icon { background: rgba(212, 168, 83, 0.2); }

        /* Activities */
        .activities {
            padding: 6rem 2rem;
            background: var(--navy);
            position: relative;
            overflow: hidden;
        }
        .activities::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            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");
            pointer-events: none;
        }
        .activities .section-header h2, .activities .section-header p { color: var(--white); }
        .activities .section-header p { opacity: 0.8; }
        .activities .section-label { color: var(--gold); }
        .tools-showcase {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        .tool-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        .tool-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-4px);
            border-color: var(--gold);
        }
        .tool-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 1rem;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }
        .tool-card h4 {
            color: var(--white);
            font-size: 1rem;
            margin-bottom: 0.5rem;
            font-family: 'Source Sans 3', sans-serif;
            font-weight: 600;
        }
        .tool-card p { color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; }

        /* Samples */
        .samples { padding: 6rem 2rem; background: var(--white); }
        .samples-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        .sample-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            aspect-ratio: 0.7;
            background: var(--cream);
            transition: all 0.3s ease;
        }
        .sample-card:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
        .sample-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
            border: 2px dashed rgba(26, 39, 68, 0.2);
            border-radius: 12px;
        }
        .sample-placeholder .icon { font-size: 3rem; margin-bottom: 0.5rem; opacity: 0.5; }
        .sample-placeholder span { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
        .sample-label {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 1rem;
            background: linear-gradient(0deg, rgba(26, 39, 68, 0.9) 0%, transparent 100%);
            color: var(--white);
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Pricing */
        .pricing {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
        }
        .pricing-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            align-items: center;
        }
        .pricing-card {
            background: var(--white);
            border-radius: 24px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
        .pricing-card.popular {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            color: var(--white);
            transform: scale(1.05);
            border-color: var(--gold);
            box-shadow: var(--shadow-lg);
        }
        .pricing-card.popular:hover { transform: scale(1.08); }
        .pricing-badge {
            display: inline-block;
            background: var(--gold);
            color: var(--navy-dark);
            padding: 0.375rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }
        .pricing-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
        .pricing-card.popular h3 { color: var(--white); }
        .pricing-credits {
            font-size: 3.5rem;
            font-weight: 800;
            font-family: 'Playfair Display', serif;
            color: var(--navy);
            margin: 1rem 0;
        }
        .pricing-card.popular .pricing-credits { color: var(--gold); }
        .pricing-credits span { font-size: 1rem; font-weight: 400; opacity: 0.7; }
        .pricing-price { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
        .pricing-card.popular .pricing-price { color: var(--white); }
        .pricing-features { list-style: none; margin-bottom: 2rem; text-align: left; }
        .pricing-features li {
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
        }
        .pricing-card.popular .pricing-features li { border-bottom-color: rgba(255, 255, 255, 0.1); }
        .pricing-features li::before {
            content: '✓';
            width: 24px;
            height: 24px;
            background: rgba(45, 138, 95, 0.1);
            color: var(--success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            flex-shrink: 0;
        }
        .pricing-card.popular .pricing-features li::before {
            background: rgba(212, 168, 83, 0.2);
            color: var(--gold);
        }
        .pricing-card .btn { width: 100%; justify-content: center; }

        /* FAQ */
        .faq {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
        }
        .faq-container { max-width: 1100px; margin: 0 auto; }
        .faq-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
        .faq-column { display: flex; flex-direction: column; gap: 1rem; }
        .faq-item {
            background: var(--white);
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            border: 1px solid rgba(26, 39, 68, 0.08);
            transition: all 0.3s ease;
        }
        .faq-item:hover { box-shadow: var(--shadow-md); border-color: rgba(212, 168, 83, 0.3); }
        .faq-item.active { box-shadow: var(--shadow-md); border-color: var(--gold); }
        .faq-question {
            width: 100%;
            padding: 1.25rem 1.5rem;
            background: none;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            text-align: left;
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--navy);
            transition: all 0.2s ease;
        }
        .faq-question:hover { color: var(--gold-dark); }
        .faq-icon {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, rgba(212, 168, 83, 0.05) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 400;
            color: var(--gold-dark);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        .faq-item.active .faq-icon {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            color: var(--navy-dark);
            transform: rotate(45deg);
        }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
        .faq-item.active .faq-answer { max-height: 500px; padding: 0 1.5rem 1.5rem; }
        .faq-answer p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 0.75rem; }
        .faq-answer p:last-child { margin-bottom: 0; }
        .faq-answer ul, .faq-answer ol { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin: 0.75rem 0; padding-left: 1.25rem; }
        .faq-answer li { margin-bottom: 0.5rem; }
        .faq-answer strong { color: var(--navy); }
        .faq-contact { text-align: center; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(26, 39, 68, 0.1); }
        .faq-contact p { font-size: 1.1rem; color: var(--text-muted); }
        .faq-contact a { color: var(--gold-dark); font-weight: 600; text-decoration: none; transition: color 0.2s; }
        .faq-contact a:hover { color: var(--navy); text-decoration: underline; }

        /* CTA */
        .cta {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: radial-gradient(ellipse, rgba(212, 168, 83, 0.1) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }
        .cta-content { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
        .cta h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem; }
        .cta p { font-size: 1.25rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 2rem; }
        .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

        /* Footer */
        .footer { background: var(--navy-dark); color: var(--white); padding: 4rem 2rem 2rem; }
        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-brand .logo-text { color: var(--white); margin-bottom: 1rem; }
        .footer-brand p { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; max-width: 300px; }
        .footer-links h4 { color: var(--gold); font-size: 1rem; margin-bottom: 1.5rem; font-family: 'Source Sans 3', sans-serif; font-weight: 700; }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 0.75rem; }
        .footer-links a { color: rgba(255, 255, 255, 0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
        .footer-links a:hover { color: var(--gold); }
        .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 2rem; text-align: center; color: rgba(255, 255, 255, 0.4); font-size: 0.85rem; }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        @keyframes pulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.1); }
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--navy);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container { grid-template-columns: 1fr; text-align: center; }
            .hero-description { margin: 0 auto 2rem; }
            .hero-ctas { justify-content: center; }
            .hero-stats { justify-content: center; }
            .hero-visual { display: none; }
            .steps-grid { grid-template-columns: repeat(3, 1fr); }
            .steps-line { display: none; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .tools-showcase { grid-template-columns: repeat(2, 1fr); }
            .samples-grid { grid-template-columns: repeat(2, 1fr); }
            .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
            .pricing-card.popular { transform: none; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-links.active { 
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                padding: 1rem 2rem 2rem;
                box-shadow: var(--shadow-md);
                gap: 1rem;
            }
            .mobile-menu-btn { display: block; }
            .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
            .step-icon { width: 100px; height: 100px; }
            .features-grid { grid-template-columns: 1fr; }
            .tools-showcase { grid-template-columns: repeat(2, 1fr); }
            .samples-grid { grid-template-columns: repeat(2, 1fr); }
            .faq-columns { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-brand p { margin: 0 auto; }
        }

/**
 * KDPFast PWA Styles
 * Styles for install banners, toasts, update prompts, and offline indicators
 */

/* ============================================================================
   CSS Variables
   ============================================================================ */

:root {
  --pwa-primary: #1a237e;
  --pwa-primary-light: #3949ab;
  --pwa-accent: #ffc107;
  --pwa-accent-hover: #ffca28;
  --pwa-success: #4caf50;
  --pwa-warning: #ff9800;
  --pwa-error: #f44336;
  --pwa-info: #2196f3;
  --pwa-white: #ffffff;
  --pwa-dark: #212121;
  --pwa-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  --pwa-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
  --pwa-radius: 12px;
  --pwa-radius-sm: 8px;
  --pwa-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --pwa-z-banner: 9998;
  --pwa-z-toast: 9999;
  --pwa-z-modal: 10000;
}

/* ============================================================================
   Install Banner
   ============================================================================ */

#pwa-install-banner {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: var(--pwa-white);
  box-shadow: var(--pwa-shadow-lg);
  z-index: var(--pwa-z-banner);
  transition: var(--pwa-transition);
  border-top: 3px solid var(--pwa-accent);
}

#pwa-install-banner.show {
  bottom: 0;
}

.pwa-banner-content {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.pwa-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--pwa-radius-sm);
  flex-shrink: 0;
}

.pwa-banner-text {
  flex: 1;
  min-width: 0;
}

.pwa-banner-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--pwa-dark);
  margin-bottom: 2px;
}

.pwa-banner-text span {
  font-size: 0.875rem;
  color: #666;
}

.pwa-banner-install {
  background: var(--pwa-primary);
  color: var(--pwa-white);
  border: none;
  padding: 12px 24px;
  border-radius: var(--pwa-radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--pwa-transition);
  white-space: nowrap;
}

.pwa-banner-install:hover {
  background: var(--pwa-primary-light);
  transform: translateY(-1px);
}

.pwa-banner-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: var(--pwa-transition);
}

.pwa-banner-close:hover {
  color: var(--pwa-dark);
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .pwa-banner-content {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .pwa-banner-icon {
    width: 40px;
    height: 40px;
  }
  
  .pwa-banner-text {
    flex: 1 1 calc(100% - 100px);
  }
  
  .pwa-banner-text strong {
    font-size: 0.9375rem;
  }
  
  .pwa-banner-text span {
    font-size: 0.8125rem;
  }
  
  .pwa-banner-install {
    flex: 1;
    text-align: center;
    padding: 10px 20px;
  }
  
  .pwa-banner-close {
    position: absolute;
    top: 8px;
    right: 8px;
  }
  
  #pwa-install-banner .pwa-banner-content {
    position: relative;
    padding-right: 40px;
  }
}

/* ============================================================================
   Update Toast
   ============================================================================ */

#pwa-update-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--pwa-dark);
  color: var(--pwa-white);
  border-radius: var(--pwa-radius);
  box-shadow: var(--pwa-shadow-lg);
  z-index: var(--pwa-z-toast);
  transition: var(--pwa-transition);
  max-width: calc(100vw - 40px);
  width: 400px;
}

#pwa-update-toast.show {
  transform: translateX(-50%) translateY(0);
}

.pwa-toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
}

.pwa-toast-content span {
  flex: 1;
  font-size: 0.9375rem;
}

.pwa-toast-action {
  background: var(--pwa-accent);
  color: var(--pwa-dark);
  border: none;
  padding: 8px 16px;
  border-radius: var(--pwa-radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--pwa-transition);
  white-space: nowrap;
}

.pwa-toast-action:hover {
  background: var(--pwa-accent-hover);
}

.pwa-toast-dismiss {
  background: transparent;
  border: none;
  color: #999;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: var(--pwa-transition);
}

.pwa-toast-dismiss:hover {
  color: var(--pwa-white);
}

@media (max-width: 480px) {
  #pwa-update-toast {
    bottom: 10px;
    width: calc(100vw - 20px);
    border-radius: var(--pwa-radius-sm);
  }
  
  .pwa-toast-content {
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 16px;
  }
  
  .pwa-toast-content span {
    flex: 1 1 100%;
    padding-right: 24px;
  }
  
  .pwa-toast-action {
    flex: 1;
    text-align: center;
  }
  
  .pwa-toast-dismiss {
    position: absolute;
    top: 8px;
    right: 8px;
  }
  
  #pwa-update-toast .pwa-toast-content {
    position: relative;
  }
}

/* ============================================================================
   Generic Toast Notifications
   ============================================================================ */

.pwa-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 14px 24px;
  border-radius: var(--pwa-radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  z-index: var(--pwa-z-toast);
  transition: var(--pwa-transition);
  max-width: calc(100vw - 40px);
  text-align: center;
  box-shadow: var(--pwa-shadow);
}

.pwa-toast.show {
  transform: translateX(-50%) translateY(0);
}

.pwa-toast-info {
  background: var(--pwa-info);
  color: var(--pwa-white);
}

.pwa-toast-success {
  background: var(--pwa-success);
  color: var(--pwa-white);
}

.pwa-toast-warning {
  background: var(--pwa-warning);
  color: var(--pwa-dark);
}

.pwa-toast-error {
  background: var(--pwa-error);
  color: var(--pwa-white);
}

/* ============================================================================
   Offline Indicator (Optional persistent indicator)
   ============================================================================ */

.pwa-offline-indicator {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--pwa-warning);
  color: var(--pwa-dark);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: var(--pwa-z-banner);
  transform: translateY(-100%);
  transition: var(--pwa-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pwa-offline-indicator.show {
  transform: translateY(0);
}

.pwa-offline-indicator svg {
  width: 18px;
  height: 18px;
}

/* Adjust body when offline indicator is shown */
body.pwa-offline .pwa-offline-indicator {
  transform: translateY(0);
}

body.pwa-offline {
  padding-top: 40px;
}

/* ============================================================================
   Install Modal (Alternative to banner)
   ============================================================================ */

.pwa-install-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: var(--pwa-z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--pwa-transition);
}

.pwa-install-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.pwa-install-modal {
  background: var(--pwa-white);
  border-radius: var(--pwa-radius);
  max-width: 400px;
  width: 100%;
  overflow: hidden;
  transform: scale(0.9);
  transition: var(--pwa-transition);
  box-shadow: var(--pwa-shadow-lg);
}

.pwa-install-modal-overlay.show .pwa-install-modal {
  transform: scale(1);
}

.pwa-install-modal-header {
  background: linear-gradient(135deg, var(--pwa-primary) 0%, var(--pwa-primary-light) 100%);
  color: var(--pwa-white);
  padding: 30px 24px;
  text-align: center;
}

.pwa-install-modal-header img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pwa-install-modal-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.pwa-install-modal-header p {
  font-size: 0.9375rem;
  opacity: 0.9;
  margin: 0;
}

.pwa-install-modal-body {
  padding: 24px;
}

.pwa-install-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.pwa-install-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

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

.pwa-install-features li svg {
  width: 24px;
  height: 24px;
  color: var(--pwa-success);
  flex-shrink: 0;
}

.pwa-install-features li span {
  font-size: 0.9375rem;
  color: #444;
  line-height: 1.5;
}

.pwa-install-modal-actions {
  display: flex;
  gap: 12px;
}

.pwa-install-modal-actions button {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--pwa-radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--pwa-transition);
  border: none;
}

.pwa-install-modal-actions .pwa-btn-install {
  background: var(--pwa-primary);
  color: var(--pwa-white);
}

.pwa-install-modal-actions .pwa-btn-install:hover {
  background: var(--pwa-primary-light);
}

.pwa-install-modal-actions .pwa-btn-later {
  background: #f5f5f5;
  color: #666;
}

.pwa-install-modal-actions .pwa-btn-later:hover {
  background: #eee;
}

/* ============================================================================
   Loading/Syncing States
   ============================================================================ */

.pwa-syncing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #666;
}

.pwa-syncing-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #ddd;
  border-top-color: var(--pwa-primary);
  border-radius: 50%;
  animation: pwa-spin 0.8s linear infinite;
}

@keyframes pwa-spin {
  to { transform: rotate(360deg); }
}

/* ============================================================================
   PWA Status Badge
   ============================================================================ */

.pwa-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pwa-status-badge.installed {
  background: rgba(76, 175, 80, 0.1);
  color: var(--pwa-success);
}

.pwa-status-badge.installable {
  background: rgba(33, 150, 243, 0.1);
  color: var(--pwa-info);
}

.pwa-status-badge.offline {
  background: rgba(255, 152, 0, 0.1);
  color: var(--pwa-warning);
}

.pwa-status-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

/* ============================================================================
   iOS Install Instructions
   ============================================================================ */

.pwa-ios-instructions {
  background: #f8f9fa;
  border-radius: var(--pwa-radius);
  padding: 20px;
  margin-top: 16px;
}

.pwa-ios-instructions h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: var(--pwa-dark);
}

.pwa-ios-instructions ol {
  margin: 0;
  padding-left: 20px;
}

.pwa-ios-instructions li {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.5;
}

.pwa-ios-instructions li:last-child {
  margin-bottom: 0;
}

.pwa-ios-instructions .share-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin: 0 4px;
}

/* ============================================================================
   Dark Mode Support
   ============================================================================ */

@media (prefers-color-scheme: dark) {
  :root {
    --pwa-white: #1e1e1e;
    --pwa-dark: #ffffff;
  }
  
  #pwa-install-banner {
    background: #2d2d2d;
    border-top-color: var(--pwa-accent);
  }
  
  .pwa-banner-text span {
    color: #aaa;
  }
  
  #pwa-update-toast {
    background: #3d3d3d;
  }
  
  .pwa-install-modal {
    background: #2d2d2d;
  }
  
  .pwa-install-features li {
    border-bottom-color: #444;
  }
  
  .pwa-install-features li span {
    color: #ccc;
  }
  
  .pwa-install-modal-actions .pwa-btn-later {
    background: #3d3d3d;
    color: #aaa;
  }
  
  .pwa-install-modal-actions .pwa-btn-later:hover {
    background: #4d4d4d;
  }
  
  .pwa-ios-instructions {
    background: #3d3d3d;
  }
  
  .pwa-ios-instructions h4 {
    color: #fff;
  }
  
  .pwa-ios-instructions li {
    color: #aaa;
  }
}

/* ============================================================================
   Reduced Motion Support
   ============================================================================ */

@media (prefers-reduced-motion: reduce) {
  #pwa-install-banner,
  #pwa-update-toast,
  .pwa-toast,
  .pwa-install-modal-overlay,
  .pwa-install-modal,
  .pwa-offline-indicator {
    transition: none;
  }
  
  .pwa-syncing-spinner {
    animation: none;
  }
}

/* ============================================================================
   Print Styles - Hide PWA elements when printing
   ============================================================================ */

@media print {
  #pwa-install-banner,
  #pwa-update-toast,
  .pwa-toast,
  .pwa-install-modal-overlay,
  .pwa-offline-indicator {
    display: none !important;
  }
}