: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;
}

/* ========================================
   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;
}

/* ========================================
   RESPONSIVE NAV & SIDEBAR
======================================== */
@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%;
    }
}

/* ========================================
   HEADER (ABOUT PAGE)
======================================== */
/* ========================================
   HERO — benefits style
========================================= */
.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;
    white-space: nowrap;
}

.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 --- */
.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: 80px;
        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;
        }
    }
}

/* ========================================
   CONTENT SECTIONS
======================================== */
.content-section {
    padding: 100px 2rem;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.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(--text-primary, 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;
}

/* Vision Section */
.vision-section {
    background: var(--bg-soft);
}

.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.content-block {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.content-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box i {
    font-size: 28px;
    color: white;
}

.content-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-dark);
}

.content-block p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* History Timeline */
.history-section {
    background: var(--bg-soft);
    position: relative;
}

.history-timeline {
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
    padding: 2rem 0;
}

.history-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 18px;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary-green), transparent);
}

.timeline-item {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid var(--primary-green);
    border-radius: 50%;
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    background: var(--primary-green);
    box-shadow: 0 0 15px rgba(0, 166, 81, 0.4);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.timeline-year {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 166, 81, 0.1);
    color: var(--primary-green);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-dark);
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.timeline-item.highlight .timeline-content {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-left: 4px solid var(--primary-green);
}

/* Mission Section */
.mission-section {
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.mission-card {
    position: relative;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.mission-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(0, 166, 81, 0.2));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-icon i {
    font-size: 24px;
    color: var(--primary-green);
}

.mission-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-dark);
}

.mission-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.mission-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 166, 81, 0.08);
}

/* Innovation Section */
.innovation-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.feature-list i {
    color: var(--primary-green);
    font-size: 1.25rem;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 166, 81, 0.3);
    transition: var(--transition-smooth);
}

.feature-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 166, 81, 0.4);
}

.feature-visual {
    position: relative;
    height: 400px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
}

.visual-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.visual-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.visual-card i {
    font-size: 3rem;
    color: var(--primary-green);
}

.visual-card span {
    font-weight: 600;
    color: var(--secondary-dark);
}

.visual-card.card-1 {
    grid-column: span 2;
}

/* Values Section */
.values-section {
    background: var(--bg-soft);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 28px;
    color: white;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-dark);
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Impact Section */
.impact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.impact-stat {
    text-align: center;
}

.stat-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 166, 81, 0.3);
}

.stat-circle i {
    font-size: 2.5rem;
    color: white;
}

.impact-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 0.5rem;
}

.impact-stat p {
    color: var(--text-muted);
    font-size: 1rem;
}

.impact-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    position: relative;
}

.story-quote {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(0, 166, 81, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.story-quote i {
    font-size: 20px;
    color: var(--primary-green);
}

.story-card p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.story-author strong {
    display: block;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 0.25rem;
}

.story-author span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Team Section */
.team-section {
    background: white;
}

.founder-spotlight {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    background: white;
    padding: 4rem;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.founder-avatar {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 166, 81, 0.3);
}

.founder-avatar i {
    font-size: 6rem;
    color: white;
}

.founder-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 0.5rem;
}

.founder-title {
    display: block;
    font-size: 1.125rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.founder-achievements {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 166, 81, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-green);
}

.achievement-item i {
    font-size: 1.125rem;
}

.portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.portal-btn:hover {
    background: var(--primary-green);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 166, 81, 0.2);
}

.portal-btn i {
    font-size: 12px;
    transition: transform 0.4s;
}

.portal-btn:hover i {
    transform: translate(3px, -3px);
}

/* Technology Section */
.tech-section {
    background: var(--bg-soft);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    text-align: center;
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.tech-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(0, 166, 81, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tech-icon i {
    font-size: 28px;
    color: var(--primary-green);
}

.tech-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-dark);
}

.tech-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Future Section */
.future-section {
    background: white;
}

.future-roadmap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.roadmap-item {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    border-left: 4px solid var(--primary-green);
    transition: var(--transition-smooth);
}

.roadmap-item:hover {
    transform: translateX(6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.roadmap-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(0, 166, 81, 0.2));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.roadmap-icon i {
    font-size: 26px;
    color: var(--primary-green);
}

.roadmap-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-dark);
}

.roadmap-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
    padding: 100px 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn.primary-large,
.cta-btn.secondary-large {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.cta-btn.primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary-large {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary-large:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* ========================================
   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);
}

/* ========================================
   JOURNEY / HOW IT WORKS — ULTRA PREMIUM
========================================= */
.journey-section {
    background: linear-gradient(160deg, #021208 0%, #062216 25%, #0a2a1a 50%, #051a10 75%, #010d06 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 100px 2rem 80px;
}

/* ── Section Dividers ── */
.section-divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1;
    pointer-events: none;
}

.section-divider.top-divider {
    top: -1px;
}

.section-divider.bottom-divider {
    bottom: -1px;
    transform: rotate(180deg);
}

.section-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ── Background Layer ── */
.journey-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.journey-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 166, 81, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 166, 81, 0.035) 1px, transparent 1px);
    background-size: 70px 70px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 72%);
    mask-image: radial-gradient(ellipse at center, black 25%, transparent 72%);
}

.journey-dot-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(0, 166, 81, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    animation: dotDrift 40s linear infinite;
}

@keyframes dotDrift {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(15px, 15px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.journey-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 25s ease-in-out infinite alternate;
}

.journey-glow-orb.glow-1 {
    width: 700px;
    height: 700px;
    background: #00A651;
    top: -250px;
    left: -200px;
    opacity: 0.1;
}

.journey-glow-orb.glow-2 {
    width: 500px;
    height: 500px;
    background: #00c862;
    bottom: -150px;
    right: -100px;
    opacity: 0.07;
    animation-delay: -8s;
}

.journey-glow-orb.glow-3 {
    width: 350px;
    height: 350px;
    background: #38bdf8;
    top: 30%;
    left: 30%;
    opacity: 0.04;
    animation-delay: -15s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(80px, -80px) scale(1.2);
    }
}

/* ── Header ── */
.journey-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3.5rem;
}

.journey-tag-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 1.2rem;
}

.journey-tag-line {
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 81, 0.3));
}

.journey-tag-line:last-child {
    background: linear-gradient(90deg, rgba(0, 166, 81, 0.3), transparent);
}

.journey-tag {
    display: inline-block;
    background: rgba(0, 166, 81, 0.08);
    color: #00A651;
    padding: 7px 22px;
    border-radius: 500px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 166, 81, 0.12);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.journey-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.journey-title-underline {
    display: block;
    width: 100px;
    height: 3px;
    margin: 0.8rem auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, transparent, #00A651, #38bdf8, transparent);
    background-size: 200% 100%;
    animation: titleShimmer 3s linear infinite;
    position: relative;
    overflow: visible;
}

.jtu-glow {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 18px;
    background: radial-gradient(ellipse, rgba(0, 166, 81, 0.4), transparent 70%);
    filter: blur(6px);
    animation: glowPulse 2s ease-in-out infinite;
}

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

    100% {
        background-position: 200% 50%;
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(-50%) scaleX(0.8);
    }

    50% {
        opacity: 0.8;
        transform: translateX(-50%) scaleX(1.3);
    }
}

.journey-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.journey-section .section-container {
    position: relative;
    z-index: 2;
}

/* ── Track / Nodes ── */
.journey-track {
    position: relative;
    max-width: 1050px;
    margin: 0 auto 2.5rem;
    height: 60px;
    z-index: 2;
}

.journey-svg {
    position: absolute;
    width: 100%;
    height: 80px;
    top: 50%;
    transform: translateY(-50%);
    overflow: visible;
}

.journey-path-glow {
    transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-node {
    position: absolute;
    top: 36px;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 3;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.journey-node span {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.journey-node.active span {
    transform: scale(1.15);
}

.jn-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 166, 81, 0);
    transition: all 0.5s ease;
    pointer-events: none;
}

.journey-node.active .jn-ring {
    border-color: rgba(0, 166, 81, 0.3);
    animation: jnRingPulse 2s ease-in-out infinite;
}

@keyframes jnRingPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.4);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.journey-node::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.12), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.journey-node:nth-child(2) {
    left: 10%;
}

.journey-node:nth-child(3) {
    left: 30%;
}

.journey-node:nth-child(4) {
    left: 50%;
}

.journey-node:nth-child(5) {
    left: 70%;
}

.journey-node:nth-child(6) {
    left: 90%;
}

.journey-node.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
    box-shadow:
        0 0 20px rgba(0, 166, 81, 0.4),
        0 0 60px rgba(0, 166, 81, 0.15);
    transform: translateX(-50%) scale(1.25);
}

.journey-node.active::after {
    opacity: 1;
    animation: nodeRipple 2.5s ease-out infinite;
}

@keyframes nodeRipple {
    0% {
        transform: scale(0.6);
        opacity: 0.4;
    }

    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

/* ── Cards Grid ── */
.journey-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.85rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Individual Card ── */
.journey-card {
    position: relative;
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 1.75rem 1rem 1.5rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    cursor: default;
    transform-style: preserve-3d;
    perspective: 800px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Card border with animated gradient */
.j-card-border {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05),
            rgba(0, 166, 81, 0.08),
            rgba(255, 255, 255, 0.02));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.journey-card:hover .j-card-border {
    background: linear-gradient(135deg,
            rgba(0, 166, 81, 0.15),
            rgba(0, 166, 81, 0.05),
            rgba(56, 189, 248, 0.15));
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

/* Card background shimmer */
.j-card-bg-shine {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.008) 50%,
            transparent 70%);
    transform: rotate(35deg);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.journey-card:hover .j-card-bg-shine {
    opacity: 1;
    animation: shineSweep 2.5s ease infinite;
}

@keyframes shineSweep {
    0% {
        transform: rotate(35deg) translateX(-100%);
    }

    100% {
        transform: rotate(35deg) translateX(100%);
    }
}

.j-card-glow {
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 166, 81, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.journey-card:hover {
    transform: translateY(-10px) scale(1.04);
    background: rgba(255, 255, 255, 0.045);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.35),
        0 0 40px rgba(0, 166, 81, 0.06);
}

.journey-card:hover .j-card-glow {
    opacity: 1;
}

/* ── Card Number ── */
.j-card-num {
    font-size: 3.2rem;
    font-weight: 900;
    color: rgba(0, 166, 81, 0.06);
    line-height: 1;
    margin-bottom: 0.3rem;
    transition: all 0.5s ease;
    letter-spacing: -2px;
    animation: numFloat 6s ease-in-out infinite;
}

@keyframes numFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.journey-card:hover .j-card-num {
    color: rgba(0, 166, 81, 0.15);
    animation: none;
    transform: scale(1.05);
}

/* ── Card Icon ── */
.j-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(0, 166, 81, 0.08);
    border: 1px solid rgba(0, 166, 81, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    transition: all 0.5s ease;
    position: relative;
}

.j-card-icon i {
    font-size: 22px;
    color: var(--primary-green);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.journey-card:hover .j-card-icon {
    background: rgba(0, 166, 81, 0.15);
    transform: scale(1.12) rotate(-6deg) translateZ(20px);
    border-color: rgba(0, 166, 81, 0.2);
    box-shadow: 0 10px 30px rgba(0, 166, 81, 0.15);
}

.journey-card:hover .j-card-icon i {
    color: #00c862;
    animation: iconDance 0.8s ease;
}

@keyframes iconDance {
    0% {
        transform: scale(1) rotate(0deg);
    }

    20% {
        transform: scale(1.3) rotate(-14deg);
    }

    40% {
        transform: scale(1.05) rotate(10deg);
    }

    60% {
        transform: scale(1.15) rotate(-6deg);
    }

    80% {
        transform: scale(1) rotate(4deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* ── Card Title & Text ── */
.j-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: color 0.4s ease;
}

.journey-card:hover .j-card-title {
    color: var(--primary-green);
}

.j-card-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
    transition: color 0.5s ease;
}

.journey-card:hover .j-card-text {
    color: rgba(255, 255, 255, 0.5);
}

/* ── Step Indicator ── */
.j-card-step-indicator {
    width: 24px;
    height: 2px;
    background: rgba(0, 166, 81, 0.08);
    border-radius: 2px;
    margin: 1rem auto 0;
    transition: all 0.5s ease;
}

.journey-card:hover .j-card-step-indicator {
    width: 40px;
    background: var(--primary-green);
    box-shadow: 0 0 10px rgba(0, 166, 81, 0.3);
}

/* ── Tablet ── */
@media (max-width: 1100px) {
    .journey-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .journey-section {
        padding: 70px 1.25rem 60px;
    }

    .journey-cards {
        grid-template-columns: 1fr;
        max-width: 380px;
        gap: 0.85rem;
    }

    .journey-card {
        padding: 1.5rem 1.25rem;
    }

    .journey-track {
        display: none;
    }

    .journey-title {
        font-size: 1.7rem;
    }

    .journey-desc {
        font-size: 0.9rem;
    }

    .j-card-num {
        font-size: 2.2rem;
    }

    .section-divider {
        height: 30px;
    }

    .journey-tag-line {
        width: 24px;
    }
}

/* ========================================
   WHY US COMPARISON GRID — PREMIUM
========================================= */
.why-us-section {
    background: linear-gradient(160deg, #ffffff 0%, #f6fdf9 30%, #f0fdf4 60%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

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

.why-us-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(0, 166, 81, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 166, 81, 0.03) 0%, transparent 50%);
}

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

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

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

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

@keyframes whyUsBlob {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(50px, -50px) scale(1.3);
        opacity: 0.8;
    }
}

.why-us-header {
    position: relative;
    z-index: 2;
}

.why-us-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-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 2;
}

.why-us-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;
}

.why-us-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);
}

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

.why-us-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);
}

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

.why-us-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);
}

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

.why-us-card:hover .why-us-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);
}

.why-us-card:hover .why-us-icon i {
    color: white;
    animation: whyIconPop 0.6s ease;
}

@keyframes whyIconPop {
    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);
    }
}

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

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

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

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

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

.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;
}

.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;
}

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

.why-us-card:hover .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;
    }
}

.why-us-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;
}

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

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

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .why-us-card {
        backdrop-filter: none;
        background: white;
    }

    .why-us-top {
        padding: 1.75rem 1.25rem 1rem;
    }

    .why-us-bottom {
        padding: 0.75rem 1.25rem 1.5rem;
    }
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.why-us-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.why-us-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

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

.why-us-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.1), rgba(0, 166, 81, 0.2));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.why-us-icon i {
    font-size: 24px;
    color: var(--primary-green);
}

.why-us-top h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 0.5rem;
}

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

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    gap: 1rem;
}

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

.vs-divider span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.why-us-bottom {
    padding: 1.2rem 2rem 2rem;
    text-align: center;
}

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

/* ========================================
   FAQ SECTION (About Page)
======================================== */
.faq-section-about {
    background: var(--bg-soft);
}

.faq-grid-about {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-about {
    background: white;
    border-radius: 16px;
    margin-bottom: 14px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.faq-item-about:hover {
    border-color: rgba(0, 166, 81, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.faq-question-about {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.faq-question-about h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary-dark);
    transition: var(--transition-smooth);
    flex: 1;
}

.faq-item-about.active .faq-question-about h3 {
    color: var(--primary-green);
}

.faq-toggle-about {
    width: 32px;
    height: 32px;
    background: var(--bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-item-about.active .faq-toggle-about {
    background: var(--primary-green);
    color: white;
    transform: rotate(180deg);
}

.faq-answer-about {
    height: 0;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner-about {
    padding: 0 28px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

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

/* ========================================
   PARTNER MARQUEE
======================================== */
.partner-marquee {
    background: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marqueeScroll 50s linear infinite;
}

.marquee-content span {
    font-size: 1.1rem;
    font-weight: 800;
    color: #94a3b8;
    margin: 0 50px;
    letter-spacing: 5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.marquee-content span:hover {
    color: var(--primary-green);
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ========================================
   INTERACTIVE JOURNEY SECTION
======================================== */
.interactive-journey-section {
    background: #ffffff;
    padding: 120px 0 !important;
    position: relative;
    overflow: hidden;
}

.journey-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.journey-scene {
    position: relative;
    width: 100%;
    height: 700px;
    border-radius: 32px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.journey-sky-gradient {
    position: absolute;
    inset: 0;
    background: #ffffff;
    z-index: 0;
}

.journey-viewport {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    will-change: transform;
}

.journey-story-hub {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.1s linear;
}

.journey-story-fragment {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(300px, 80vw, 420px);
    padding: clamp(24px, 4vw, 40px);
    background: #ffffff;
    border: 1px solid rgba(0, 166, 81, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-radius: 32px;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transition: opacity 0.4s ease;
}

.journey-story-fragment.active {
    opacity: 1;
    transform: translate(-50%, -50%) translateZ(120px) scale(1.05);
    box-shadow: 0 12px 48px rgba(0, 166, 81, 0.15);
    border-color: rgba(0, 166, 81, 0.4);
}

.journey-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 800;
    color: var(--primary-green);
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.journey-fragment-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.journey-chapter-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-green);
    opacity: 0.9;
}

.journey-fragment-content h3 {
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--secondary-dark);
}

.journey-fragment-content p {
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.7;
    color: var(--text-muted);
}

.journey-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 100;
    pointer-events: all;
}

.journey-nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 166, 81, 0.3);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    color: var(--primary-green);
}

.journey-nav-arrow svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.journey-nav-arrow:hover {
    background: var(--primary-green);
    color: white;
    transform: scale(1.1);
    border-color: var(--primary-green);
}

.journey-nav-indicator {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 14px 24px;
    border-radius: 50px;
    border: 1px solid rgba(0, 166, 81, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.journey-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 166, 81, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.journey-dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--primary-green);
}

.journey-interaction-hint {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    opacity: 0.6;
    pointer-events: none;
    z-index: 50;
}

/* ========================================
   RESPONSIVE
======================================== */
@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) {
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-spotlight {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem;
    }

    .journey-scene {
        height: 600px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 60px 1.5rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .two-col,
    .mission-grid,
    .values-grid,
    .impact-stats,
    .impact-stories,
    .tech-grid,
    .future-roadmap,
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .journey-track {
        display: none;
    }

    .process-step {
        max-width: 100%;
        width: 100%;
    }

    .process-arrow {
        padding: 0.5rem 0;
        margin-top: 0;
        transform: rotate(90deg);
    }

    @keyframes arrowBounce {

        0%,
        100% {
            transform: rotate(90deg) translateX(0);
            opacity: 0.25;
        }

        50% {
            transform: rotate(90deg) translateX(6px);
            opacity: 0.6;
        }
    }

    .process-progress-track {
        display: none;
    }

    .process-floating-leaf {
        font-size: 5rem;
        opacity: 0.03;
    }

    .content-block,
    .mission-card,
    .value-card,
    .story-card,
    .tech-card {
        padding: 2rem;
    }

    .feature-visual {
        height: 300px;
        gap: 1rem;
    }

    .visual-card {
        padding: 1.5rem;
    }

    .visual-card i {
        font-size: 2rem;
    }

    .founder-avatar {
        width: 180px;
        height: 180px;
    }

    .founder-avatar i {
        font-size: 4rem;
    }

    .founder-spotlight {
        padding: 2rem;
    }

    .portal-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .cta-section {
        padding: 60px 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-btn.primary-large,
    .cta-btn.secondary-large {
        width: 100%;
        justify-content: center;
    }

    .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;
    }

    .interactive-journey-section {
        padding: 80px 0 !important;
    }

    .journey-container {
        padding: 0 1rem;
    }

    .journey-scene {
        height: 500px;
        border-radius: 24px;
    }

    .journey-story-fragment {
        width: clamp(260px, 90vw, 350px);
        padding: 24px;
    }

    .journey-story-fragment.active {
        transform: translate(-50%, -50%) translateZ(80px) scale(1);
    }

    .journey-controls {
        bottom: 24px;
        gap: 16px;
    }

    .journey-nav-arrow {
        width: 40px;
        height: 40px;
    }

    .journey-nav-indicator {
        padding: 10px 18px;
        gap: 8px;
    }

    .journey-dot {
        width: 6px;
        height: 6px;
    }

    .journey-dot.active {
        width: 20px;
    }

    .journey-interaction-hint {
        top: 20px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .journey-scene {
        height: 450px;
    }

    .journey-story-fragment {
        width: clamp(240px, 92vw, 320px);
        padding: 20px;
    }

    .journey-number {
        font-size: 8rem;
    }
}

/* Partner Section */
.partner-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.partner-grid-about {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partner-card-about {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    width: 380px;
    max-width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.partner-card-about:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.partner-card-icon {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 16px;
}

.partner-card-about h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 10px;
    font-weight: 600;
}

.partner-card-about p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: #10b981;
    color: #fff;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.partner-btn:hover {
    background: #059669;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
}

.stats-section .section-label {
    color: #10b981;
}

.stats-section .section-title {
    color: #fff;
}

.stats-section .section-description {
    color: rgba(255, 255, 255, 0.6);
}

.stats-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 28px;
    width: 220px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Credentials Section */
.credentials-section {
    background: #f8fafc;
}

.credentials-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.credential-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 24px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credential-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.credential-icon {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 14px;
}

.credential-card h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 600;
}

.credential-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* ========================================
   ORIGIN — editorial narrative
========================================= */
.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;
}

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

/* --- Left: Main narrative --- */
.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;
}

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

/* Marker */
.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;
    }
}

/* Fact cards */
.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;
}

/* Quote */
.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;
}

/* Founder cards */
.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;
    }
}

/* ========================================
   CHRONICLE — horizontal milestone cards
========================================= */
.chronicle-section {
    padding: 100px 2rem 80px;
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
}

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

.chronicle-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 20s ease-in-out infinite alternate;
}

.chronicle-orb.ca {
    width: 500px;
    height: 500px;
    background: rgba(0, 166, 81, 0.08);
    top: -200px;
    left: -100px;
}

.chronicle-orb.cb {
    width: 350px;
    height: 350px;
    background: rgba(56, 189, 248, 0.05);
    bottom: -100px;
    right: -80px;
    animation-delay: -8s;
}

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

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

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

.chronicle-header .section-title {
    color: #fff;
}

.chronicle-header .section-description {
    color: rgba(255, 255, 255, 0.5);
}

.chronicle-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding: 1rem 0 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}

.chronicle-track::-webkit-scrollbar {
    display: none;
}

.chronicle-track:active {
    cursor: grabbing;
}

.chronicle-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2rem 1.75rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    perspective: 600px;
}

.chronicle-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(0, 166, 81, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.chronicle-card.highlight {
    background: linear-gradient(160deg, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.02));
    border-color: rgba(0, 166, 81, 0.15);
}

.chronicle-card.highlight:hover {
    border-color: rgba(0, 166, 81, 0.3);
}

.cc-year {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(0, 166, 81, 0.1);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.cc-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 166, 81, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--primary-green);
    transition: all 0.4s ease;
}

.chronicle-card:hover .cc-icon {
    background: var(--primary-green);
    color: white;
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 8px 24px rgba(0, 166, 81, 0.2);
}

.cc-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.6rem;
}

.chronicle-card:hover .cc-title {
    color: var(--primary-green);
}

.cc-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

.cc-index {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(0, 166, 81, 0.04);
    line-height: 1;
    pointer-events: none;
}

.chronicle-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.chronicle-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chronicle-arrow:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: scale(1.1);
}

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

.cdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
}

.cdot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--primary-green);
}

@media (max-width:768px) {
    .chronicle-card {
        flex: 0 0 260px;
        padding: 1.5rem;
    }

    .chronicle-section {
        padding: 70px 1.25rem 60px;
    }
}

/* ========================================
   GROWTH METERS — vertical progress bars
========================================= */
.meters-section {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    position: relative;
}

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

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

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

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

.meter-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);
}

.meter-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);
}

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

.meter-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);
}

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

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

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

@media (max-width:900px) {
    .meters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .meter-bar-wrap {
        width: 50px;
        height: 170px;
    }
}

@media (max-width:480px) {
    .meters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .meter-number {
        font-size: 1.6rem;
    }
}

/* ========================================
   ARCHITECTS — founder profiles
========================================= */
.architects-section {
    padding: 100px 2rem;
    background: var(--bg-soft);
}

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

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

.architects-header .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

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

.architects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* --- Card --- */
.architect-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.architect-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 166, 81, 0.1);
}

/* --- Top area with avatar --- */
.ac-top {
    padding: 2.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    position: relative;
    overflow: hidden;
}

.ac-top::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(0, 166, 81, 0.04), transparent 50%);
    pointer-events: none;
}

.ac-avatar {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 166, 81, 0.25);
    position: relative;
    z-index: 1;
}

.ac-avatar i {
    font-size: 3rem;
    color: white;
}

.ac-badge {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(0, 166, 81, 0.1);
    border: 1px solid rgba(0, 166, 81, 0.15);
    border-radius: 500px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-green);
    position: relative;
    z-index: 1;
}

/* --- Body --- */
.ac-body {
    padding: 1.5rem 2rem 2.5rem;
}

/* Head */
.ac-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.ac-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-dark);
    line-height: 1.2;
}

.ac-alias {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

.ac-role {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-green);
    text-align: right;
    white-space: nowrap;
}

/* Stats row */
.ac-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 1.2rem;
}

.ac-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.65rem 0.3rem;
    background: rgba(0, 166, 81, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(0, 166, 81, 0.03);
}

.acs-value {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary-dark);
}

.acs-label {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1px;
}

/* Bio */
.ac-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Highlights */
.ac-highlights {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1.2rem;
}

.ac-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-main);
    padding: 6px 0;
}

.ac-highlight i {
    font-size: 0.75rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

/* Quote */
.ac-quote {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    background: rgba(0, 166, 81, 0.02);
    border-radius: 12px;
    border-left: 3px solid var(--primary-green);
    margin-bottom: 1.5rem;
}

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

.ac-quote span {
    font-size: 0.85rem;
    color: var(--text-main);
    line-height: 1.6;
    font-style: italic;
}

/* Bottom link */
.ac-bottom {
    text-align: center;
}

.ac-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 2px solid var(--primary-green);
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary-green);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.ac-link:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 166, 81, 0.2);
}

.ac-link i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.ac-link:hover i {
    transform: translateX(4px);
}

@media (max-width:768px) {
    .architects-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .architects-section {
        padding: 70px 1.5rem;
    }

    .ac-head {
        flex-direction: column;
        gap: 4px;
    }

    .ac-role {
        text-align: left;
    }
}

/* ========================================
   CREDO — declaration (white editorial)
========================================= */
.credo-section {
    padding: 100px 2rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(170deg, #ffffff 0%, #f6fdf9 30%, #f0fdf4 60%, #ffffff 100%);
}

.credo-ambient {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(ellipse at 20% 30%, rgba(0, 166, 81, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 166, 81, 0.02) 0%, transparent 50%);
    animation: credoAmbient 20s ease-in-out infinite alternate;
}

@keyframes credoAmbient {
    0% {
        transform: scale(1) rotate(0deg);
    }

    100% {
        transform: scale(1.08) rotate(2deg);
    }
}

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

/* --- Header with seal --- */
.credo-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.credo-seal {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.08), rgba(0, 166, 81, 0.04));
    border: 1px solid rgba(0, 166, 81, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-green);
    position: relative;
}

.credo-seal::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(0, 166, 81, 0.04);
}

.credo-header .section-label {
    color: var(--primary-green);
    letter-spacing: 4px;
    font-size: 0.75rem;
}

.credo-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 300;
    color: var(--secondary-dark);
    line-height: 1.15;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.credo-title span {
    font-weight: 800;
    display: block;
    background: linear-gradient(135deg, var(--primary-green) 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Declaration block --- */
.credo-declaration {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3.5rem;
    padding: 2.5rem 3rem;
    position: relative;
    border-top: 1px solid rgba(0, 166, 81, 0.06);
    border-bottom: 1px solid rgba(0, 166, 81, 0.06);
}

.credo-declaration::before,
.credo-declaration::after {
    content: '\201C';
    position: absolute;
    font-size: 5rem;
    line-height: 1;
    color: rgba(0, 166, 81, 0.04);
    font-family: serif;
}

.credo-declaration::before {
    top: -0.5rem;
    left: 0.5rem;
}

.credo-declaration::after {
    content: '\201D';
    bottom: -1.5rem;
    right: 0.5rem;
    top: auto;
}

.credo-text {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: var(--text-main);
    line-height: 1.8;
    font-style: italic;
    letter-spacing: 0.3px;
}

.credo-signature {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.credo-signature span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-green);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.credo-signature i {
    font-size: 1rem;
    color: rgba(0, 166, 81, 0.12);
}

/* --- Articles grid --- */
.credo-articles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.credo-article {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.75rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.credo-article::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.5rem;
    bottom: 1.5rem;
    width: 2px;
    background: linear-gradient(to bottom, rgba(0, 166, 81, 0.12), transparent);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.credo-article:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 166, 81, 0.08);
}

.credo-article:hover::before {
    background: linear-gradient(to bottom, var(--primary-green), rgba(0, 166, 81, 0.2));
    top: 0;
    bottom: 0;
}

.ca-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #00703a;
    background: rgba(0, 166, 81, 0.04);
    border: 1px solid rgba(0, 166, 81, 0.06);
    border-radius: 10px;
    transition: all 0.4s ease;
}

.credo-article:hover .ca-num {
    background: rgba(0, 166, 81, 0.08);
    border-color: rgba(0, 166, 81, 0.12);
    transform: scale(1.05);
}

.ca-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ca-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-dark);
    transition: color 0.3s ease;
}

.credo-article:hover .ca-body h3 {
    color: var(--primary-green);
}

.ca-body p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.75;
}

@media (max-width:900px) {
    .credo-articles {
        grid-template-columns: 1fr;
    }
}

@media (max-width:768px) {
    .credo-section {
        padding: 70px 1.5rem;
    }

    .credo-declaration {
        padding: 1.5rem;
    }

    .credo-article {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .credo-article::before {
        display: none;
    }
}

/* ========================================
   TENETS — optimized premium grid
========================================= */
.tenets-section {
    --tenet-bg: #0d0f1a;
    padding: 100px 2rem;
    background: linear-gradient(160deg, #080b1a 0%, #100b20 35%, #0a1618 65%, #080b1a 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.tenets-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

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

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

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

.tenets-header .section-title {
    color: #fff;
}

.tenets-header .section-description {
    color: rgba(255, 255, 255, 0.35);
    font-size: 1rem;
}

/* ── Grid ── */
.tenets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* ── Card ── */
.tenet-card {
    position: relative;
    padding: 2.5rem 1.75rem 2rem;
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    cursor: default;
    background: linear-gradient(160deg, color-mix(in srgb, var(--a) 8%, var(--tenet-bg)), var(--tenet-bg) 80%);
    border: 1.5px solid color-mix(in srgb, var(--a) 10%, rgba(255, 255, 255, 0.03));
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s ease, box-shadow 0.5s ease;
    will-change: transform;
}

/* Hover lift */
.tenet-card:hover {
    border-color: color-mix(in srgb, var(--a) 30%, transparent);
    transform: translateY(-8px);
    box-shadow: 0 30px 70px color-mix(in srgb, var(--a) 8%, rgba(0, 0, 0, 0.4)), 0 0 50px color-mix(in srgb, var(--a) 4%, transparent);
}

/* Ambient glow reveal on hover */
.tenet-card::after {
    content: '';
    position: absolute;
    top: -80%;
    left: -80%;
    width: 260%;
    height: 260%;
    background: radial-gradient(circle at 30% 20%, color-mix(in srgb, var(--a) 6%, transparent), transparent 55%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.tenet-card:hover::after {
    opacity: 1;
}

/* ── Number badge (decorative watermark) ── */
.tenet-badge {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, color-mix(in srgb, var(--a) 18%, transparent), color-mix(in srgb, var(--a) 6%, transparent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    letter-spacing: -3px;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tenet-card:hover .tenet-badge {
    opacity: 0.6;
    transform: scale(1.06);
}

/* ── Icon ── */
.tenet-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(145deg, color-mix(in srgb, var(--a) 15%, var(--tenet-bg)), color-mix(in srgb, var(--a) 6%, var(--tenet-bg)));
    border: 1.5px solid color-mix(in srgb, var(--a) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--a);
    flex-shrink: 0;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.5s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.5s ease;
    will-change: transform;
}

.tenet-card:hover .tenet-icon {
    transform: scale(1.12) rotate(-5deg);
    background: linear-gradient(145deg, var(--a), color-mix(in srgb, var(--a) 40%, #000));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 40px color-mix(in srgb, var(--a) 25%, transparent);
}

/* ── Body ── */
.tenet-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 1;
}

.tenet-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
    transition: color 0.4s ease;
}

.tenet-card:hover .tenet-title {
    background: linear-gradient(135deg, var(--a), color-mix(in srgb, var(--a) 60%, #fff));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tenet-tag {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--a);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.tenet-card:hover .tenet-tag {
    opacity: 1;
}

.tenet-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    flex: 1;
    transition: color 0.4s ease;
}

.tenet-card:hover .tenet-desc {
    color: rgba(255, 255, 255, 0.55);
}

/* ── Bottom accent bar ── */
.tenet-bar {
    margin-top: auto;
    margin-bottom: -2rem;
    margin-left: -1.75rem;
    margin-right: -1.75rem;
    height: 3px;
    border-radius: 0 0 20px 20px;
    background: linear-gradient(90deg, transparent 5%, color-mix(in srgb, var(--a) 15%, transparent) 30%, color-mix(in srgb, var(--a) 30%, transparent) 50%, color-mix(in srgb, var(--a) 15%, transparent) 70%, transparent 95%);
    transition: height 0.4s ease, background 0.5s ease, box-shadow 0.5s ease;
}

.tenet-card:hover .tenet-bar {
    height: 4px;
    background: linear-gradient(90deg, transparent 5%, color-mix(in srgb, var(--a) 50%, transparent) 20%, var(--a) 50%, color-mix(in srgb, var(--a) 50%, transparent) 80%, transparent 95%);
    box-shadow: 0 0 25px color-mix(in srgb, var(--a) 20%, transparent);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .tenets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 550px) {
    .tenets-section {
        padding: 70px 1.25rem;
    }

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

    .tenet-card {
        padding: 2rem 1.25rem;
    }

    .tenet-badge {
        font-size: 3.2rem;
    }

    .tenet-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .tenet-title {
        font-size: 1rem;
    }

    .tenet-desc {
        font-size: 0.8rem;
    }
}

/* ========================================
   HALLMARKS — comparison cards
========================================= */
.hallmarks-section {
    padding: 100px 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #ffffff, #f6fdf9, #f0fdf4, #ffffff);
}

.hallmarks-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%);
}

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

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

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

.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);
    }
}

.hallmarks-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;
}

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

.hallmarks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hallmark-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

.hallmark-card:hover {
    border-color: rgba(0, 166, 81, 0.15);
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
}

.hmc-win {
    padding: 1.25rem 1.5rem 0.75rem;
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    position: relative;
}

.hmc-win::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 166, 81, 0.12), transparent);
}

.hmc-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    margin-top: 2px;
}

.hmc-icon.win {
    background: rgba(0, 166, 81, 0.1);
    color: var(--primary-green);
}

.hmc-icon.lose {
    background: rgba(239, 68, 68, 0.06);
    color: #ef4444;
    opacity: 0.4;
}

.hmc-body h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 3px;
}

.hmc-body p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.hmc-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0;
}

.hmc-badge {
    font-size: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 3px 10px;
    border-radius: 500px;
}

.hmc-badge.win {
    color: var(--primary-green);
    background: rgba(0, 166, 81, 0.06);
    border: 1px solid rgba(0, 166, 81, 0.08);
}

.hmc-lose {
    padding: 0.5rem 1.5rem 1.25rem;
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.hmc-lose .hmc-body h4 {
    color: #94a3b8;
}

.hmc-lose .hmc-body p {
    color: #94a3b8;
}

@media (max-width:900px) {
    .hallmarks-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width:500px) {
    .hallmarks-section {
        padding: 70px 1.2rem;
    }

    .hmc-win,
    .hmc-lose {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ========================================
   ANSWERS — accordion with numbered items
========================================= */
.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;
}

/* --- Item --- */
.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);
}

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

/* Icon */
.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);
}

/* Number */
.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;
}

/* Content */
.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);
}

/* Toggle */
.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 --- */
.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;
    }
}

/* ========================================
   HORIZON CTA — animated gradient banner
========================================= */
.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;
    }
}

/* ========================================
   AUTO-SLIDESHOW — Credo
========================================= */
.credo-slideshow {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.credo-slides-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.credo-slides-track>.credo-article {
    min-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* Credo dots */
.credo-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 2.5rem;
    padding-bottom: 0.5rem;
}

.credo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    outline: none;
    flex-shrink: 0;
}

.credo-dot:hover {
    background: rgba(0, 166, 81, 0.4);
    transform: scale(1.2);
}

.credo-dot.active {
    width: 32px;
    border-radius: 10px;
    background: var(--primary-green);
    transform: scale(1);
    box-shadow: 0 0 12px rgba(0, 166, 81, 0.3);
}

/* Credo slide content */
.credo-slides-track .credo-article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1.5rem 0.5rem;
}

.credo-slides-track .credo-article .ca-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: #00703a;
    line-height: 1;
    opacity: 0.5;
}

.credo-slides-track .credo-article .ca-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 0.6rem;
}

.credo-slides-track .credo-article .ca-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .credo-dots {
        gap: 8px;
        margin-top: 1.5rem;
    }

    .credo-dot {
        width: 8px;
        height: 8px;
    }

    .credo-dot.active {
        width: 24px;
    }

    .credo-slides-track .credo-article {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem 0.25rem;
    }
}

.credo-slides-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.credo-slides-track>.credo-article {
    min-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}

.credo-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 2.5rem;
    padding-bottom: 0.5rem;
}

.credo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    outline: none;
    flex-shrink: 0;
}

.credo-dot:hover {
    background: rgba(0, 166, 81, 0.4);
    transform: scale(1.2);
}

.credo-dot.active {
    width: 32px;
    border-radius: 10px;
    background: var(--primary-green);
    transform: scale(1);
    box-shadow: 0 0 12px rgba(0, 166, 81, 0.3);
}

/* Credo slide content polish */
.credo-slides-track .credo-article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1.5rem 0.5rem;
}

.credo-slides-track .credo-article .ca-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: #00703a;
    line-height: 1;
    opacity: 0.5;
}

.credo-slides-track .credo-article .ca-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 0.6rem;
}

.credo-slides-track .credo-article .ca-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ========================================
   PHONE OPTIMIZATION (< 480px)
   Does not alter desktop/tablet styles
========================================= */
@media (max-width: 480px) {
    .benefits-hero h1 {
        white-space: normal;
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        letter-spacing: -0.5px;
    }

    .benefits-hero .last-updated {
        font-size: 0.7rem;
        white-space: normal;
        padding: 0 8px;
    }

    .origin-heading {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .origin-lead {
        font-size: 1rem;
    }

    .origin-body {
        font-size: 0.92rem;
    }

    .origin-sidebar {
        max-width: 100%;
    }

    .origin-facts {
        border-radius: 12px;
    }

    .of-item {
        padding: 0.7rem 1rem;
    }

    .origin-quote {
        padding: 1rem 1.2rem;
    }

    .origin-quote span {
        font-size: 0.82rem;
    }

    .origin-founders {
        gap: 6px;
    }

    .origin-footnote {
        padding: 0.85rem 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
    }

    .origin-footnote span {
        font-size: 0.82rem;
    }

    .chronicle-section {
        padding: 60px 1rem 50px;
    }

    .chronicle-card {
        flex: 0 0 230px;
        padding: 1.25rem;
    }

    .cc-year {
        font-size: 0.65rem;
        padding: 2px 10px;
    }

    .cc-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .cc-title {
        font-size: 0.95rem;
    }

    .cc-desc {
        font-size: 0.78rem;
    }

    .cc-index {
        font-size: 2.2rem;
    }

    .chronicle-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .chronicle-controls {
        gap: 0.8rem;
    }

    .cdot {
        width: 6px;
        height: 6px;
    }

    .cdot.active {
        width: 20px;
    }

    .meters-section {
        padding: 70px 1.25rem;
    }

    .meters-header {
        margin-bottom: 2.5rem;
    }

    .meter-bar-wrap {
        width: 40px;
        height: 140px;
    }

    .meter-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .meter-number {
        font-size: 1.4rem;
    }

    .meter-label {
        font-size: 0.7rem;
    }

    .architects-section {
        padding: 60px 1.25rem;
    }

    .architects-header {
        margin-bottom: 2.5rem;
    }

    .architects-header .section-description {
        font-size: 0.9rem;
    }

    .ac-top {
        padding: 2rem 1.25rem 1.2rem;
    }

    .ac-avatar {
        width: 80px;
        height: 80px;
    }

    .ac-avatar i {
        font-size: 2.2rem;
    }

    .ac-body {
        padding: 1.2rem 1.25rem 2rem;
    }

    .ac-name {
        font-size: 1.1rem;
    }

    .ac-role {
        font-size: 0.72rem;
        white-space: normal;
    }

    .ac-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }

    .ac-stat {
        padding: 0.5rem 0.2rem;
    }

    .acs-value {
        font-size: 0.75rem;
    }

    .ac-bio {
        font-size: 0.85rem;
    }

    .ac-highlight {
        font-size: 0.78rem;
    }

    .ac-quote {
        padding: 0.85rem 1rem;
    }

    .ac-quote span {
        font-size: 0.8rem;
    }

    .ac-link {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 0.75rem;
    }

    .credo-section {
        padding: 60px 1.25rem;
    }

    .credo-seal {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }

    .credo-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .credo-declaration {
        padding: 1.25rem 1rem;
        margin-bottom: 2.5rem;
    }

    .credo-text {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
    }

    .credo-article {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
    }

    .ca-num {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .ca-body h3 {
        font-size: 0.88rem;
    }

    .ca-body p {
        font-size: 0.8rem;
    }

    .tenets-section {
        padding: 60px 1rem;
    }

    .tenet-card {
        padding: 1.5rem 1rem;
    }

    .tenet-badge {
        font-size: 2.4rem;
    }

    .tenet-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .tenet-title {
        font-size: 0.95rem;
    }

    .tenet-desc {
        font-size: 0.78rem;
    }

    .hallmarks-section {
        padding: 60px 1rem;
    }

    .hallmarks-header .section-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .hallmarks-header .section-description {
        font-size: 0.9rem;
    }

    .hmc-win {
        padding: 1rem 1rem 0.6rem;
        gap: 0.7rem;
    }

    .hmc-lose {
        padding: 0.4rem 1rem 1rem;
        gap: 0.7rem;
    }

    .hmc-body h4 {
        font-size: 0.82rem;
    }

    .hmc-body p {
        font-size: 0.72rem;
    }

    .hmc-icon {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }

    .answers-section {
        padding: 60px 1.25rem;
    }

    .answers-header {
        margin-bottom: 2rem;
    }

    .answers-header .section-description {
        font-size: 0.9rem;
    }

    .answer-q {
        padding: 0.85rem 1rem;
        gap: 0.6rem;
    }

    .aq-icon {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }

    .aq-num {
        font-size: 0.7rem;
        min-width: 18px;
    }

    .aq-content h3 {
        font-size: 0.9rem;
    }

    .aq-cat {
        font-size: 0.5rem;
    }

    .aq-toggle {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
    }

    .answer-a-inner {
        padding: 0 1rem 0.85rem 3.2rem;
        font-size: 0.85rem;
    }

    .horizon-cta {
        padding: 60px 1.25rem;
    }

    .horizon-tag {
        font-size: 0.6rem;
        padding: 5px 16px;
    }

    .horizon-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .horizon-desc {
        font-size: 0.95rem;
    }

    .horizon-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

}

/* ========================================
   EXTRA SMALL PHONES (< 380px)
========================================= */
@media (max-width: 380px) {
    .chronicle-card {
        flex: 0 0 200px;
        padding: 1rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-description {
        font-size: 0.88rem;
    }

    .meter-bar-wrap {
        width: 34px;
        height: 120px;
    }

    .meter-number {
        font-size: 1.2rem;
    }

    .answer-a-inner {
        padding-left: 0;
        padding-top: 0.5rem;
    }

    .answer-q {
        flex-wrap: wrap;
    }
}

/* SEO visually hidden — must be last to avoid overrides */
.seo-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}