
        :root {
            --bg: #FDFAF6;
            --bg-alt: #F5F0E8;
            --text: #1A1A1A;
            --text-soft: #5A5A5A;
            --accent: #E8663C;
            --accent-hover: #D4522A;
            --accent-light: #FFF0EB;
            --border: #E5DFD5;
            --white: #FFFFFF;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
            --radius: 16px;
            --radius-sm: 10px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* ─── NAV ─── */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(253, 250, 246, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            transition: box-shadow 0.3s;
        }
        nav.scrolled { box-shadow: var(--shadow-sm); }

        .nav-logo img {
            height: 45px;
            display: block;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-soft);
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.01em;
            transition: color 0.25s;
        }
        .nav-links a:hover { color: var(--accent); }

        .nav-cta {
            background: var(--accent) !important;
            color: var(--white) !important;
            padding: 0.55rem 1.3rem;
            border-radius: 50px;
            font-weight: 600 !important;
            transition: background 0.25s, transform 0.2s !important;
        }
        .nav-cta:hover {
            background: var(--accent-hover) !important;
            transform: translateY(-1px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }
        .hamburger span {
            width: 24px; height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: 0.3s;
        }

        /* ─── HERO ─── */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8rem 2rem 4rem;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -20%; right: -10%;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(232,102,60,0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -10%; left: -5%;
            width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(232,102,60,0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-content {
            max-width: 720px;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-block;
            background: var(--accent-light);
            color: var(--accent);
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            letter-spacing: 0.04em;
            margin-bottom: 1.5rem;
            animation: fadeUp 0.6s ease both;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5.5vw, 4rem);
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 1.25rem;
            animation: fadeUp 0.6s ease 0.1s both;
        }
        .hero h1 em {
            color: var(--accent);
            font-style: italic;
        }

        .hero p {
            font-size: 1.15rem;
            color: var(--text-soft);
            max-width: 540px;
            margin: 0 auto 2rem;
            animation: fadeUp 0.6s ease 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeUp 0.6s ease 0.3s both;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.85rem 1.8rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s;
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--white);
            box-shadow: 0 4px 16px rgba(232,102,60,0.3);
        }
        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(232,102,60,0.35);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--text);
            border: 1.5px solid var(--border);
        }
        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
            transform: translateY(-2px);
        }

        .hero-platforms {
            margin-top: 3rem;
            animation: fadeUp 0.6s ease 0.45s both;
        }
        .hero-platforms span {
            font-size: 0.8rem;
            color: var(--text-soft);
            opacity: 0.7;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            font-weight: 500;
        }
        .platform-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-top: 0.75rem;
            flex-wrap: wrap;
        }
        .platform-logos .plat {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text);
            opacity: 0.35;
            transition: opacity 0.3s;
            letter-spacing: 0.02em;
        }
        .platform-logos .plat:hover { opacity: 0.7; }

        /* ─── SECTION STYLES ─── */
        section {
            padding: 6rem 2rem;
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 3.5rem;
        }
        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 0.75rem;
        }
        .section-header p {
            font-size: 1.05rem;
            color: var(--text-soft);
        }

        /* ─── SERVICES ─── */
        .services { background: var(--bg); }

        .services-grid {
            max-width: 1060px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .service-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: transparent;
        }

        .service-icon {
            width: 48px; height: 48px;
            background: var(--accent-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 1.25rem;
        }

        .service-card h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        .service-card p {
            font-size: 0.92rem;
            color: var(--text-soft);
            line-height: 1.65;
        }

        /* ─── PRICING ─── */

        /* ——— ABOUT ——— */
        .about {
            background: var(--bg-alt);
            padding: 6rem 2rem;
        }

        .about-container {
            max-width: 760px;
            margin: 0 auto;
        }

        .about-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .about-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        .about-content h2 em {
            color: var(--accent);
            font-style: italic;
        }

        .about-content p {
            font-size: 1.02rem;
            color: var(--text-soft);
            line-height: 1.75;
            margin-bottom: 1rem;
        }
        .about-content p strong {
            color: var(--text);
            font-weight: 600;
        }

        .about-stats {
            display: flex;
            gap: 2.5rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            flex-wrap: wrap;
        }

        .about-stat {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.1;
        }

        .stat-label {
            font-size: 0.82rem;
            color: var(--text-soft);
            margin-top: 0.25rem;
        }

        @media (max-width: 768px) {
            .about-stats {
                gap: 1.5rem;
            }
        }

        .pricing { background: var(--bg-alt); }

        .pricing-grid {
            max-width: 1060px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            align-items: start;
        }

        .price-card {
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: var(--radius);
            padding: 2.25rem;
            position: relative;
            transition: all 0.3s;
        }
        .price-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .price-card.featured {
            border-color: var(--accent);
            box-shadow: var(--shadow-md);
        }

        .price-badge {
            position: absolute;
            top: -12px; left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: var(--white);
            font-size: 0.72rem;
            font-weight: 700;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .price-card h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        .price-card .tagline {
            font-size: 0.85rem;
            color: var(--text-soft);
            margin-bottom: 1.25rem;
        }

        .price-amount {
            font-family: 'Playfair Display', serif;
            font-size: 2.75rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }
        .price-amount .currency { font-size: 1.5rem; vertical-align: top; margin-right: 2px; }
        .price-period {
            font-size: 0.85rem;
            color: var(--text-soft);
            margin-bottom: 1.5rem;
        }

        .price-features {
            list-style: none;
            margin-bottom: 1.75rem;
        }
        .price-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            padding: 0.4rem 0;
            font-size: 0.9rem;
            color: var(--text-soft);
        }
        .price-features li::before {
            content: '\2714';
            color: var(--accent);
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .price-card .btn {
            width: 100%;
            justify-content: center;
        }

        /* ─── FAQ ─── */
        .faq { background: var(--bg); }

        .faq-list {
            max-width: 700px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
        }
        .faq-item:first-child { border-top: 1px solid var(--border); }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 1.25rem 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            cursor: pointer;
            font-family: inherit;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            text-align: left;
            transition: color 0.2s;
        }
        .faq-question:hover { color: var(--accent); }

        .faq-icon {
            width: 28px; height: 28px;
            border-radius: 50%;
            background: var(--bg-alt);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.1rem;
            font-weight: 300;
            transition: all 0.3s;
            color: var(--text-soft);
        }
        .faq-item.active .faq-icon {
            background: var(--accent);
            color: var(--white);
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
        }
        .faq-answer-inner {
            padding-bottom: 1.25rem;
            font-size: 0.92rem;
            color: var(--text-soft);
            line-height: 1.7;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        /* ─── CTA ─── */
        .cta {
            background: var(--text);
            padding: 5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta::before {
            content: '';
            position: absolute;
            top: -50%; right: -20%;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(232,102,60,0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-content {
            max-width: 560px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            color: var(--white);
            font-weight: 700;
            margin-bottom: 0.75rem;
        }
        .cta p {
            color: rgba(255,255,255,0.65);
            font-size: 1.05rem;
            margin-bottom: 2rem;
        }

        /* ─── FOOTER ─── */
        footer {
            background: var(--text);
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 2rem;
            text-align: center;
        }
        footer p {
            color: rgba(255,255,255,0.35);
            font-size: 0.8rem;
        }

        /* ─── ANIMATIONS ─── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 768px) {
            nav { padding: 0.75rem 1.25rem; }

            .nav-links {
                position: fixed;
                top: 0; right: -100%;
                width: 70%;
                height: 100vh;
                background: var(--bg);
                flex-direction: column;
                padding: 5rem 2rem 2rem;
                gap: 1.5rem;
                transition: right 0.3s ease;
                box-shadow: var(--shadow-lg);
            }
            .nav-links.open { right: 0; }

            .hamburger { display: flex; }

            .hero { padding: 7rem 1.5rem 3rem; min-height: auto; }
            .hero h1 { font-size: 2.2rem; }

            section { padding: 4rem 1.25rem; }

            .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
        }
        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 1rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent);
            text-decoration: none;
            transition: gap 0.2s;
        }
        .service-link:hover {
            gap: 0.65rem;
        }
