:root {
    --primary-green: #00A651;
    --primary-light: #00c862;
    --primary-dark: #008f45;
    --secondary-dark: #0f172a;
    --bg-light: #ffffff;
    --bg-soft: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --glass-white: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-premium: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-green: 0 10px 25px -5px rgba(0, 166, 81, 0.2);
    --radius-full: 500px;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --nav-height: 80px;
}

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

html {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background-color: var(--bg-soft);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.breadcrumb {
    padding: 10px 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    background: rgb(0 143 69);
}
.breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}
.breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}
.breadcrumb-sep {
    margin: 0 8px;
    color: rgba(255,255,255,0.4);
}

.visible-h1 {
    font-size: clamp(2.4rem, 7vw, 4.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.trust-crosslinks {
    padding: 60px 20px;
    background: var(--bg-soft);
}
.crosslinks-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.crosslinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.crosslink-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition-smooth);
}
.crosslink-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-green);
}
.crosslink-card i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}
.crosslink-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.crosslink-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========================================
   TOP NAVIGATION
======================================== */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: #009046;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    margin: 0;
}

.top-nav.scrolled {
    height: 70px;
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 166, 81, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1px;
    cursor: pointer;
    text-decoration: none;
    z-index: 10;
    flex-shrink: 0;
}

.brand-logo {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 166, 81, 0.2));
}

.nav-brand:hover .brand-logo {
    transform: scale(1.1) rotate(-5deg);
}

.brand-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
}

.brand-florian {
    color: white;
    transition: var(--transition-smooth);
}

.top-nav.scrolled .brand-florian {
    color: var(--secondary-dark);
}

.brand-bd {
    color: white;
    transition: var(--transition-smooth);
}

.top-nav.scrolled .brand-bd {
    color: #00703a;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.03);
    padding: 6px;
    border-radius: var(--radius-full);
    position: relative;
    flex-shrink: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.top-nav.scrolled .nav-link {
    color: var(--text-muted);
}

.nav-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: white;
}

.top-nav.scrolled .nav-link:hover {
    color: var(--secondary-dark);
}

.nav-link:hover i {
    transform: translateY(-2px) scale(1.1);
}

.nav-link.active {
    color: white !important;
    background: #006b32;
    box-shadow: 0 10px 25px -5px rgba(0, 107, 50, 0.3);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-btn {
    width: 46px;
    height: 46px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
}

.top-nav.scrolled .nav-btn {
    background: rgba(0, 0, 0, 0.03);
    color: var(--secondary-dark);
}

.nav-btn:hover {
    background: #006b32;
    color: white;
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 0 10px 25px -5px rgba(0, 107, 50, 0.3);
}

.top-nav.scrolled .nav-btn:hover {
    background: #006b32;
    color: white;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border: none;
    background: transparent;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    z-index: 10;
    transition: var(--transition-smooth);
}

.top-nav.scrolled .mobile-menu-btn {
    color: var(--secondary-dark);
}

.top-nav.scrolled .mobile-menu-btn span {
    background: var(--secondary-dark);
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    margin: 3px auto;
    transition: var(--transition-smooth);
    border-radius: 10px;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ========================================
   SIDEBAR
======================================== */
.sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    box-shadow: 20px 0 80px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    visibility: hidden;
}

.sidebar-header {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: white;
    z-index: 5;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.sidebar-brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.sidebar-brand-text {
    font-weight: 800;
}

.sidebar-brand-text .brand-florian {
    color: var(--secondary-dark);
}

.sidebar-brand-text .brand-bd {
    color: var(--primary-green);
}

.sidebar-close {
    width: 45px;
    height: 45px;
    border: none;
    background: var(--bg-soft);
    border-radius: 14px;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.sidebar-close:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}

.sidebar-content {
    flex: 1;
    padding: 0 40px 40px;
}

.sidebar-section {
    margin-bottom: 40px;
}

.sidebar-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-title::after {
    content: '';
    height: 1px;
    background: linear-gradient(to right, rgba(0, 166, 81, 0.2), transparent);
    flex: 1;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 14px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.sidebar-menu a:hover {
    background: white;
    color: var(--primary-green);
    border-color: rgba(0, 166, 81, 0.1);
    transform: translateX(8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.sidebar-footer {
    padding: 40px;
    background: var(--bg-soft);
    border-top: 1px solid #f1f5f9;
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: white;
    border-radius: 14px;
    text-decoration: none;
    color: var(--secondary-dark);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.quick-contact i {
    font-size: 1.1rem;
    color: var(--primary-green);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.main-wrapper {
    padding-top: var(--nav-height);
    min-height: 100vh;
}

@media (max-width: 1024px) {
    .nav-center {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }
    .nav-container {
        padding: 0 20px;
        gap: 15px;
    }
    .brand-text {
        font-size: 1.4rem;
    }
    .brand-logo {
        width: 60px;
        height: 60px;
    }
    .nav-actions {
        gap: 10px;
    }
    .mobile-menu-btn {
        width: 42px;
        height: 42px;
    }
    .sidebar {
        width: 100%;
        max-width: 100%;
    }
}

/* ========================================
   HERO HEADER
======================================== */
.policy-header.benefits-hero {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-green) 100%);
    padding: 180px 20px 220px;
    color: white;
    position: relative;
    clip-path: ellipse(150% 100% at 50% 0%);
    overflow: hidden;
    text-align: center;
    z-index: 10;
}

.benefits-hero .header-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.benefits-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.type-cursor {
    animation: blink 0.8s infinite;
    color: var(--primary-light);
    margin-left: 5px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.benefits-hero .last-updated {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.benefits-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(248, 250, 252, 0.4));
    pointer-events: none;
}

.story-ledger {
    position: absolute;
    top: 15px;
    left: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 100;
    pointer-events: none;
}

.ledger-tag {
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.ledger-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 100px;
    box-shadow: 0 0 8px var(--primary-light);
}

@keyframes ledgerShimmer {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.ledger-tag.impact {
    animation: ledgerBuild 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes ledgerBuild {
    0% { transform: translateX(-30px) scale(0.8); opacity: 0; letter-spacing: 10px; filter: blur(10px); }
    40% { opacity: 0.5; letter-spacing: 5px; }
    100% { transform: translateX(0) scale(1); opacity: 1; letter-spacing: 2px; filter: blur(0); }
}

@media (max-width:768px) {
    .policy-header.benefits-hero {
        padding: 270px 12px 190px;
    }
    .story-ledger {
        top: 25px;
        left: 20px;
        gap: 6px;
        transform: scale(0.9);
        transform-origin: top left;
    }
    .ledger-tag {
        padding: 6px 12px;
        font-size: 9px;
    }
    .ledger-tag::before {
        width: 4px;
        height: 4px;
    }
}

@media (max-width:480px) {
    .policy-header.benefits-hero {
        padding: 230px 0px 160px;
    }
    .benefits-hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        letter-spacing: -1px;
    }
    .benefits-hero .last-updated {
        font-size: 0.75rem;
    }
}

/* ========================================
   ORIGIN SECTION
======================================== */
.origin-section {
    padding: 120px 2rem;
    background: linear-gradient(160deg, #f8fafc 0%, #f0fdf4 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.origin-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.origin-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.origin-glow.g1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    animation: oGlow 12s ease-in-out infinite alternate;
}

.origin-glow.g2 {
    width: 400px;
    height: 400px;
    background: rgba(56, 189, 248, 0.04);
    bottom: -100px;
    left: -100px;
    animation: oGlow 16s ease-in-out infinite alternate-reverse;
}

@keyframes oGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, -60px) scale(1.2); }
}

.origin-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.origin-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.origin-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(0, 166, 81, 0.1);
    border: 1px solid rgba(0, 166, 81, 0.15);
    border-radius: 500px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-green);
}

.origin-header .section-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.origin-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.origin-main {
    max-width: 680px;
}

.origin-heading {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 300;
    color: var(--secondary-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.origin-heading span {
    font-weight: 900;
    display: block;
    background: linear-gradient(135deg, var(--primary-green), #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.origin-lead {
    font-size: 1.2rem;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 500;
}

.origin-lead strong {
    color: var(--primary-green);
}

.origin-body {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.origin-body strong {
    color: var(--secondary-dark);
}

.origin-footnote {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 166, 81, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(0, 166, 81, 0.04);
}

.origin-footnote i {
    font-size: 0.8rem;
    color: var(--primary-green);
    animation: ofArrow 1.5s ease-in-out infinite;
}

@keyframes ofArrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

.origin-footnote span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.origin-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.origin-marker {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 166, 81, 0.25);
    position: relative;
    margin: 0 auto;
}

.origin-marker i {
    font-size: 2.2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.origin-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(0, 166, 81, 0.2);
    animation: oRing 3s ease-in-out infinite;
}

.origin-ring.inner {
    inset: -20px;
    border-color: rgba(0, 166, 81, 0.1);
    animation-delay: -1.5s;
    animation-duration: 4s;
}

@keyframes oRing {
    0% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.08); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.4; }
}

.origin-facts {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: rgba(0, 0, 0, 0.01);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.of-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.2rem;
    background: white;
    transition: all 0.3s ease;
}

.of-item:hover {
    background: rgba(0, 166, 81, 0.02);
}

.of-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.of-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-dark);
    text-align: right;
}

.origin-quote {
    background: white;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--primary-green);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.origin-quote i {
    font-size: 1.2rem;
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 1px;
    opacity: 0.3;
}

.origin-quote span {
    font-size: 0.88rem;
    color: var(--text-main);
    line-height: 1.7;
    font-style: italic;
}

.origin-founders {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.of-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.of-card:hover {
    border-color: rgba(0, 166, 81, 0.08);
    transform: translateX(3px);
}

.ofc-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.14));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.ofc-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.ofc-info strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary-dark);
}

.ofc-info span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

@media (max-width:900px) {
    .origin-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .origin-sidebar {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width:768px) {
    .origin-section {
        padding: 70px 1.5rem;
    }
    .origin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .origin-marker {
        width: 70px;
        height: 70px;
    }
    .origin-marker i {
        font-size: 1.6rem;
    }
}

/* ========================================
   DRIVERS — growth engines (white theme)
======================================== */
.drivers-section {
    padding: 100px 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.drivers-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(ellipse at 20% 15%, rgba(0, 166, 81, 0.015) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 85%, rgba(0, 166, 81, 0.008) 0%, transparent 50%);
}

.drivers-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 166, 81, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.drivers-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.drivers-header {
    text-align: center;
    margin-bottom: 4rem;
}

.drivers-header .section-label {
    color: var(--primary-green);
}

.drivers-header .section-title {
    color: var(--secondary-dark);
}

.drivers-header .section-description {
    color: var(--text-muted);
    font-size: 1rem;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #00703a;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.drivers-list {
    display: flex;
    flex-direction: column;
}

.driver-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 2.5rem;
    transition: background 0.5s ease;
    position: relative;
}

.driver-item + .driver-item {
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.driver-item:hover {
    background: rgba(0, 166, 81, 0.02);
}

.driver-item:nth-child(even) {
    background: rgba(0, 0, 0, 0.006);
}

.driver-item:nth-child(even):hover {
    background: rgba(0, 166, 81, 0.022);
}

.di-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
    min-width: 52px;
}

.di-accent {
    width: 2px;
    height: 48px;
    background: var(--a, #00A651);
    border-radius: 2px;
    transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
    flex-shrink: 0;
}

.driver-item:hover .di-accent {
    height: 64px;
    box-shadow: 0 0 16px color-mix(in srgb, var(--a, #00A651) 25%, transparent);
}

.di-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--a, #00A651);
    opacity: 0.15;
    line-height: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
    letter-spacing: -1px;
}

.driver-item:hover .di-number {
    opacity: 0.35;
    transform: scale(1.08);
}

.di-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--a, #00A651);
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.driver-item:hover .di-icon-wrap {
    background: var(--a, #00A651);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px) scale(1.06) rotate(-4deg);
    box-shadow: 0 8px 28px color-mix(in srgb, var(--a, #00A651) 25%, transparent);
}

.di-body {
    flex: 1;
    min-width: 0;
    padding-top: 0.3rem;
}

.di-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 0.15rem;
    transition: color 0.4s ease;
}

.driver-item:hover .di-title {
    color: var(--a, #00A651);
}

.di-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--a, #00A651);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    opacity: 0.35;
    transition: opacity 0.4s ease;
}

.driver-item:hover .di-tag {
    opacity: 0.8;
}

.di-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 620px;
}

@media (max-width: 900px) {
    .driver-item {
        padding: 1.75rem 1.5rem;
        gap: 1.25rem;
    }
    .di-track {
        min-width: 38px;
        gap: 0.4rem;
    }
    .di-number {
        font-size: 1.2rem;
    }
    .di-icon-wrap {
        width: 46px;
        height: 46px;
        font-size: 1.05rem;
    }
    .di-accent {
        height: 36px;
    }
    .driver-item:hover .di-accent {
        height: 48px;
    }
    .di-title {
        font-size: 1.05rem;
    }
}

@media (max-width: 550px) {
    .drivers-section {
        padding: 70px 1rem;
    }
    .drivers-header {
        margin-bottom: 2.5rem;
    }
    .driver-item {
        flex-wrap: wrap;
        padding: 1.5rem 1rem;
        gap: 0.75rem;
    }
    .di-track {
        flex-direction: row;
        min-width: auto;
        gap: 0.5rem;
    }
    .di-accent {
        width: 2px;
        height: 30px;
        align-self: center;
    }
    .driver-item:hover .di-accent {
        height: 36px;
    }
    .di-number {
        font-size: 1rem;
    }
    .di-icon-wrap {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    .di-body {
        padding-top: 0;
        width: 100%;
    }
    .di-desc {
        font-size: 0.85rem;
    }
}

/* ========================================
   VELOCITY — growth stats
======================================== */
.velocity-section {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    position: relative;
}

.velocity-container {
    max-width: 1100px;
    margin: 0 auto;
}

.velocity-header {
    text-align: center;
    margin-bottom: 4rem;
}

.velocity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: end;
}

.velocity-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.v-bar-wrap {
    width: 60px;
    height: 220px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.v-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--bar-color, #00A651);
    border-radius: 30px;
    transition: height 1.8s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 30px color-mix(in srgb, var(--bar-color, #00A651) 30%, transparent);
}

.v-bar.animate {
    height: calc(var(--pct, 50) * 1%);
}

.v-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.v-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.v-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.v-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width:900px) {
    .velocity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    .v-bar-wrap {
        width: 50px;
        height: 170px;
    }
}

@media (max-width:480px) {
    .velocity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .v-number {
        font-size: 1.6rem;
    }
}

/* ========================================
   WHY FASTEST — comparison grid
======================================== */
.why-fastest-section {
    background: linear-gradient(160deg, #ffffff 0%, #f6fdf9 30%, #f0fdf4 60%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 100px 2rem;
}

.why-fastest-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.wf-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    animation: wfBlob 18s ease-in-out infinite alternate;
}

.wf-blob.blob-a {
    width: 500px;
    height: 500px;
    background: rgba(0, 166, 81, 0.06);
    top: -150px;
    right: -100px;
}

.wf-blob.blob-b {
    width: 400px;
    height: 400px;
    background: rgba(56, 189, 248, 0.04);
    bottom: -100px;
    left: -80px;
    animation-delay: -6s;
}

.wf-blob.blob-c {
    width: 300px;
    height: 300px;
    background: rgba(0, 166, 81, 0.04);
    top: 40%;
    left: 40%;
    animation-delay: -12s;
}

@keyframes wfBlob {
    0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    100% { transform: translate(50px, -50px) scale(1.3); opacity: 0.8; }
}

.why-fastest-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.why-fastest-header .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--secondary-dark);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.why-fastest-header .section-description {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0.75rem auto 0;
}

.clash-symbol {
    display: inline-block;
    font-size: 1.2em;
    margin: 0 0.4rem;
    animation: clashPulse 1.2s ease-in-out infinite;
}

@keyframes clashPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-8deg); }
    50% { transform: scale(1.3) rotate(0deg); }
    75% { transform: scale(1.2) rotate(8deg); }
}

.why-fastest-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.15));
    color: var(--primary-green);
    padding: 6px 22px;
    border-radius: 500px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 166, 81, 0.1);
}

.why-fastest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 2;
}

.wf-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    perspective: 800px;
}

.w-card-glow {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at 30% 40%, rgba(0, 166, 81, 0.04), transparent 50%);
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.w-card-check {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 166, 81, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 0.7rem;
    transition: all 0.5s ease;
    z-index: 2;
}

.wf-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 0 40px rgba(0, 166, 81, 0.04);
    border-color: rgba(0, 166, 81, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.wf-card:hover .w-card-glow {
    opacity: 1;
}

.wf-card:hover .w-card-check {
    background: var(--primary-green);
    color: white;
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
}

.wf-top {
    padding: 2rem 1.5rem 1.2rem;
    text-align: center;
    position: relative;
}

.wf-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.06), rgba(0, 166, 81, 0.14));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 166, 81, 0.06);
}

.wf-icon i {
    font-size: 22px;
    color: var(--primary-green);
    transition: all 0.5s ease;
}

.wf-card:hover .wf-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    transform: scale(1.1) rotate(-6deg);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(0, 166, 81, 0.2);
}

.wf-card:hover .wf-icon i {
    color: white;
    animation: wfIconPop 0.6s ease;
}

@keyframes wfIconPop {
    0% { transform: scale(1) rotate(0deg); }
    30% { transform: scale(1.4) rotate(-12deg); }
    60% { transform: scale(0.9) rotate(8deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.wf-top h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 0.4rem;
    transition: color 0.4s ease;
}

.wf-card:hover .wf-top h3 {
    color: var(--primary-green);
}

.wf-top p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.wf-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    gap: 0.75rem;
}

.wf-vs::before,
.wf-vs::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 166, 81, 0.12), transparent);
}

.wf-vs-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    color: white;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
    transition: all 0.5s ease;
    position: relative;
}

.wf-vs-badge::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid rgba(245, 158, 11, 0);
    transition: all 0.5s ease;
}

.wf-card:hover .wf-vs-badge {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.wf-card:hover .wf-vs-badge::after {
    border-color: rgba(245, 158, 11, 0.2);
    animation: vsRing 1.5s ease infinite;
}

@keyframes vsRing {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.6); opacity: 0; }
}

.wf-bottom {
    padding: 1rem 1.5rem 1.75rem;
    text-align: center;
}

.traditional-text {
    font-size: 0.82rem;
    color: #94a3b8;
    font-style: italic;
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.3);
    line-height: 1.5;
    transition: color 0.4s ease;
}

.wf-card:hover .traditional-text {
    color: #b0b8c4;
}

@media (max-width: 1024px) {
    .why-fastest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-fastest-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .wf-card {
        backdrop-filter: none;
        background: white;
    }
    .wf-top {
        padding: 1.75rem 1.25rem 1rem;
    }
    .wf-bottom {
        padding: 0.75rem 1.25rem 1.5rem;
    }
    .why-fastest-section {
        padding: 70px 1.2rem;
    }
}

/* ========================================
   NETWORK EFFECT — flywheel (white theme)
======================================== */
.network-section {
    padding: 100px 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.network-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(ellipse at 20% 15%, rgba(0, 166, 81, 0.008) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 85%, rgba(0, 166, 81, 0.005) 0%, transparent 50%);
}

.network-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.network-header {
    text-align: center;
    margin-bottom: 4rem;
}

.network-header .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--secondary-dark);
}

.nf-chain {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
    position: relative;
}

.nf-link {
    flex: 0 0 150px;
    text-align: center;
    position: relative;
    padding-top: 2.5rem;
    transition: transform 0.4s ease;
}

.nf-link:hover {
    transform: translateY(-4px);
}

.nfl-stem {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(0, 166, 81, 0.12), transparent);
    margin: 0 auto 1rem;
    transition: height 0.4s ease, background 0.4s ease;
}

.nf-link:hover .nfl-stem {
    height: 48px;
    background: var(--primary-green);
}

.nfl-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 2px solid rgba(0, 166, 81, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-green);
    background: transparent;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nf-link:hover .nfl-icon {
    border-color: var(--primary-green);
    background: var(--primary-green);
    color: #fff;
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 8px 24px rgba(0, 166, 81, 0.2);
}

.nf-link h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 0.4rem;
    transition: color 0.4s ease;
}

.nf-link:hover h3 {
    color: var(--primary-green);
}

.nf-link p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.nf-link-arrow {
    padding-top: 4.5rem;
    color: var(--primary-green);
    font-size: 0.9rem;
    opacity: 0.15;
    flex-shrink: 0;
    animation: nfArrow 2s ease-in-out infinite;
    transition: opacity 0.4s ease;
}

.nf-link-arrow:hover {
    opacity: 0.4;
}

@keyframes nfArrow {
    0%, 100% { transform: translateX(0); opacity: 0.15; }
    50% { transform: translateX(4px); opacity: 0.3; }
}

.nfl-cycle-back {
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.55rem;
    color: var(--primary-green);
    opacity: 0.25;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    transition: opacity 0.4s ease;
}

.nf-link:hover .nfl-cycle-back {
    opacity: 0.6;
}

.nfl-cycle-back i {
    font-size: 0.5rem;
    animation: nfCycle 4s linear infinite;
}

@keyframes nfCycle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
    .nf-link {
        flex: 0 0 130px;
    }
    .nf-link-arrow {
        padding-top: 4rem;
    }
}

@media (max-width: 850px) {
    .nf-chain {
        gap: 0.4rem;
    }
    .nf-link {
        flex: 0 0 120px;
    }
    .nf-link-arrow {
        font-size: 0.75rem;
        padding-top: 3.5rem;
    }
}

@media (max-width: 768px) {
    .network-section {
        padding: 70px 1.5rem;
    }
    .nf-chain {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .nf-link {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
        padding-top: 1.25rem;
        padding-bottom: 0.5rem;
        text-align: center;
    }
    .nfl-stem {
        display: none;
    }
    .nfl-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
    .nf-link p {
        font-size: 0.8rem;
    }
    .nf-link-arrow {
        padding: 0;
        transform: rotate(90deg);
        font-size: 0.7rem;
        opacity: 0.1;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: nfArrowMobile 2s ease-in-out infinite;
    }
    @keyframes nfArrowMobile {
        0%, 100% { transform: rotate(90deg) translateY(0); opacity: 0.1; }
        50% { transform: rotate(90deg) translateY(4px); opacity: 0.25; }
    }
    .nfl-cycle-back {
        margin-top: 0.5rem;
    }
}

/* ========================================
   TIMELINE — milestones (white theme)
======================================== */
.timeline-section {
    padding: 100px 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.timeline-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(ellipse at 20% 15%, rgba(0, 166, 81, 0.01) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 85%, rgba(0, 166, 81, 0.008) 0%, transparent 50%);
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.timeline-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.timeline-header .section-label {
    color: var(--primary-green);
}

.timeline-header .section-title {
    color: var(--secondary-dark);
}

.timeline-header .section-description {
    color: var(--text-muted);
    font-size: 1rem;
}

.tl-vertical {
    position: relative;
}

.tl-milestone {
    display: flex;
    gap: 2rem;
    padding: 1.25rem 0;
    position: relative;
    transition: background 0.4s ease;
    border-radius: 12px;
    margin: 0 -1rem;
    padding: 1.25rem 1rem;
}

.tl-milestone:hover {
    background: rgba(0, 166, 81, 0.015);
}

.tl-m-year {
    flex-shrink: 0;
    width: 110px;
    text-align: right;
    padding-top: 0.15rem;
}

.tl-m-year span {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(0, 166, 81, 0.06);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 0.3px;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.tl-milestone:hover .tl-m-year span {
    background: rgba(0, 166, 81, 0.1);
    box-shadow: 0 2px 8px rgba(0, 166, 81, 0.06);
}

.tl-m-line {
    position: relative;
    flex-shrink: 0;
    width: 24px;
    display: flex;
    justify-content: center;
}

.tl-m-line::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.02));
}

.tl-milestone:first-child .tl-m-line::before {
    top: 10px;
}

.tl-milestone:last-child .tl-m-line::before {
    bottom: auto;
    height: 10px;
}

.tl-m-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--primary-green);
    position: relative;
    z-index: 2;
    margin-top: 0.25rem;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    flex-shrink: 0;
}

.tl-milestone:hover .tl-m-dot {
    background: var(--primary-green);
    transform: scale(1.2);
    box-shadow: 0 0 16px rgba(0, 166, 81, 0.25);
}

.tl-m-body {
    flex: 1;
    min-width: 0;
    padding-bottom: 0.25rem;
}

.tl-m-idx {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--primary-green);
    opacity: 0.2;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.2rem;
    transition: opacity 0.4s ease;
}

.tl-milestone:hover .tl-m-idx {
    opacity: 0.5;
}

.tl-m-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 0.35rem;
    transition: color 0.4s ease;
}

.tl-milestone:hover .tl-m-title {
    color: var(--primary-green);
}

.tl-m-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
}

.tl-milestone.highlight .tl-m-dot {
    border-color: #f59e0b;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.2);
}

.tl-milestone.highlight:hover .tl-m-dot {
    background: #f59e0b;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.tl-milestone.highlight .tl-m-title {
    color: #f59e0b;
}

.tl-milestone.highlight:hover .tl-m-title {
    color: #d97706;
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 70px 1.5rem;
    }
    .tl-milestone {
        gap: 1rem;
        padding: 1rem 0.5rem;
        margin: 0;
    }
    .tl-m-year {
        width: 75px;
    }
    .tl-m-year span {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
    .tl-m-line {
        width: 20px;
    }
    .tl-m-dot {
        width: 12px;
        height: 12px;
        border-width: 2px;
        margin-top: 0.2rem;
    }
    .tl-m-title {
        font-size: 1rem;
    }
    .tl-m-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .timeline-section {
        padding: 60px 1rem;
    }
    .tl-milestone {
        gap: 0.75rem;
        padding: 0.75rem 0.25rem;
    }
    .tl-m-year {
        width: 55px;
    }
    .tl-m-year span {
        font-size: 0.6rem;
        padding: 2px 7px;
    }
    .tl-m-line {
        width: 16px;
    }
    .tl-m-dot {
        width: 10px;
        height: 10px;
        border-width: 2px;
    }
    .tl-m-title {
        font-size: 0.92rem;
    }
    .tl-m-desc {
        font-size: 0.8rem;
    }
}

/* ========================================
   VOICES — premium white carousel with typewriter
======================================== */
.voices-section {
    padding: 100px 2rem 110px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.voices-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(ellipse at 20% 20%, rgba(0, 166, 81, 0.015) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 166, 81, 0.01) 0%, transparent 50%);
}

.voices-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(0, 166, 81, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 166, 81, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.voices-container {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.voices-header {
    text-align: center;
    margin-bottom: 3rem;
}

.voices-header .section-title span {
    font-weight: 900;
    display: block;
    background: linear-gradient(135deg, var(--primary-green), #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-top: 0.25rem;
}

/* --- Stage --- */
.voices-stage {
    position: relative;
    background: #ffffff;
    border-radius: 32px;
    padding: 3.5rem 3.5rem 2.5rem;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.02),
        0 20px 60px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: box-shadow 0.5s ease;
}

.voices-stage:hover {
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.03),
        0 30px 80px rgba(0, 0, 0, 0.04);
}

.vs-stage-bg {
    position: absolute;
    inset: 0;
    border-radius: 32px;
    background: linear-gradient(160deg, #ffffff 0%, #fafff7 40%, #f6fdf9 60%, #ffffff 100%);
    opacity: 0.6;
    pointer-events: none;
}

/* --- Decorative corner accents --- */
.voices-stage::before,
.voices-stage::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.02), transparent 70%);
    pointer-events: none;
}

.voices-stage::before {
    top: -20px;
    left: -20px;
}

.voices-stage::after {
    bottom: -20px;
    right: -20px;
}

/* --- Quote icon --- */
.vs-quote-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.vs-quote-icon i {
    font-size: 3rem;
    color: var(--primary-green);
    opacity: 0.06;
    transition: all 0.6s ease;
}

.voices-stage:hover .vs-quote-icon i {
    opacity: 0.12;
    transform: scale(1.1) translateY(-4px);
}

/* --- Typewriter area --- */
.vs-typewriter {
    position: relative;
    z-index: 2;
    min-height: 120px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 2rem;
}

.vs-text {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 400;
    color: var(--text-main);
    line-height: 1.85;
    text-align: center;
    letter-spacing: 0.2px;
    max-width: 680px;
}

.vs-typewriter .type-cursor {
    animation: blink 0.8s infinite;
    color: var(--primary-green);
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 300;
    margin-left: 3px;
    display: inline-block;
}

/* --- Author area --- */
.vs-author-area {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vs-author-area.visible {
    opacity: 1;
    transform: translateY(0);
}

.vs-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.06), rgba(0, 166, 81, 0.14));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-green);
    flex-shrink: 0;
    transition: all 0.5s ease;
}

.vs-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 2px;
}

.vs-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- Rating --- */
.vs-rating {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.vs-rating.visible {
    opacity: 1;
}

.vs-rating i {
    font-size: 0.85rem;
    color: #f59e0b;
    transition: all 0.3s ease;
}

.vs-rating.visible i {
    animation: vsStarPop 0.4s ease forwards;
}

.vs-rating.visible i:nth-child(1) { animation-delay: 0s; }
.vs-rating.visible i:nth-child(2) { animation-delay: 0.08s; }
.vs-rating.visible i:nth-child(3) { animation-delay: 0.16s; }
.vs-rating.visible i:nth-child(4) { animation-delay: 0.24s; }
.vs-rating.visible i:nth-child(5) { animation-delay: 0.32s; }

@keyframes vsStarPop {
    0% { transform: scale(0) rotate(-20deg); opacity: 0; }
    60% { transform: scale(1.3) rotate(8deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* --- Controls --- */
.vs-controls {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 0.5rem;
}

.vs-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: white;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.85rem;
}

.vs-arrow:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 166, 81, 0.2);
}

.vs-dots {
    display: flex;
    gap: 8px;
}

.vs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.vs-dot.active {
    width: 32px;
    border-radius: 10px;
    background: var(--primary-green);
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.2);
}

.vs-dot:hover {
    background: rgba(0, 166, 81, 0.3);
}

/* --- Counter badge --- */
.vs-counter {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2px;
    opacity: 0.3;
    z-index: 2;
}

@media (max-width: 768px) {
    .voices-section {
        padding: 70px 1.25rem 80px;
    }
    .voices-stage {
        padding: 2.5rem 1.5rem 2rem;
        border-radius: 24px;
    }
    .vs-typewriter {
        min-height: 140px;
    }
    .vs-text {
        font-size: 1rem;
    }
    .vs-quote-icon i {
        font-size: 2.2rem;
    }
    .vs-counter {
        top: 1rem;
        right: 1.25rem;
        font-size: 0.6rem;
    }
    .vs-author-area {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .voices-stage {
        padding: 2rem 1.25rem 1.5rem;
    }
    .vs-text {
        font-size: 0.92rem;
    }
    .vs-typewriter {
        min-height: 160px;
    }
    .vs-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }
}

/* ========================================
   FAQ / ANSWERS
======================================== */
.answers-section {
    padding: 100px 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #ffffff, #f6fdf9, #f0fdf4, #ffffff);
}

.answers-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 166, 81, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(56, 189, 248, 0.02) 0%, transparent 50%);
}

.answers-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.answers-header {
    text-align: center;
    margin-bottom: 3rem;
}

.answers-header .section-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.answers-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.answer-item {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.answer-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(0, 166, 81, 0.06);
    transition: all 0.4s ease;
}

.answer-item:hover {
    border-color: rgba(0, 166, 81, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.answer-item:hover::before {
    background: rgba(0, 166, 81, 0.12);
}

.answer-item.active {
    border-color: rgba(0, 166, 81, 0.12);
    box-shadow: 0 12px 40px rgba(0, 166, 81, 0.04);
}

.answer-item.active::before {
    background: var(--primary-green);
}

.answer-q {
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    position: relative;
}

.aq-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(0, 166, 81, 0.04);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--primary-green);
    transition: all 0.4s ease;
}

.answer-item.active .aq-icon {
    background: var(--primary-green);
    color: white;
}

.answer-item:hover .aq-icon {
    background: rgba(0, 166, 81, 0.08);
}

.aq-num {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-green);
    opacity: 0.2;
    flex-shrink: 0;
    min-width: 22px;
    transition: opacity 0.3s ease;
}

.answer-item.active .aq-num {
    opacity: 0.5;
}

.aq-content {
    flex: 1;
    min-width: 0;
}

.aq-cat {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-green);
    opacity: 0.5;
    margin-bottom: 2px;
    transition: opacity 0.3s ease;
}

.answer-item.active .aq-cat {
    opacity: 0.8;
}

.aq-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-dark);
    transition: color 0.3s ease;
}

.answer-item.active .aq-content h3 {
    color: var(--primary-green);
}

.aq-toggle {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    background: rgba(0, 166, 81, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 0.8rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.answer-item:hover .aq-toggle {
    background: rgba(0, 166, 81, 0.08);
}

.answer-item.active .aq-toggle {
    background: var(--primary-green);
    color: white;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.2);
}

.answer-a-wrap {
    height: 0;
    overflow: hidden;
    transition: height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.answer-a-inner {
    padding: 0 1.5rem 1.2rem calc(1.5rem + 36px + 1rem + 22px + 1rem);
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.answer-a-inner strong {
    color: var(--secondary-dark);
    font-weight: 600;
}

.answer-a-inner a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}

.answer-a-inner a:hover {
    text-decoration: underline;
}

@media (max-width:768px) {
    .answers-section {
        padding: 70px 1.5rem;
    }
    .answer-q {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }
    .answer-a-inner {
        padding: 0 1.25rem 1rem 4.2rem;
    }
    .aq-icon {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
}

/* ========================================
   KNOWLEDGE — richly informative deep-dive
======================================== */
.knowledge-section {
    padding: 150px 2rem 170px;
    background:
        radial-gradient(ellipse at 15% 25%, rgba(0, 166, 81, 0.025) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 75%, rgba(180, 130, 80, 0.015) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 166, 81, 0.008) 0%, transparent 70%),
        linear-gradient(180deg, #fcfbf7 0%, #f8f7f1 40%, #f2f4ed 70%, #fcfbf7 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.knowledge-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.kn-gl {
    position: absolute;
    border-radius: 50%;
    filter: blur(200px);
    animation: knGlFloat 35s ease-in-out infinite alternate;
}

.kn-gl.kgl-1 {
    width: 600px; height: 600px;
    background: rgba(0, 166, 81, 0.03);
    top: 10%; left: -15%;
}

.kn-gl.kgl-2 {
    width: 500px; height: 500px;
    background: rgba(180, 130, 80, 0.025);
    bottom: 5%; right: -10%;
    animation-delay: -14s;
}

@keyframes knGlFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -60px) scale(1.1); }
}

.kn-texture {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

.kn-edge-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 3%, rgba(0, 166, 81, 0.08) 15%, rgba(0, 166, 81, 0.08) 85%, transparent 97%);
}

.kn-edge-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 3%, rgba(0, 166, 81, 0.08) 15%, rgba(0, 166, 81, 0.08) 85%, transparent 97%);
}

.knowledge-container {
    max-width: fit-content;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.knowledge-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.kh-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 2rem;
}

.kh-ornament::before,
.kh-ornament::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 81, 0.15));
}

.kh-ornament::after {
    background: linear-gradient(90deg, rgba(0, 166, 81, 0.15), transparent);
}

.kho-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    color: rgba(0, 166, 81, 0.2);
    letter-spacing: 2px;
}

.knowledge-header .section-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--secondary-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
}

.knowledge-header .section-title .text-gradient {
    background: linear-gradient(135deg, var(--primary-green), #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kn-header-sub {
    font-size: 0.92rem;
    color: #78716c;
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto;
    font-weight: 400;
}

.kh-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 2.5rem;
}

.kh-sep-line {
    display: block;
    width: 32px;
    height: 1px;
    background: rgba(0, 166, 81, 0.1);
}

.kh-sep-icon {
    font-size: 0.45rem;
    color: rgba(0, 166, 81, 0.15);
}

/* --- Essay --- */
.kn-essay {
    position: relative;
}

.kn-essay::before {
    content: '';
    position: absolute;
    top: 0.3rem;
    left: 1.8rem;
    bottom: 0.3rem;
    width: 1px;
    background: linear-gradient(180deg,
        rgba(0, 166, 81, 0.1) 0%,
        rgba(0, 166, 81, 0.06) 40%,
        rgba(0, 166, 81, 0.02) 70%,
        transparent 100%);
}

.kn-essay::after {
    content: '\f06c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -0.2rem;
    left: 1.2rem;
    font-size: 0.85rem;
    color: rgba(0, 166, 81, 0.12);
    transform: translateX(-50%);
}

.kn-paragraph-card {
    position: relative;
    padding: 0 0 0 4.2rem;
    margin-bottom: 0;
    transition: all 0.5s ease;
}

.kn-pc-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
}

.kn-pc-tag::before {
    content: '';
    display: block;
    width: 16px;
    height: 1px;
    background: currentColor;
    opacity: 0.3;
}

.conclusion-card .kn-pc-tag {
    color: #b45309;
}

.kn-pc-text {
    font-size: 1rem;
    color: #57534e;
    line-height: 1.9;
    letter-spacing: 0.1px;
    min-height: 40px;
    font-weight: 400;
}

.kn-pc-text strong {
    color: #292524;
    font-weight: 600;
}

.kn-pc-text em {
    color: var(--primary-green);
    font-style: italic;
}

.kn-paragraph-card[data-idx="0"] .kn-pc-text::first-letter {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--secondary-dark);
    float: left;
    line-height: 0.8;
    margin: 0.15rem 0.4rem 0 0;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: -2px;
}

.kn-paragraph-card[data-idx="0"] .kn-pc-text::first-line {
    color: #292524;
    font-weight: 500;
}

.kn-typed {
    display: inline;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}

.kn-cursor {
    display: inline;
    font-size: inherit;
    font-weight: 200;
    color: var(--primary-green);
    animation: knBlink 0.7s infinite;
    line-height: inherit;
    margin-left: 1px;
}

.kn-cursor.done {
    animation: none;
    opacity: 0;
}

@keyframes knBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.kn-typed strong {
    font-weight: 700;
    color: #1c1917;
    animation: knStyleIn 0.2s ease-out both;
}

.kn-typed em {
    font-style: italic;
    color: var(--primary-green);
    animation: knStyleIn 0.2s ease-out both;
}

@keyframes knStyleIn {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.kn-typed strong em,
.kn-typed em strong {
    font-weight: 700;
    font-style: italic;
}

.conclusion-card .kn-typed strong {
    color: #92400e;
}

.conclusion-card .kn-typed em {
    color: #b45309;
}

/* --- Dividers --- */
.kn-paragraph-divider {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 1.75rem 0 1rem 4.2rem;
    position: relative;
    z-index: 1;
}

.kpd-line {
    display: block;
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 166, 81, 0.12), transparent);
}

.kpd-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    color: rgba(0, 166, 81, 0.12);
    animation: kpdBob 4s ease-in-out infinite;
    transition: color 0.4s ease;
}

.kn-paragraph-divider:hover .kpd-icon {
    color: rgba(0, 166, 81, 0.25);
}

@keyframes kpdBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

[data-idx="6"] + .kn-paragraph-divider {
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
}

[data-idx="6"] + .kn-paragraph-divider .kpd-icon {
    font-size: 0.7rem;
    color: rgba(0, 166, 81, 0.15);
}

/* --- Conclusion --- */
.conclusion-card {
    padding-bottom: 3rem;
}

.conclusion-card .kn-pc-text {
    border-left: 2px solid rgba(217, 119, 6, 0.15);
    padding-left: 1.25rem;
    font-size: 1.02rem;
    line-height: 1.9;
}

.conclusion-card .kn-pc-text strong {
    color: #92400e;
}

.kn-endmark {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 1.5rem;
    padding-right: 0.5rem;
}

.kn-endmark-line {
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.12));
}

.kn-endmark-icon {
    font-size: 0.65rem;
    color: rgba(217, 119, 6, 0.2);
    animation: knEndPulse 3s ease-in-out infinite;
}

@keyframes knEndPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.15); opacity: 0.35; }
}

@media (max-width: 900px) {
    .knowledge-section { padding: 100px 1.5rem 120px; }
    .knowledge-container { max-width: 100%; }
    .knowledge-header { margin-bottom: 3.5rem; }
    .knowledge-header .section-title { font-size: 1.7rem; }
    .kn-header-sub { font-size: 0.88rem; }
    .kn-essay::before { left: 1.4rem; }
    .kn-essay::after { left: 0.8rem; font-size: 0.7rem; }
    .kh-ornament::before,
    .kh-ornament::after { width: 36px; }
}

@media (max-width: 768px) {
    .knowledge-section { padding: 80px 1.25rem 100px; }
    .knowledge-header { margin-bottom: 3rem; }
    .knowledge-header .section-title { font-size: 1.4rem; }
    .kn-paragraph-card { padding: 0 0 0 3rem; }
    .kn-pc-text { font-size: 0.92rem; line-height: 1.8; }
    .kn-paragraph-divider { padding: 1.25rem 0 0.75rem 3rem; }
    .conclusion-card .kn-pc-text { padding-left: 1rem; font-size: 0.93rem; }
    .kn-endmark { margin-top: 1rem; }
}

@media (max-width: 480px) {
    .knowledge-section { padding: 60px 1rem 80px; }
    .knowledge-header .section-title { font-size: 1.2rem; }
    .kn-paragraph-card { padding: 0 0 0 2.2rem; }
    .kn-essay::before { left: 0.9rem; }
    .kn-essay::after { left: 0.35rem; font-size: 0.55rem; }
    .kn-pc-text { font-size: 0.87rem; }
    .kn-pc-tag { font-size: 0.45rem; }
    .kn-pc-tag::before { width: 10px; }
    .kn-paragraph-divider { padding: 1rem 0 0.5rem 2.2rem; gap: 10px; }
    .kpd-line { width: 22px; }
    .conclusion-card .kn-pc-text { padding-left: 0.75rem; font-size: 0.88rem; }
    .kn-endmark { margin-top: 0.75rem; }
    .kn-endmark-line { width: 28px; }
}

/* ========================================
   HORIZON CTA
======================================== */
.horizon-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 100px 2rem;
    text-align: center;
    background: linear-gradient(135deg, #008841, #00A651, #00c862, #00A651, #008841);
    background-size: 300% 300%;
    animation: horizonShift 8s ease infinite;
}

@keyframes horizonShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.horizon-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.horizon-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    animation: hParticle 12s ease-in-out infinite alternate;
}

.horizon-particle.p1 {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -60px;
    filter: blur(60px);
}

.horizon-particle.p2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -30px;
    filter: blur(40px);
    animation-delay: -4s;
}

.horizon-particle.p3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 40%;
    filter: blur(50px);
    animation-delay: -8s;
}

@keyframes hParticle {
    0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    100% { transform: translate(40px, -40px) scale(1.3); opacity: 0.6; }
}

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

.horizon-tag {
    display: inline-block;
    padding: 6px 22px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 500px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 1.5rem;
}

.horizon-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.horizon-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.horizon-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.horizon-btn {
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.horizon-btn.primary {
    background: white;
    color: var(--primary-green);
}

.horizon-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.horizon-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.horizon-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

@media (max-width:768px) {
    .horizon-cta {
        padding: 70px 1.5rem;
    }
    .horizon-actions {
        flex-direction: column;
        align-items: center;
    }
    .horizon-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* ========================================
   SUPER FOOTER
======================================== */
.super-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    margin-top: -1px;
    color: white;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.footer-wave-svg {
    width: 100%;
    height: 80px;
    display: block;
}

.footer-main {
    position: relative;
    padding-top: 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr 1.5fr;
    gap: 40px;
}

.footer-brand-col {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .brand-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-logo .brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo .logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.footer-logo .logo-text .brand-florian {
    color: white;
}

.footer-logo .logo-text .brand-bd {
    color: var(--primary-green);
}

.footer-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 166, 81, 0.35);
}

.footer-col {
    padding-top: 10px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    color: white;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(8px);
}

.footer-links a:hover i {
    transform: translateX(4px);
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 38px;
    height: 38px;
    background: rgba(0, 166, 81, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-text {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
}

.contact-text a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-green);
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-form {
    margin-bottom: 20px;
}

.input-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: var(--primary-green);
    box-shadow: 0 0 20px rgba(0, 166, 81, 0.15);
}

.input-wrapper input {
    flex: 1;
    padding: 14px 18px;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.95rem;
    font-family: inherit;
}

.input-wrapper input::placeholder {
    color: #64748b;
}

.submit-btn {
    padding: 14px 20px;
    background: var(--primary-green);
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #008f45;
}

.trust-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
}

.trust-badges .badge i {
    color: var(--primary-green);
}

.payment-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 30px;
}

.payment-header {
    text-align: center;
    margin-bottom: 20px;
}

.payment-header span {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.payment-card i {
    color: var(--primary-green);
}

.payment-card:hover {
    background: rgba(0, 166, 81, 0.15);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 25px 30px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #64748b;
    font-size: 0.9rem;
}

.copyright p strong {
    color: white;
}

.copyright p i {
    color: #ef4444;
    margin: 0 4px;
}

.legal-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.legal-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary-green);
}

/* ========================================
   RESPONSIVE — general
======================================== */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .footer-brand-col {
        grid-column: span 3;
        text-align: center;
        padding-right: 0;
    }
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-brand-col {
        grid-column: span 2;
    }
    .why-fastest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    .footer-brand-col {
        grid-column: span 1;
    }
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .why-fastest-grid {
        grid-template-columns: 1fr;
    }
    .drivers-grid {
        grid-template-columns: 1fr;
    }
    .velocity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .network-flywheel {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
    .velocity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
