        :root {
            --forest: #0b3d1e;
            --emerald: #1f7a45;
            --sage: #6f9c74;
            --olive: #9bb38d;
            --cream: #f4efe6;
            --sand: #e8dcc8;
            --ink: #102015;
            --muted: #5d6f61;
            --card: rgba(255, 255, 255, 0.84);
            --shadow: 0 20px 45px rgba(11, 61, 30, 0.18);
            --radius: 24px;
        }
        * {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            color: var(--ink);
            background:
                radial-gradient(circle at top left, rgba(111, 156, 116, 0.22), transparent 32%),
                radial-gradient(circle at right center, rgba(31, 122, 69, 0.14), transparent 28%),
                linear-gradient(180deg, #fbf8f2 0%, #eff4ed 48%, #ffffff 100%);
        }
        .navbar {
            backdrop-filter: blur(16px);
            background: rgba(11, 61, 30, 0.92) !important;
            box-shadow: 0 10px 30px rgba(11, 61, 30, 0.18);
        }
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.2px;
        }
        .navbar .nav-link {
            color: rgba(255, 255, 255, 0.82) !important;
            font-weight: 500;
        }
        .navbar .nav-link:hover {
            color: #fff !important;
        }
        .hero {
            position: relative;
            padding: 9rem 0 5rem;
            overflow: hidden;
        }
        .hero::before,
        .hero::after {
            content: '';
            position: absolute;
            border-radius: 999px;
            filter: blur(10px);
            opacity: 0.9;
        }
        .hero::before {
            width: 320px;
            height: 320px;
            background: rgba(31, 122, 69, 0.12);
            top: 40px;
            right: -90px;
        }
        .hero::after {
            width: 220px;
            height: 220px;
            background: rgba(233, 216, 190, 0.8);
            bottom: 30px;
            left: -100px;
        }
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.9rem;
            border-radius: 999px;
            background: rgba(31, 122, 69, 0.1);
            color: var(--forest);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3rem, 7vw, 5.6rem);
            line-height: 0.95;
            letter-spacing: -0.04em;
            margin: 1rem 0;
            color: var(--forest);
        }
        .hero-text {
            max-width: 34rem;
            font-size: 1.06rem;
            color: var(--muted);
        }
        .btn-tefrit {
            border: 0;
            border-radius: 999px;
            padding: 0.9rem 1.5rem;
            font-weight: 700;
            transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
        }
        .btn-tefrit:hover {
            transform: translateY(-1px);
            box-shadow: 0 14px 28px rgba(11, 61, 30, 0.18);
        }
        .btn-solid {
            background: linear-gradient(135deg, var(--emerald), var(--forest));
            color: #fff;
        }
        .btn-solid:hover {
            color: #fff;
        }
        .btn-ghost {
            border: 1px solid rgba(11, 61, 30, 0.16);
            background: rgba(255, 255, 255, 0.7);
            color: var(--forest);
        }
        .hero-badges .badge {
            border-radius: 999px;
            padding: 0.75rem 1rem;
            font-weight: 600;
        }
        .badge-soft-success {
            background: rgba(31, 122, 69, 0.12);
            color: var(--forest);
        }
        .badge-soft-warning {
            background: rgba(233, 216, 190, 0.9);
            color: #6b4e16;
        }
        .badge-soft-info {
            background: rgba(111, 156, 116, 0.16);
            color: var(--forest);
        }
        .glass-card {
            background: var(--card);
            border: 1px solid rgba(11, 61, 30, 0.08);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .showcase-card {
            padding: 1.25rem;
            background: linear-gradient(180deg, rgba(11, 61, 30, 0.98), rgba(31, 122, 69, 0.96));
            color: #fff;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
        }
        .showcase-card::before {
            content: '';
            position: absolute;
            inset: auto -60px -80px auto;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
        }
        .showcase-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        .metric {
            padding: 1rem;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }
        .section {
            padding: 4rem 0;
        }
        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.2rem, 4vw, 3.5rem);
            color: var(--forest);
            letter-spacing: -0.03em;
        }
        .section-subtitle {
            color: var(--muted);
            max-width: 42rem;
            margin: 0 auto;
        }
        .feature-card,
        .lead-card,
        .step-card,
        .pricing-card,
        .comparison-card {
            height: 100%;
            padding: 1.5rem;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.82);
            border: 1px solid rgba(11, 61, 30, 0.08);
            box-shadow: 0 18px 40px rgba(11, 61, 30, 0.08);
        }
        .feature-icon,
        .lead-icon,
        .pricing-icon {
            width: 54px;
            height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(31, 122, 69, 0.14), rgba(111, 156, 116, 0.28));
            color: var(--forest);
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }
        .feature-card h3,
        .lead-card h3,
        .step-card h3,
        .pricing-card h3,
        .comparison-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            color: var(--forest);
        }
        .stat-strip {
            margin-top: 2rem;
            padding: 1rem 1.25rem;
            border-radius: 22px;
            background: rgba(11, 61, 30, 0.92);
            color: #fff;
            box-shadow: var(--shadow);
        }
        .stat-strip .stat-number {
            font-size: 1.7rem;
            font-weight: 800;
            line-height: 1;
        }
        .stat-strip .stat-label {
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.9rem;
        }
        .lead-card .role {
            display: inline-flex;
            margin-bottom: 0.75rem;
            padding: 0.4rem 0.75rem;
            border-radius: 999px;
            background: rgba(31, 122, 69, 0.1);
            color: var(--forest);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.02em;
        }
        .pricing-chip {
            display: inline-flex;
            align-items: center;
            padding: 0.45rem 0.75rem;
            border-radius: 999px;
            background: rgba(11, 61, 30, 0.08);
            color: var(--forest);
            font-weight: 700;
            font-size: 0.85rem;
        }
        .comparison-table {
            margin: 0;
        }
        .comparison-table thead th {
            color: var(--forest);
            border-bottom: 1px solid rgba(11, 61, 30, 0.12);
        }
        .comparison-table td,
        .comparison-table th {
            vertical-align: middle;
        }
        .footer {
            padding: 3rem 0 1.5rem;
            background: linear-gradient(180deg, #f3f0e8 0%, #e8efe6 100%);
            border-top: 1px solid rgba(11, 61, 30, 0.08);
        }
        .footer a {
            color: var(--forest);
            text-decoration: none;
        }
        .footer a:hover {
            text-decoration: underline;
        }
        .soft-divider {
            width: 96px;
            height: 4px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--emerald), var(--sand));
            margin: 1rem auto 0;
        }
        @media (max-width: 991.98px) {
            .hero {
                padding-top: 7.5rem;
            }
            .hero-title {
                line-height: 1;
            }
        }
    