        :root {
            --bg-main: #fef8f5;
            --card: #ffffff;
            --text: #1d1d1f;
            --muted: #5f6673;
            --border: #ece4df;
            --primary: #8707f0;
            --primary-dark: #6d05c3;
            --soft-purple: #f4ebff;
            --success: #1f8f5f;
            --shadow-sm: 0 10px 25px rgba(21, 16, 12, 0.06);
            --shadow-md: 0 18px 45px rgba(21, 16, 12, 0.10);
            --radius-lg: 22px;
            --radius-md: 16px;
            --radius-sm: 12px;
            --container-max: 1200px;
        }

        html {
            scroll-behaviour: smooth;
        }
        

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-main);
            color: var(--text);
            line-height: 1.65;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .section-padding {
            padding: 96px 0;
        }

        .section-padding-sm {
            padding: 72px 0;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            border-radius: 999px;
            background: rgba(135, 7, 240, 0.08);
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.02em;
            margin-bottom: 20px;
        }

        .eyebrow i {
            font-size: 16px;
        }

        .section-title {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            line-height: 1.08;
            margin-bottom: 16px;
            letter-spacing: -0.03em;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--muted);
            max-width: 760px;
            margin: 0 auto;
        }

        /* Header */
    #header {
      background: rgba(254, 248, 245, 0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0,0,0,0.04);
      transition: all 0.3s ease;
      padding: 14px 0;
    }

        .navbar-brand img {
            height: 42px;
            width: auto;
            object-fit: contain;
        }

        .navbar-nav .nav-link {
            color: var(--text);
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.2s ease;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: var(--primary);
        }

        .btn-account,
        .btn-primary-fech,
        .btn-outline-fech {
            border-radius: 999px;
            font-weight: 700;
            padding: 13px 22px;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
        }

        .btn-primary-fech {
            background: var(--primary);
            color: #fff;
            border: 1px solid var(--primary);
            box-shadow: 0 12px 30px rgba(135, 7, 240, 0.24);
        }

        .btn-primary-fech:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            color: #fff;
            transform: translateY(-1px);
        }

        .btn-outline-fech {
            background: #fff;
            color: var(--text);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }

        .btn-outline-fech:hover {
            color: var(--primary);
            border-color: rgba(135, 7, 240, 0.25);
            transform: translateY(-1px);
        }

        .btn-account {
            background: #fff;
            border: 1px solid var(--border);
            color: var(--text);
            padding: 11px 18px;
        }

        .btn-account:hover {
            color: var(--primary);
            border-color: rgba(135, 7, 240, 0.25);
        }

        /* Hero */
        .hero {
            background: var(--bg-main);
            padding-top: 140px;
            padding-bottom: 90px;
            position: relative;
        }

        .hero-grid {
            align-items: center;
        }

        .hero-title {
            font-size: clamp(42px, 6vw, 72px);
            line-height: 0.98;
            font-weight: 800;
            letter-spacing: -0.05em;
            margin-bottom: 22px;
        }

        .hero-title .gradient-text {
            background: linear-gradient(90deg, #8707f0 0%, #5d4bff 50%, #2b2b2b 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-copy {
            font-size: 19px;
            color: var(--muted);
            max-width: 600px;
            margin-bottom: 28px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 28px;
        }

        .hero-points {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .hero-points li {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #374151;
            font-weight: 500;
        }

        .hero-points i {
            color: var(--success);
        }

        .hero-visual {
            position: relative;
        }

        .hero-card {
            background: linear-gradient(180deg, #ffffff 0%, #fffaf8 100%);
            border: 1px solid rgba(135, 7, 240, 0.08);
            border-radius: 28px;
            padding: 24px;
            box-shadow: var(--shadow-md);
            position: relative;
        }

        .hero-card img {
            width: 100%;
            border-radius: 18px;
            object-fit: cover;
        }

        .floating-stat {
            position: absolute;
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 18px;
            box-shadow: var(--shadow-sm);
            padding: 14px 16px;
            min-width: 200px;
        }

        .floating-stat.top {
            top: -18px;
            left: -12px;
        }

        .floating-stat.bottom {
            bottom: -18px;
            right: -12px;
        }

        .floating-stat .mini-label {
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 4px;
        }

        .floating-stat .mini-value {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
        }

        /* Trust strip */
        .trust-strip {
            padding-top: 8px;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .trust-card {
            background: rgba(255,255,255,0.72);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 20px;
            box-shadow: var(--shadow-sm);
            text-align: center;
        }

        .trust-card i {
            font-size: 26px;
            color: var(--primary);
            margin-bottom: 10px;
            display: inline-block;
        }

        .trust-card h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .trust-card p {
            font-size: 14px;
            color: var(--muted);
            margin-bottom: 0;
        }

        /* Feature card */
        .feature-card {
            height: 100%;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 28px;
            box-shadow: var(--shadow-sm);
            transition: all 0.25s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            background: var(--soft-purple);
            color: var(--primary);
            font-size: 24px;
            margin-bottom: 18px;
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .feature-card p {
            color: var(--muted);
            margin-bottom: 0;
        }

        /* About split */
        .about-panel {
            background: linear-gradient(180deg, #fff 0%, #fffaf8 100%);
            border: 1px solid var(--border);
            border-radius: 28px;
            padding: 32px;
            box-shadow: var(--shadow-sm);
        }

        .about-panel img {
            border-radius: 20px;
        }

        .check-list {
            list-style: none;
            padding: 0;
            margin: 24px 0 0;
        }

        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 14px;
            color: #384150;
            font-weight: 500;
        }

        .check-list i {
            color: var(--success);
            font-size: 18px;
            margin-top: 2px;
        }

        /* Pricing */
        .pricing-wrap {
            margin-top: 22px;
        }

        .pricing-card {
            height: 100%;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 32px;
            box-shadow: var(--shadow-sm);
            position: relative;
            transition: all 0.25s ease;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .pricing-card.featured {
            border: 1.5px solid rgba(135, 7, 240, 0.28);
            box-shadow: 0 20px 45px rgba(135, 7, 240, 0.12);
        }

        .pricing-badge {
            position: absolute;
            top: 18px;
            right: 18px;
            background: var(--soft-purple);
            color: var(--primary);
            font-size: 12px;
            font-weight: 700;
            border-radius: 999px;
            padding: 8px 12px;
        }

        .pricing-card h3 {
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .price {
            font-size: 42px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: -0.04em;
            margin-bottom: 10px;
        }

        .price small {
            font-size: 16px;
            color: var(--muted);
            font-weight: 600;
        }

        .pricing-desc {
            color: var(--muted);
            margin-bottom: 22px;
        }

        .pricing-list {
            list-style: none;
            padding: 0;
            margin: 0 0 28px;
        }

        .pricing-list li {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
            color: #3b4451;
            align-items: flex-start;
        }

        .pricing-list i {
            color: var(--success);
            margin-top: 3px;
        }

        /* Video section */
        .video-panel {
            background: linear-gradient(180deg, #fff 0%, #fffaf8 100%);
            border: 1px solid var(--border);
            border-radius: 28px;
            padding: 28px;
            box-shadow: var(--shadow-sm);
        }

        .video-copy {
            padding-right: 10px;
        }

        .video-copy p {
            color: var(--muted);
        }

        .instagram-shell {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 22px;
            padding: 14px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }

        .instagram-shell blockquote {
            margin: 0 !important;
        }

        /* CTA */
        .cta-panel {
            background: linear-gradient(135deg, #1f1728 0%, #39105c 55%, #8707f0 100%);
            color: white;
            border-radius: 32px;
            padding: clamp(28px, 5vw, 52px);
            box-shadow: var(--shadow-md);
        }

        .cta-panel h2 {
            font-size: clamp(30px, 4vw, 48px);
            font-weight: 800;
            line-height: 1.05;
            margin-bottom: 14px;
        }

        .cta-panel p {
            color: rgba(255,255,255,0.84);
            font-size: 18px;
            margin-bottom: 0;
        }

        .cta-panel .btn-primary-fech {
            background: #fff;
            color: var(--text);
            border-color: #fff;
            box-shadow: none;
        }

        .cta-panel .btn-primary-fech:hover {
            color: var(--primary);
        }

        .cta-panel .btn-outline-fech {
            background: transparent;
            color: #fff;
            border-color: rgba(255,255,255,0.3);
            box-shadow: none;
        }

        .cta-panel .btn-outline-fech:hover {
            background: rgba(255,255,255,0.08);
            color: #fff;
        }

        /* Footer */
        #footer {
            background: var(--bg-main);
            color: var(--text);
            border-top: 1px solid rgba(0,0,0,0.05);
            padding-top: 70px;
        }

        .footer-logo img {
            height: 36px;
            width: auto;
            object-fit: contain;
            margin-bottom: 18px;
        }

        .footer-text {
            color: var(--muted);
            max-width: 360px;
        }

        .footer-title {
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--muted);
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 14px;
        }

        .social-links a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: #fff;
            color: var(--text);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-sm);
            transition: all 0.2s ease;
        }

        .social-links a:hover {
            color: var(--primary);
            border-color: rgba(135, 7, 240, 0.25);
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(0,0,0,0.05);
            margin-top: 36px;
            padding: 24px 0;
        }

        .footer-bottom p {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .hero {
                padding-top: 120px;
                padding-bottom: 70px;
            }

            .hero-copy {
                font-size: 17px;
            }

            .floating-stat {
                position: static;
                margin-top: 14px;
            }

            .hero-card {
                margin-top: 36px;
            }

            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .video-copy {
                padding-right: 0;
                margin-bottom: 25px;
            }

            .navbar .btn-account {
                margin-top: 10px;
                display: inline-flex;
            }
        }

        @media (max-width: 575.98px) {
            .section-padding {
                padding: 74px 0;
            }

            .section-padding-sm {
                padding: 58px 0;
            }

            .trust-grid {
                grid-template-columns: 1fr;
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-actions a {
                width: 100%;
            }

            .section-title {
                font-size: 34px;
            }

            .hero-title {
                font-size: 46px;
            }

            .pricing-card,
            .feature-card,
            .about-panel,
            .video-panel,
            .cta-panel {
                border-radius: 22px;
            }
            
            /* Prevent any horizontal scrolling */
html, body {
    overflow-x: hidden !important;
}

/* Ensure all images scale properly */
img {
    max-width: 100%;
    height: auto;
}

/* Fix hero image overflow */
.hero-card img {
    width: 100%;
    max-width: 100%;
    display: block;
}

/* Fix floating stats pushing layout sideways */
@media (max-width: 576px) {
    .floating-stat {
        transform: scale(0.85);
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) scale(0.85);
    }
}

/* Instagram embed fix */
.instagram-shell,
.instagram-media {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    overflow: hidden !important;
}

/* Trustpilot iframe fix */
.trustpilot-widget iframe {
    max-width: 100% !important;
    width: 100% !important;
}
/* Restore card look on mobile */
@media (max-width: 576px) {

    /* Ensure all cards keep their background and padding */
    .hero-card,
    .trust-card,
    .feature-card,
    .pricing-card,
    .testimonial-card,
    .video-panel,
    .cta-panel {
        background: #fff !important;
        border-radius: 18px !important;
        padding: 20px !important;
        box-shadow: var(--shadow-sm) !important;
    }

    /* Fix container clipping */
    .container {
        overflow: visible !important;
    }

    /* Fix hero layout */
    .hero-grid {
        display: block !important;
    }

    /* Fix floating stats so they don’t break layout */
    .floating-stat {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        margin: 10px auto !important;
        transform: none !important;
        width: 80% !important;
    }

    /* Fix Instagram embed stretching */
    .instagram-shell,
    .instagram-media {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    /* Fix Trustpilot widget overflow */
    .trustpilot-widget iframe {
        max-width: 100% !important;
        width: 100% !important;
    }
}


        }
        