
        :root {
            --red: #e63946;
            --red-dark: #b91c2c;
            --red-glow: rgba(230,57,70,0.18);
            --black: #0a0a0a;
            --charcoal: #1a1a24;
            --dark: #14141c;
            --grey: #2a2a35;
            --light-grey: #a0a0b0;
            --off-white: #e8e8ec;
            --white: #ffffff;
            --font-display: 'Playfair Display', Georgia, serif;
            --font-display1: 'Playfair Display', Arial Black, serif;
            --font-body: 'DM Sans', sans-serif;
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            background: var(--black);
            color: var(--off-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Noise texture overlay */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
            opacity: 0.35;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 500;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 22px 60px;
            background: rgba(10,10,10,0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255,255,255,0.06);
            transition: padding 0.3s;
        }
        .navbar.scrolled { padding: 14px 60px; }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            cursor: pointer;
        }
        .logo-mark {
            width: 45px; height: 45px;
            background: var(--grey);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 0 20px var(--red-glow);
            flex-shrink: 0;
        }
        .logo-mark img {
            width: 30px;
            height: auto;
        }
        .logo-text {
            font-family: var(--font-display1);
            font-size: 1.95rem;
            color: var(--white);
            letter-spacing: -0.02em;
        }
        .logo-text span { color: var(--red); }
        .logo-sub {
            font-size: 0.80rem;
            color: var(--light-grey);
            font-weight: 400;
            letter-spacing: 0.12em;
            text-transform: titlecase;
            display: block;
            margin-top: -2px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 36px;
        }
        .nav-links a {
            color: var(--light-grey);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: color 0.2s;
        }
        .nav-links a:hover, .nav-links a.active { color: var(--red); }
        .nav-cta {
            background: var(--red) !important;
            color: var(--white) !important;
            padding: 9px 22px;
            border-radius: 6px;
            transition: background 0.2s, box-shadow 0.2s !important;
        }
        .nav-cta:hover {
            background: var(--red-dark) !important;
            box-shadow: 0 0 20px var(--red-glow) !important;
            color: var(--white) !important;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 0;
            position: relative;
            overflow: hidden;
            margin-top: -130px;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                              linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

        .hero-left {
            padding: 120px 60px 80px 60px;
            position: relative;
            z-index: 2;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(230,57,70,0.12);
            border: 1px solid rgba(230,57,70,0.3);
            color: #ff6b6b;
            font-size: 0.72rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 4px;
            margin-bottom: 28px;
            font-weight: 600;
            animation: fadeUp 0.8s ease both;
        }
        .hero-eyebrow::before {
            content: '';
            width: 6px; height: 6px;
            background: var(--red);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.7); }
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: 3.4rem;
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -0.03em;
            color: var(--white);
            margin-bottom: 24px;
            animation: fadeUp 0.8s 0.1s ease both;
        }
        .hero h1 em {
            color: var(--red);
            font-style: normal;
            display: block;
        }

        .hero-desc {
            font-size: 1.05rem;
            color: var(--light-grey);
            max-width: 540px;
            margin-bottom: 40px;
            line-height: 1.75;
            font-weight: 500;
            animation: fadeUp 0.8s 0.2s ease both;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap;
            animation: fadeUp 0.8s 0.3s ease both;
        }

        .btn-red {
            background: var(--red);
            color: var(--white);
            border: none;
            padding: 15px 32px;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
            box-shadow: 0 4px 24px rgba(230,57,70,0.3);
        }
        .btn-red:hover {
            background: var(--red-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(230,57,70,0.45);
        }

        .btn-ghost {
            background: transparent;
            color: var(--light-grey);
            border: 1px solid rgba(255,255,255,0.15);
            padding: 14px 28px;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: border-color 0.2s, color 0.2s;
        }
        .btn-ghost:hover {
            border-color: rgba(255,255,255,0.35);
            color: var(--white);
        }

        /* Hero Right - Image Panel (Blended) */
        .hero-right {
            position: relative;
            height: 140vh;
            overflow: hidden
            
            
        }
        .hero-right img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
            filter: grayscale(20%) contrast(1.05);
            margin-top: 200px;
        }
        .hero-right::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, var(--black) 0%, rgba(10,10,10,0.3) 40%, transparent 100%);
            z-index: 1;
        }
        .hero-right::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, var(--black) 0%, transparent 30%);
            z-index: 1;
        }

        .hero-tag {
            position: absolute;
            bottom: 200px;
            right: 40px;
            z-index: 10;
            background: rgba(20,20,28,0.9);
            border: 1px solid rgba(230,57,70,0.4);
            border-radius: 12px;
            padding: 16px 24px;
            backdrop-filter: blur(10px);
            
        }
        .hero-tag-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--light-grey);
            margin-bottom: 4px;
            
        }
        .hero-tag-value {
            font-family: var(--font-display);
            font-size: 1.4rem;
            color: var(--white);
        }
        .hero-tag-value span { color: var(--red); }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Metrics Strip */
        .metrics-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: var(--charcoal);
            border-top: 1px solid rgba(255,255,255,0.06);
            border-bottom: 1px solid rgba(255,255,255,0.06);
           
           
        }
        .metric {
            padding: 36px 20px;
            text-align: center;
            border-right: 1px solid rgba(255,255,255,0.06);
            transition: background 0.3s;
            
        }
        .metric:last-child { border-right: none; }
        .metric:hover { background: rgba(230,57,70,0.05); }
        .metric-num {
            font-family: var(--font-display);
            font-size: 2.6rem;
            color: var(--white);
            display: block;
            margin-bottom: 6px;
        }
        .metric-num strong { color: var(--red); }
        .metric-label {
            font-size: 0.78rem;
            color: var(--light-grey);
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        /* Sections */
        .section {
            padding: 100px 60px;
            max-width: 1280px;
            margin: 0 auto;
        }
        .section-label {
            font-size: 0.72rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--red);
            font-weight: 600;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .section-label::before {
            content: '';
            width: 32px; height: 1px;
            background: var(--red);
        }
        .section-title {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }
        .section-sub {
            color: var(--light-grey);
            font-size: 1rem;
            font-weight: 300;
            max-width: 540px;
            line-height: 1.75;
        }

        /* Features Grid */
        .features-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 16px;
            overflow: hidden;
            margin-top: 60px;
        }
        .feature-cell {
            background: var(--charcoal);
            padding: 40px 36px;
            transition: background 0.3s;
            position: relative;
        }
        .feature-cell::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 2px;
            background: var(--red);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .feature-cell:hover {
            background: var(--dark);
        }
        .feature-cell:hover::after { transform: scaleX(1); }
        .feature-icon-wrap {
            width: 48px; height: 48px;
            background: rgba(230,57,70,0.1);
            border: 1px solid rgba(230,57,70,0.25);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 20px;
            transition: background 0.3s;
        }
        .feature-cell:hover .feature-icon-wrap {
            background: rgba(230,57,70,0.2);
            box-shadow: 0 0 20px var(--red-glow);
        }
        .feature-cell h3 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 10px;
        }
        .feature-cell p {
            font-size: 0.88rem;
            color: var(--light-grey);
            line-height: 1.7;
            font-weight: 300;
        }

        /* Pricing Section */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 60px;
        }
        .pricing-card {
            background: var(--charcoal);
            border: 1px solid var(--grey);
            border-radius: 20px;
            padding: 32px 24px;
            text-align: center;
            transition: transform 0.3s, border-color 0.3s;
            position: relative;
        }
        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: var(--red);
        }
        .pricing-card.popular {
            border: 2px solid var(--red);
            transform: scale(1.02);
        }
        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--red);
            color: white;
            font-size: 0.7rem;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 600;
        }
        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
        }
        .pricing-price {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--red);
            margin-bottom: 8px;
        }
        .pricing-price small {
            font-size: 0.9rem;
            color: var(--light-grey);
        }
        .pricing-duration {
            font-size: 0.8rem;
            color: var(--light-grey);
            margin-bottom: 24px;
        }
        .pricing-features {
            list-style: none;
            margin: 24px 0;
            text-align: left;
        }
        .pricing-features li {
            padding: 8px 0;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .pricing-features li i {
            color: var(--red);
            width: 18px;
        }
        .pricing-card .btn-red {
            width: 100%;
            padding: 12px;
            font-size: 0.9rem;
        }

        /* How It Works Steps */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 60px;
        }
        .step-card {
            background: var(--charcoal);
            padding: 48px 36px;
            border-radius: 20px;
            text-align: center;
            transition: transform 0.3s;
        }
        .step-card:hover { transform: translateY(-5px); }
        .step-num {
            font-family: var(--font-display);
            font-size: 3rem;
            color: rgba(230,57,70,0.3);
            margin-bottom: 16px;
            display: block;
        }
        .step-icon {
            width: 60px; height: 60px;
            border-radius: 50%;
            background: var(--red);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 24px;
            box-shadow: 0 0 20px var(--red-glow);
        }
        .step-card h4 {
            font-size: 1.2rem;
            margin-bottom: 12px;
        }
        .step-card p {
            font-size: 0.88rem;
            color: var(--light-grey);
            line-height: 1.7;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 60px;
        }
        .testimonial-card {
            background: var(--charcoal);
            border: 1px solid var(--grey);
            border-radius: 20px;
            padding: 32px;
            transition: border-color 0.3s;
        }
        .testimonial-card:hover { border-color: var(--red); }
        .testimonial-text {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--light-grey);
            margin-bottom: 24px;
            font-style: italic;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testimonial-avatar {
            width: 48px;
            height: 48px;
            background: var(--grey);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }
        .testimonial-name {
            font-weight: 600;
        }
        .testimonial-title {
            font-size: 0.75rem;
            color: var(--light-grey);
        }

        /* FAQ Accordion */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-top: 60px;
        }
        .faq-item {
            background: var(--charcoal);
            border: 1px solid var(--grey);
            border-radius: 16px;
            overflow: hidden;
        }
        .faq-question {
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.2s;
        }
        .faq-question:hover { background: rgba(230,57,70,0.05); }
        .faq-question i { transition: transform 0.3s; color: var(--red); }
        .faq-item.active .faq-question i { transform: rotate(180deg); }
        .faq-answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s;
        }
        .faq-item.active .faq-answer {
            padding: 0 24px 20px 24px;
            max-height: 300px;
        }
        .faq-answer p { color: var(--light-grey); font-size: 0.88rem; line-height: 1.7; }

        /* Trust Badges */
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin: 40px 0;
        }
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            color: var(--light-grey);
        }
        .trust-badge i { font-size: 1.2rem; color: var(--red); }

        /* CTA Section */
        .cta-section {
            background: var(--charcoal);
            border-top: 1px solid rgba(255,255,255,0.06);
            border-bottom: 1px solid rgba(255,255,255,0.06);
            padding: 80px 60px;
            text-align: center;
        }
        .cta-section h2 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 16px;
        }
        .cta-section p {
            color: var(--light-grey);
            max-width: 600px;
            margin: 0 auto 32px;
            font-size: 1rem;
        }

        /* Footer */
        .footer {
            background: var(--dark);
            border-top: 1px solid rgba(255,255,255,0.06);
            padding: 56px 60px;
        }
        .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .footer-brand .logo-text {
            font-size: 1.2rem;
            margin-bottom: 6px;
        }
        .footer-brand p {
            font-size: 0.82rem;
            color: var(--light-grey);
            font-weight: 300;
        }
        .footer-links {
            display: flex;
            gap: 32px;
            margin-bottom: 12px;
            justify-content: flex-end;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: var(--light-grey);
            text-decoration: none;
            font-size: 0.82rem;
            transition: color 0.2s;
        }
        .footer-links a:hover { color: var(--red); }
        .footer-social {
            display: flex;
            gap: 20px;
            justify-content: flex-end;
            margin-top: 16px;
        }
        .footer-social a {
            color: var(--light-grey);
            font-size: 1.2rem;
            transition: color 0.2s;
        }
        .footer-social a:hover { color: var(--red); }
        .footer-copy {
            font-size: 0.75rem;
            color: var(--light-grey);
            text-align: right;
            margin-top: 16px;
        }
        .footer-contact {
            font-size: 0.8rem;
            color: var(--light-grey);
            margin-top: 8px;
        }
        .footer-contact i { margin-right: 8px; color: var(--red); }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero { grid-template-columns: 1fr; }
            .hero-right { display: none; }
            .hero-left { padding: 120px 40px 60px; }
            .pricing-grid { grid-template-columns: repeat(2, 1fr); }
            .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
            .faq-grid { grid-template-columns: 1fr; }
            .steps-grid { grid-template-columns: 1fr; }
            .features-layout { grid-template-columns: 1fr; }
            .section { padding: 72px 40px; }
        }

        @media (max-width: 768px) {
            .menu-toggle { display: block; }
            .nav-links {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(10,10,10,0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .nav-links.show { display: flex; }
            .nav-links a { padding: 10px; width: 100%; text-align: center; }
            .metrics-strip { grid-template-columns: repeat(2, 1fr); }
            .metric { padding: 24px 16px; }
            .hero { margin-top: 0; }
            .hero-left { padding: 100px 24px 50px; }
            .hero-tag { bottom: 20px; right: 20px; padding: 10px 16px; }
            .hero-tag-value { font-size: 1rem; }
            .section { padding: 50px 24px; }
            .section-title { font-size: 2rem; }
            .pricing-grid { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .footer { padding: 40px 24px; }
            .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
            .footer-links { justify-content: center; }
            .footer-social { justify-content: center; }
            .footer-copy { text-align: center; }
        }

        @media (max-width: 480px) {
            .metrics-strip { grid-template-columns: 1fr; }
            .metric { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
            .metric:last-child { border-bottom: none; }
            .hero h1 { font-size: 2.2rem; }
            .hero-desc { font-size: 0.9rem; }
            .hero-actions { flex-direction: column; align-items: stretch; }
            .btn-red, .btn-ghost { justify-content: center; }
        }
