        /* ─── Light, Friendly Theme ─────────────────────────────── */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #fefcfb;
            color: #2d2a3e;
            min-height: 100vh;
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            color: #7c5df5;
            text-decoration: none;
            transition: color 0.2s;
        }

        a:hover {
            color: #5b3ed4;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        /* ─── Navbar ──────────────────────────────────────────── */
        .nav {
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 0.85rem 0;
            background: linear-gradient(135deg, #1e1b3a, #2d2654);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(124, 93, 245, 0.15);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .nav-brand {
            font-family: 'Outfit', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-brand img {
            height: 32px;
            width: 32px;
            border-radius: 8px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-links a {
            font-size: 0.92rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
        }

        .nav-links a:hover {
            color: #fff;
        }

        .nav-cta {
            background: linear-gradient(135deg, #7c5df5, #a78bfa);
            color: #fff !important;
            padding: 0.6rem 1.4rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.88rem;
            transition: all 0.25s;
            box-shadow: 0 2px 12px rgba(124, 93, 245, 0.3);
        }

        .nav-cta:hover {
            background: linear-gradient(135deg, #6a4bde, #9b7afb);
            color: #fff !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(124, 93, 245, 0.45);
        }

        /* ─── Hero ───────────────────────────────────────────── */
        .hero {
            text-align: center;
            padding: 5rem 1.5rem 3rem;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #f3eeff;
            color: #7c5df5;
            padding: 0.4rem 1rem;
            border-radius: 100px;
            font-size: 0.82rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            color: #1e1b2e;
            margin-bottom: 1rem;
        }

        .hero h1 span {
            color: #7c5df5;
        }

        .hero p {
            font-size: 1.15rem;
            color: #6b6882;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ─── Photo Strip ────────────────────────────────────── */
        .photo-strip {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 3rem auto;
            max-width: 750px;
            padding: 0 1rem;
        }

        .photo-strip img {
            width: 30%;
            height: 180px;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .photo-strip img:hover {
            transform: translateY(-6px) scale(1.02);
        }

        .photo-strip img:nth-child(1) {
            transform: rotate(-2deg);
        }

        .photo-strip img:nth-child(2) {
            transform: translateY(-10px);
        }

        .photo-strip img:nth-child(3) {
            transform: rotate(2deg);
        }

        .photo-strip img:nth-child(1):hover {
            transform: rotate(-2deg) translateY(-6px) scale(1.02);
        }

        .photo-strip img:nth-child(3):hover {
            transform: rotate(2deg) translateY(-6px) scale(1.02);
        }

        /* ─── Pricing Cards ──────────────────────────────────── */
        .pricing-section {
            max-width: 1050px;
            margin: 0 auto;
            padding: 3rem 1.5rem 5rem;
        }

        .pricing-section h2 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: #1e1b2e;
        }

        .pricing-subtitle {
            text-align: center;
            color: #6b6882;
            font-size: 1.05rem;
            margin-bottom: 3rem;
        }

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

        .plan {
            background: #fff;
            border: 2px solid #f0eef5;
            border-radius: 24px;
            padding: 2.5rem 2rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .plan:hover {
            border-color: #ddd8f0;
            box-shadow: 0 12px 40px rgba(124, 93, 245, 0.08);
            transform: translateY(-4px);
        }

        .plan.popular {
            border-color: #7c5df5;
            box-shadow: 0 12px 40px rgba(124, 93, 245, 0.15);
        }

        .plan.popular:hover {
            box-shadow: 0 16px 50px rgba(124, 93, 245, 0.22);
        }

        .popular-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #7c5df5, #a78bfa);
            color: #fff;
            padding: 0.35rem 1.2rem;
            border-radius: 100px;
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            white-space: nowrap;
        }

        .plan-emoji {
            font-size: 2.2rem;
            margin-bottom: 0.75rem;
            display: block;
        }

        .plan-name {
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: #1e1b2e;
            margin-bottom: 0.5rem;
        }

        .plan-desc {
            font-size: 0.9rem;
            color: #8a879a;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .plan-price {
            margin-bottom: 1.75rem;
        }

        .plan-price .amount {
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: #1e1b2e;
        }

        .plan-price .currency {
            font-size: 1.4rem;
            font-weight: 600;
            color: #6b6882;
            vertical-align: top;
            position: relative;
            top: 8px;
        }

        .plan-price .period {
            font-size: 0.92rem;
            color: #8a879a;
            font-weight: 400;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .plan-features li {
            padding: 0.5rem 0;
            font-size: 0.92rem;
            color: #4a4760;
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
        }

        .plan-features li::before {
            content: '✓';
            color: #34d399;
            font-weight: 700;
            font-size: 0.95rem;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .plan-btn {
            display: block;
            width: 100%;
            text-align: center;
            padding: 0.9rem 1.5rem;
            border-radius: 100px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
            border: none;
            text-decoration: none;
        }

        .plan-btn-outline {
            background: transparent;
            color: #7c5df5;
            border: 2px solid #e4dff8;
        }

        .plan-btn-outline:hover {
            background: #f3eeff;
            border-color: #c8bef0;
            color: #7c5df5;
        }

        .plan-btn-primary {
            background: linear-gradient(135deg, #7c5df5, #9b7afb);
            color: #fff;
            box-shadow: 0 4px 16px rgba(124, 93, 245, 0.3);
        }

        .plan-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(124, 93, 245, 0.4);
            color: #fff;
        }

        /* ─── FAQ ─────────────────────────────────────────────── */
        .faq {
            max-width: 700px;
            margin: 0 auto;
            padding: 2rem 1.5rem 5rem;
        }

        .faq h2 {
            text-align: center;
            font-size: 1.8rem;
            color: #1e1b2e;
            margin-bottom: 2rem;
        }

        .faq-item {
            border-bottom: 1px solid #f0eef5;
            padding: 1.25rem 0;
        }

        .faq-question {
            font-weight: 600;
            color: #2d2a3e;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            font-family: inherit;
        }

        .faq-question::after {
            content: '+';
            font-size: 1.3rem;
            color: #7c5df5;
            font-weight: 300;
            flex-shrink: 0;
            transition: transform 0.2s;
        }

        .faq-item.open .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: #6b6882;
            font-size: 0.92rem;
            line-height: 1.7;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
            padding-top: 0.75rem;
        }

        /* ─── CTA Banner ──────────────────────────────────────── */
        .cta-banner {
            background: linear-gradient(135deg, #7c5df5, #a78bfa, #c4b5fd);
            padding: 4rem 1.5rem;
            text-align: center;
            color: #fff;
        }

        .cta-banner h2 {
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            margin-bottom: 0.75rem;
        }

        .cta-banner p {
            font-size: 1.05rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #fff;
            color: #7c5df5;
            padding: 0.9rem 2.2rem;
            border-radius: 100px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.25s;
            text-decoration: none;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            color: #5b3ed4;
        }

        /* ─── Footer ──────────────────────────────────────────── */
        .footer {
            background: #f9f8fc;
            border-top: 1px solid #f0eef5;
            text-align: center;
            padding: 2rem 1.5rem;
            color: #8a879a;
            font-size: 0.85rem;
        }

        /* ─── Hamburger Toggle ────────────────────────────────── */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            z-index: 110;
        }

        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: #fff;
            margin: 5px 0;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ─── Responsive ──────────────────────────────────────── */
        @media (max-width: 768px) {
            .photo-strip img {
                height: 120px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 420px;
                margin: 0 auto;
            }

            .nav-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 260px;
                height: 100vh;
                background: linear-gradient(180deg, #1e1b3a, #2d2654);
                flex-direction: column;
                align-items: flex-start;
                padding: 5rem 2rem 2rem;
                gap: 0.25rem;
                transition: right 0.3s ease;
                box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
                z-index: 105;
            }

            .nav-links.open {
                right: 0;
            }

            .nav-links span {
                display: block;
                width: 100%;
            }

            .nav-links a {
                display: block;
                padding: 0.75rem 0;
                font-size: 1rem;
                color: rgba(255, 255, 255, 0.8);
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                width: 100%;
            }

            .nav-links a:hover {
                color: #fff;
            }

            .nav-cta {
                margin-top: 1rem;
                text-align: center;
                width: 100%;
                padding: 0.75rem 1.5rem;
            }

            .lang-switcher {
                margin-left: 0;
            }
        }