/* ==========================================================================
   ONIC - Premium Design System
   Nutrition-Focused Green Theme | Elegant & Sustainable
   World Economic Forum Inspired | Minimal & Professional
   ========================================================================== */

:root {
    /* Premium Muted Green - Easy on Eyes */
    --primary-green: #3D8B6E;       /* Soft forest green */
    --dark-green: #2C5F4E;          /* Deep muted green */
    --deep-green: #345E4A;          /* Rich subtle green */
    --light-green: #7AB59E;         /* Soft sage */
    --accent-green: #5A9C82;        /* Balanced green */
    --hover-green: #2E7A5E;         /* Darker hover */

    /* Light Sky Blue - Premium Accent */
    --sky-blue: #87CEEB;            /* Classic sky blue */
    --light-sky: #A8D8F0;           /* Pale sky */
    --soft-blue: #6BB8D9;           /* Soft cerulean */
    --pale-blue: #C5E4F3;           /* Very light blue */
    --accent-blue: #5AADD4;         /* Medium sky */

    /* Subtle Glow Effects */
    --emerald: #5A9C82;
    --teal: #6BB0A5;
    --emerald-glow: rgba(90, 156, 130, 0.2);
    --teal-light: #8CC5BB;

    /* Gradient Colors - Green & Sky Blue blend */
    --gradient-start: #3D8B6E;
    --gradient-mid: #6BB0A5;
    --gradient-end: #87CEEB;

    /* Neutral Tones - Clean & Professional */
    --black: #0F1318;
    --off-black: #1A1F26;
    --dark-gray: #232A33;
    --card-dark: #2A323D;
    --white: #FFFFFF;
    --off-white: #F5F9FC;           /* Light sky tint */
    --light-gray: #EDF4F8;          /* Soft blue-gray */
    --cream: #FAFCFD;

    /* Text Colors */
    --text-muted: rgba(255,255,255,0.8);
    --text-dark-muted: rgba(44,95,78,0.75);
    --text-green: #3D8B6E;

    /* Borders & Shadows */
    --border-light: rgba(61,139,110,0.15);
    --border-dark: rgba(61,139,110,0.25);
    --shadow-green: rgba(61,139,110,0.15);
    --shadow-blue: rgba(135,206,235,0.2);
    --shadow-emerald: rgba(90,156,130,0.12);

    /* Legacy compatibility */
    --primary-blue: var(--sky-blue);
    --dark-blue: var(--dark-green);
    --deep-blue: var(--deep-green);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.65;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p, li, span, label, input, textarea, select, button, a {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* All headings match the editorial "Your Product's Gateway to Customer Trust" style:
   Georgia serif, regular weight, tight tracking, ink colour. Emphasis stays upright with mint colour. */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif !important;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.15;
    font-style: normal;
}

h1 em, h2 em, h3 em, h4 em, h5 em, h6 em {
    font-family: 'Georgia', serif !important;
    font-style: normal !important;
    font-weight: 400;
    color: #15803d;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    padding-left: 5rem; /* ~2cm left margin */
}

/* ==========================================================================
   TYPOGRAPHY UTILITIES
   ========================================================================== */
.font-heading {
    font-family: 'Georgia', serif;
}

.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }

.gradient-text {
    background: linear-gradient(135deg, var(--white) 0%, var(--sky-blue) 50%, var(--light-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

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

.gradient-text-dark {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 50%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    height: 65px;
    display: flex;
    align-items: center;
    background: rgba(10, 15, 13, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.08);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 15, 13, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(16, 185, 129, 0.15);
}

.navbar-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    object-fit: contain;
    filter: none;
    transition: filter 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.8rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green), var(--light-green));
    transition: width 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--emerald-glow);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-buttons .btn-primary {
    background: linear-gradient(135deg, #3D8B6E 0%, #5A9C82 100%);
    border: 1px solid rgba(61,139,110,0.3);
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
}

.nav-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #2E7A5E 0%, #3D8B6E 100%);
}

/* Mobile menu toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px var(--shadow-green);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(61, 139, 110, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px var(--shadow-green), 0 0 30px var(--emerald-glow);
    background: linear-gradient(135deg, var(--hover-green) 0%, var(--primary-green) 100%);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(16, 185, 129, 0.4);
    position: relative;
}

.btn-outline:hover {
    background: linear-gradient(135deg, rgba(5,150,105,0.12) 0%, rgba(16,185,129,0.12) 100%);
    border-color: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--emerald-glow);
}

.btn-dark {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.btn-dark:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-white {
    background: var(--white);
    color: var(--dark-blue);
    font-weight: 700;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 0.95rem;
}

/* ==========================================================================
   SECTION BASE
   ========================================================================== */
section {
    padding: 7rem 0;
    position: relative;
}

section.section-lg {
    padding: 9rem 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4.5rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.15) 0%, rgba(16, 185, 129, 0.12) 100%);
    border: 1px solid rgba(16, 185, 129, 0.35);
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 1.6rem;
    color: var(--light-green);
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.section-tag-dark {
    background: rgba(5, 150, 105, 0.08);
    border-color: rgba(5, 150, 105, 0.2);
    color: var(--primary-green);
}

.section-title {
    font-family: 'Georgia', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.75;
    font-weight: 400;
}

/* Background variants - Nucleus-style blue gradient glow */
.bg-black {
    background: var(--black);
    color: var(--white);
    position: relative;
}

.bg-dark {
    background: linear-gradient(180deg, #0F1318 0%, #1A1F26 40%, #232A33 60%, #0F1318 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.bg-dark::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(135,206,235,0.08) 0%, rgba(61,139,110,0.05) 40%, transparent 70%);
    pointer-events: none;
}

.bg-dark::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(61,139,110,0.06) 0%, rgba(135,206,235,0.04) 40%, transparent 70%);
    pointer-events: none;
}

.bg-dark > .container {
    position: relative;
    z-index: 1;
}

.bg-white {
    background: #FFFFFF;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.bg-white::before {
    display: none;
}

.bg-white > .container {
    position: relative;
    z-index: 1;
}

.bg-white .section-tag { color: #0F5EA8; border-color: rgba(15,94,168,0.25); background: rgba(15,94,168,0.08); }
.bg-white .section-title { color: #1a1a1a; }
.bg-white .section-description { color: #4a4a5a; }

/* Blue Section - Matches Hero Gradient */
.bg-blue {
    background: linear-gradient(
        165deg,
        #0F5EA8 0%,
        #2D86C9 50%,
        #4FA3D1 100%
    );
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.bg-blue .section-tag { color: #FFFFFF; border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.1); }
.bg-blue .section-title { color: #FFFFFF; }
.bg-blue .section-description { color: rgba(255,255,255,0.9); }
.bg-blue h3, .bg-blue h4 { color: #FFFFFF; }
.bg-blue p { color: rgba(255,255,255,0.85); }

/* Stats Section on Blue Background */
.stats-title-white {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 3rem;
}

.stat-item-white {
    text-align: center;
    padding: 1.5rem;
}

.stat-item-white h3 {
    font-family: 'Georgia', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.stat-item-white p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Platform Cards on Blue Background */
.platform-card-blue {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.platform-card-blue:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.platform-card-blue .platform-card-img {
    height: 180px;
    overflow: hidden;
}

.platform-card-blue .platform-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.platform-card-blue .platform-card-body {
    padding: 1.5rem;
}

.platform-card-blue .platform-card-body h3 {
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.platform-card-blue .platform-card-body p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* ========== 3 Hero Boxes ========== */
.hero-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}

.hero-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.hero-box-icon {
    color: #0F5EA8;
    margin-bottom: 1rem;
}

.hero-box h3 {
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.hero-box p {
    font-size: 0.9rem;
    color: #4a4a5a;
    line-height: 1.5;
}

/* ========== How ONIC Works Grid ========== */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.how-step {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.how-step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.how-step-number {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.how-step h3 {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.how-step p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* ========== Join & Partnership Grid ========== */
.join-partnership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 2rem 0;
}

.join-box {
    background: #f8fafc;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.join-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #0F5EA8;
}

.join-box-icon {
    color: #0F5EA8;
    margin-bottom: 1.5rem;
}

.join-box h3 {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.join-box p {
    font-size: 1rem;
    color: #4a4a5a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-boxes {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 0 2rem;
    }

    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-boxes {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1.5rem;
    }

    .hero-box {
        padding: 1.5rem;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
    }

    .join-partnership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .join-box {
        padding: 2rem;
    }
}

.bg-light {
    background: linear-gradient(180deg, #EDF4F8 0%, #F5F9FC 50%, #EDF4F8 100%);
    color: var(--dark-green);
    position: relative;
    overflow: hidden;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(135,206,235,0.08) 0%, rgba(61,139,110,0.04) 35%, transparent 65%);
    pointer-events: none;
}

.bg-light > .container {
    position: relative;
    z-index: 1;
}

.bg-light .section-tag { color: var(--primary-green); border-color: rgba(5,150,105,0.2); background: rgba(5,150,105,0.08); }
.bg-light .section-title { color: var(--dark-green); }
.bg-light .section-description { color: var(--text-dark-muted); }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
    background: linear-gradient(
        165deg,
        #0F5EA8 0%,
        #2D86C9 30%,
        #4FA3D1 60%,
        #F5FAFF 100%
    );
}

/* Centered Hero Layout */
.hero-centered {
    text-align: center;
}

.hero-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Large Logo - Covers from top to center */
.hero-logo-large {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-logo-large img {
    height: 350px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

/* Centered Text */
.hero-text-centered {
    text-align: center;
    z-index: 2;
}

.hero-text-centered h1 {
    font-family: 'Georgia', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.hero-subtitle-centered {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline-centered {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Mobile responsive for centered hero */
@media (max-width: 768px) {
    .hero-logo-large img {
        height: 250px;
    }

    .hero-text-centered h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle-centered {
        font-size: 1.1rem;
    }

    .hero-tagline-centered {
        font-size: 0.8rem;
        letter-spacing: 0.15em;
    }
}

.hero-bg-image {
    display: none; /* Hidden - using gradient background instead */
}

.hero-gradient-overlay {
    display: none; /* Hidden - using clean gradient */
}

.hero-orb {
    display: none; /* Hidden - using clean gradient */
}

.hero-orb-2 {
    display: none; /* Hidden - using clean gradient */
}

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

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, 25px) scale(1.05); }
    66% { transform: translate(15px, -15px) scale(0.95); }
}

/* Glowing Lines - DISABLED */
.hero::after {
    display: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: flex-start;
}

.hero-text-side {
    animation: fadeInUp 0.8s ease backwards;
}

/* White Text Styling for Blue Gradient Hero */
.hero-title-white {
    font-family: 'Georgia', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
    line-height: 1.15;
}

.hero-subtitle-white {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-tagline-white {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* Large Logo on Right Side */
.hero-logo-large-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.12));
}

/* Emerald Green Buttons */
.hero-buttons-green {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-emerald {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-emerald:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.45);
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
}

.btn-emerald-outline {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(5, 150, 105, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-emerald-outline:hover {
    background: rgba(5, 150, 105, 0.2);
    border-color: #10B981;
    transform: translateY(-2px);
}

/* Emerald Green Tags */
.hero-tags-green {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.hero-tag-emerald {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(5, 150, 105, 0.15);
    color: #FFFFFF;
    border: 1px solid rgba(5, 150, 105, 0.5);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-tag-emerald:hover {
    background: rgba(5, 150, 105, 0.3);
    border-color: #10B981;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.12) 0%, rgba(0, 212, 255, 0.08) 100%);
    border: 1px solid rgba(77, 158, 255, 0.25);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--accent-blue);
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Georgia', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -2.5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.8rem;
    font-weight: 400;
    line-height: 1.7;
}

.hero-tagline {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    color: var(--accent-blue);
    margin-bottom: 2.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hero-tag-chip {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-tag-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.hero-visual-side {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-logo-img {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 0 40px rgba(16, 185, 129, 0.2));
    animation: logoGlow 6s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 40px rgba(0, 102, 255, 0.2)); }
    50% { filter: drop-shadow(0 0 60px rgba(0, 102, 255, 0.35)); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   PAGE HERO (About, Services, Standards, Partners)
   ========================================================================== */
.page-hero {
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.page-hero.bg-black {
    background: linear-gradient(180deg, #0F1318 0%, #1A1F26 35%, #232A33 60%, #0F1318 100%);
}

.page-hero .hero-orb {
    width: 500px;
    height: 500px;
    top: 10%;
    right: -5%;
}

.page-hero-content {
    max-width: 850px;
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-family: 'Georgia', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.page-hero .hero-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.page-hero .sub-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.callout {
    margin-top: 3rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 212, 255, 0.04) 100%);
    border-left: 4px solid var(--primary-green);
    border-radius: 0 12px 12px 0;
}

.callout-inner {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-blue);
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
    background: linear-gradient(180deg, #f0f4fa 0%, #ffffff 50%, #f0f4fa 100%);
    padding: 5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(5,150,105,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Georgia', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
    text-shadow: 0 0 40px var(--emerald-glow);
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-dark-muted);
    font-weight: 500;
}

/* ==========================================================================
   FEATURE CARDS (Dark theme - Nucleus style)
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.3) 0%, rgba(10, 10, 10, 0.5) 100%);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card .feature-img {
    margin-bottom: 0;
    border-radius: 0;
}

.feature-card h3,
.feature-card p {
    padding: 0 2.5rem;
}

.feature-card h3 {
    padding-top: 2rem;
}

.feature-card p {
    padding-bottom: 2.5rem;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    display: none;
}

.feature-img {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-img::after {
    display: none;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-card h3 {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

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

/* ==========================================================================
   IMAGE SERVICE CARDS (Nucleus 2x2 grid style)
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 102, 255, 0.1);
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.04);
}

.service-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.15);
}

.service-card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.service-card-image::after {
    display: none;
}

.service-card:hover .service-card-image::after {
    display: none;
}

.service-card-content {
    padding: 2rem 2.2rem;
}

.service-card h4 {
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1.4;
}

.service-card p {
    color: var(--text-dark-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 0.6rem;
}

/* ==========================================================================
   DELIVERABLES / NUMBERED CARDS (Light bg)
   ========================================================================== */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.deliverable-card {
    background: var(--white);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    transition: all 0.4s ease;
    box-shadow: 0 3px 10px rgba(0, 102, 255, 0.04);
}

.deliverable-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.12);
}

.deliverable-number {
    font-family: 'Georgia', serif;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
}

.deliverable-card h3 {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

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

/* ==========================================================================
   GOVERNANCE CARDS (Dark with image blocks)
   ========================================================================== */
.governance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.governance-card {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.35) 0%, rgba(10, 10, 10, 0.45) 100%);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.governance-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 102, 255, 0.25);
}

.governance-visual {
    width: 100%;
    height: 200px;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.governance-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: transform 0.5s ease;
}

.governance-card:hover .governance-visual img {
    transform: scale(1.06);
}

.governance-visual::after {
    display: none;
}

.governance-content {
    padding: 2.5rem;
}

.governance-card h3 {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--white);
}

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

/* ==========================================================================
   IMPACT CARDS (White bg)
   ========================================================================== */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.impact-card {
    background: var(--white);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.04);
}

.impact-card .impact-img {
    margin-bottom: 0;
    border-radius: 0;
}

.impact-card h3,
.impact-card p {
    padding: 0 2rem;
}

.impact-card h3 {
    padding-top: 1.8rem;
}

.impact-card p {
    padding-bottom: 2rem;
}

.impact-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.12);
}

.impact-icon {
    display: none;
}

.impact-img {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.8rem;
    position: relative;
}

.impact-img::after {
    display: none;
}

.impact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.impact-card h3 {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

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

/* ==========================================================================
   TABS SECTION (Discover More - Nucleus style)
   ========================================================================== */
.tabs-container {
    text-align: center;
    margin-bottom: 3rem;
}

.tab-buttons {
    display: inline-flex;
    gap: 0.5rem;
    background: rgba(0, 102, 255, 0.04);
    padding: 0.4rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.tab-btn {
    padding: 0.7rem 2rem;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--hover-green) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px var(--shadow-blue);
}

/* ==========================================================================
   QUOTE / TESTIMONIAL
   ========================================================================== */
.quote-section {
    background: linear-gradient(180deg, #e8eef6 0%, #dce6f5 50%, #e8eef6 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(5,150,105,0.06) 0%, transparent 55%);
    pointer-events: none;
}

.quote-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 4rem 3rem;
}

.quote-box::before {
    content: '\201C';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10rem;
    font-family: 'Georgia', serif;
    font-weight: 700;
    color: rgba(0, 102, 255, 0.08);
    line-height: 1;
}

.quote-text {
    font-size: 1.6rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    line-height: 1.7;
    font-weight: 500;
}

.quote-author {
    font-size: 0.85rem;
    color: var(--primary-green);
    font-weight: 600;
    letter-spacing: 1px;
}

/* ==========================================================================
   IMPACT TABS & CARDS (How We Drive Impact)
   ========================================================================== */
.impact-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.impact-tab {
    padding: 0.6rem 1.8rem;
    border: 1px solid rgba(15, 94, 168, 0.25);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0F5EA8;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.impact-tab.active {
    background: linear-gradient(135deg, #0F5EA8 0%, #2D86C9 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(15, 94, 168, 0.3);
}

/* Tab panels */
.tab-panel {
    display: none;
    animation: tabFadeIn 0.4s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.impact-card-v2 {
    background: linear-gradient(180deg, #fff 0%, #f0f7ff 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 94, 168, 0.12);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    position: relative;
}

.impact-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0F5EA8, #2D86C9, #4FA3D1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.impact-card-v2:hover::before {
    transform: scaleX(1);
}

.impact-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(15, 94, 168, 0.15), 0 10px 20px rgba(45, 134, 201, 0.1);
    border-color: rgba(15, 94, 168, 0.25);
}

.impact-card-v2-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.impact-card-v2-image::after {
    display: none;
}

.impact-card-v2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.impact-card-v2:hover .impact-card-v2-image img {
    transform: scale(1.05);
}

.impact-card-v2-body {
    padding: 2rem;
}

.impact-card-v2-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.impact-card-v2-body p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ==========================================================================
   STATS TITLE
   ========================================================================== */
.stats-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   IMAGE BG SECTIONS (Platform + Governance)
   ========================================================================== */
.platform-section,
.governance-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    color: #fff;
}

.section-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: saturate(0.4) brightness(0.5);
}

.section-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #000510 0%, rgba(0,18,51,0.95) 40%, rgba(0,24,69,0.9) 60%, #000510 100%);
    z-index: 1;
}

.platform-section::before,
.governance-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 60%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(46, 139, 255, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
    animation: sectionGlow 8s ease-in-out infinite alternate;
}

@keyframes sectionGlow {
    0% { opacity: 0.8; }
    100% { opacity: 1.2; }
}

/* Platform cards (2-col: image + text) */
.platform-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.platform-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    background: linear-gradient(135deg, rgba(10,37,64,0.8) 0%, rgba(15,52,96,0.6) 100%);
    border: 1px solid rgba(20,184,166,0.2);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green), var(--light-green));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-card:hover {
    border-color: rgba(20,184,166,0.4);
    box-shadow: 0 15px 50px rgba(16,185,129,0.15), 0 5px 20px rgba(46,139,255,0.1);
    transform: translateY(-3px);
}

.platform-card-img {
    height: 100%;
    min-height: 220px;
    overflow: hidden;
    position: relative;
}

.platform-card-img::after {
    display: none;
}

.platform-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.platform-card-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.platform-card-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.platform-card-body p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ==========================================================================
   ENABLES GRID (Nucleus Unleashing style - 3x2)
   ========================================================================== */
.enables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.enable-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,102,255,0.08);
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.enable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,102,255,0.12);
}

.enable-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.enable-card-img::after {
    display: none;
}

.enable-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.enable-card:hover .enable-card-img img {
    transform: scale(1.06);
}

.enable-card h4 {
    padding: 1.5rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.4;
}

/* ==========================================================================
   PARTNERS / BRAND LOGOS
   ========================================================================== */
.logos-section {
    background: linear-gradient(180deg, #f0f4fa 0%, #e8eef6 100%);
    padding: 4rem 0;
    border-top: 1px solid rgba(0,60,180,0.08);
    border-bottom: 1px solid rgba(0,60,180,0.08);
}

.logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-item {
    padding: 1.5rem 2.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(0,31,63,0.4);
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.logo-item:hover {
    background: rgba(5, 150, 105, 0.06);
    color: var(--primary-green);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(135, 206, 235, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(61, 139, 110, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0F1318 0%, #1A1F26 40%, #232A33 60%, #0F1318 100%);
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section .hero-orb {
    width: 500px;
    height: 500px;
    top: -20%;
    right: 20%;
    opacity: 0.6;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.12) 0%, rgba(61, 139, 110, 0.06) 50%, transparent 70%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Georgia', serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* ==========================================================================
   INTELLIGENCE SECTION (Split layout)
   ========================================================================== */
.intelligence-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.focus-areas {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.focus-item {
    background: var(--white);
    border-left: 4px solid var(--primary-green);
    padding: 1.8rem 2rem;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.04);
}

.focus-item:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 212, 255, 0.02) 100%);
    transform: translateX(8px);
}

.focus-item h4 {
    font-family: 'Georgia', serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--dark-blue);
}

.focus-item p {
    color: var(--text-dark-muted);
    font-size: 0.9rem;
}

/* Quote card in intelligence section */
.intelligence-quote {
    background: var(--white);
    border: 2px solid rgba(0, 102, 255, 0.1);
    border-radius: 16px;
    padding: 3.5rem;
    position: relative;
    box-shadow: 0 6px 25px rgba(0, 102, 255, 0.06);
}

.intelligence-quote::before {
    content: '\201C';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 7rem;
    font-family: 'Georgia', serif;
    font-weight: 700;
    color: rgba(0, 102, 255, 0.06);
    line-height: 1;
}

.intelligence-quote .quote-text {
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.intelligence-quote .quote-author {
    text-align: left;
}

/* ==========================================================================
   STAKEHOLDERS GRID
   ========================================================================== */
/* Stakeholder auto-scroll marquee */
.stakeholder-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0 3rem;
    position: relative;
}

.stakeholder-scroll-wrapper::before,
.stakeholder-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.stakeholder-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.stakeholder-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.stakeholder-scroll-track {
    display: flex;
    gap: 1.5rem;
    animation: stakeholderScroll 35s linear infinite;
    width: max-content;
}

.stakeholder-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes stakeholderScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.stakeholder-scroll-card {
    position: relative;
    width: 280px;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.stakeholder-scroll-card:hover {
    transform: scale(1.04);
}

.stakeholder-scroll-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stakeholder-scroll-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.75) 100%);
    backdrop-filter: blur(1px);
}

.stakeholder-scroll-card h4 {
    position: absolute;
    bottom: 1rem;
    left: 1.2rem;
    right: 1.2rem;
    margin: 0;
    font-family: 'Georgia', serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ==========================================================================
   SERVICE LIST ITEMS (For services page)
   ========================================================================== */
.service-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-list-item {
    padding: 2.5rem;
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
    background: var(--white);
    box-shadow: 0 3px 10px rgba(0, 102, 255, 0.03);
}

.service-list-item:hover {
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.1);
    transform: translateY(-4px);
}

.service-list-item h3 {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--dark-blue);
}

.service-list-item p {
    color: var(--text-dark-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Dark variant */
.service-list-item.dark {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.3) 0%, rgba(10, 10, 10, 0.4) 100%);
    border-color: var(--border-dark);
}

.service-list-item.dark h3 { color: var(--white); }
.service-list-item.dark p { color: var(--text-muted); }
.service-list-item.dark:hover {
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
}

/* ==========================================================================
   STANDARDS / CERTIFICATION CARDS
   ========================================================================== */
.standard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.standard-card {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.3) 0%, rgba(10, 10, 10, 0.4) 100%);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.standard-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.2);
}

.standard-card-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.standard-card-image::after {
    display: none;
}

.standard-card-body {
    padding: 2.5rem;
}

.standard-card h3 {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--white);
}

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

/* Tier rows */
.tier-list {
    max-width: 900px;
    margin: 0 auto;
}

.tier-row {
    display: flex;
    align-items: center;
    padding: 2.5rem;
    border-bottom: 1px solid rgba(0, 102, 255, 0.08);
    transition: all 0.3s ease;
}

.tier-row:hover {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, transparent 100%);
    padding-left: 3rem;
}

.tier-name {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 700;
    width: 200px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tier-desc {
    font-size: 1rem;
    color: var(--text-dark-muted);
    line-height: 1.7;
    flex: 1;
}

/* ==========================================================================
   PARTNERS PAGE SPECIFIC
   ========================================================================== */
.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-block h2 {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.partner-box {
    padding: 2.5rem;
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 16px;
    background: var(--white);
    transition: all 0.3s ease;
}

.partner-box:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.08);
}

.partner-box h3 {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--dark-blue);
}

.partner-box .sub-label {
    font-size: 0.8rem;
    color: var(--primary-green);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.policy-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.policy-tag {
    padding: 1.2rem;
    background: var(--white);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-blue);
    transition: all 0.3s ease;
}

.policy-tag:hover {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--hover-green) 100%);
    color: var(--white);
    border-color: var(--primary-green);
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.network-item {
    aspect-ratio: 16/9;
    background: var(--white);
    border: 1px solid rgba(0, 102, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: rgba(0,31,63,0.3);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.network-item:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: rgba(0, 102, 255, 0.03);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: linear-gradient(180deg, #000510 0%, #000000 100%);
    border-top: 1px solid rgba(0, 60, 180, 0.15);
    padding: 5rem 0 2rem;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info h3 {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-info p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1.5rem;
}

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

.footer-links li { margin-bottom: 0.8rem; }

.footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(77, 158, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   SCROLL ANIMATION
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-visual-side { display: block; margin-top: 2rem; }
    .hero-logo-large-img { max-width: 280px; margin: 0 auto; }
    .hero-title-white { font-size: 2.8rem; }
    .hero-subtitle-white { font-size: 1.15rem; }
    .hero-tagline-white { font-size: 0.8rem; letter-spacing: 0.2em; }
    .hero h1 { font-size: 3.5rem; }
    .hero-buttons { justify-content: center; }
    .hero-tags { justify-content: center; }
    .section-title { font-size: 2.8rem; }

    .impact-grid,
    .impact-cards-grid,
    .deliverables-grid,
    .standard-grid,
    .enables-grid { grid-template-columns: repeat(2, 1fr); }

    .features-grid,
    .governance-grid,
    .intelligence-grid { grid-template-columns: 1fr; }

    .platform-card { grid-template-columns: 280px 1fr; }

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

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    section { padding: 4rem 0; }

    .navbar { height: 65px; }
    .navbar-container { padding: 0 1.5rem; }
    .nav-links { display: none; }
    .nav-buttons .btn-outline { display: none; }
    .mobile-toggle { display: flex; }

    .hero { padding: 7rem 0 3rem; min-height: auto; }
    .hero-content { padding: 0 1.5rem; }
    .hero h1 { font-size: 2.5rem; letter-spacing: -1px; }
    .hero-title-white { font-size: 2.2rem; }
    .hero-subtitle-white { font-size: 1rem; }
    .hero-tagline-white { font-size: 0.7rem; letter-spacing: 0.15em; }
    .hero-logo-large-img { max-width: 220px; }
    .hero-subtitle { font-size: 1rem; }
    .hero-tagline { font-size: 0.7rem; letter-spacing: 2px; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-badge { font-size: 0.65rem; }

    .page-hero { padding: 7rem 0 3rem; }
    .page-hero h1 { font-size: 2.5rem; }
    .page-hero .hero-text { font-size: 1rem; }

    .section-title { font-size: 2rem; letter-spacing: -0.5px; }
    .section-header { margin-bottom: 3rem; }

    .impact-grid,
    .impact-cards-grid,
    .deliverables-grid,
    .services-grid,
    .governance-grid,
    .service-list-grid,
    .standard-grid,
    .partner-grid,
    .enables-grid,
    .features-grid { grid-template-columns: 1fr; }

    .platform-card { grid-template-columns: 1fr; }
    .platform-card-img { min-height: 180px; }
    .platform-card-img::after { display: none; }

    .impact-tabs { flex-wrap: wrap; justify-content: center; }

    .stakeholder-scroll-card { width: 240px; height: 150px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item h3 { font-size: 2.5rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    .tier-row { flex-direction: column; text-align: center; gap: 0.8rem; }
    .tier-name { width: 100%; font-size: 2rem; }

    .network-grid { grid-template-columns: repeat(2, 1fr); }
    .policy-tags { grid-template-columns: 1fr; }

    .cta-content h2 { font-size: 2.2rem; }
    .intelligence-grid { gap: 2rem; }

    .logo img { height: 38px; }
}

/* ==========================================================================
   UTILITY CLASSES (Functional Pages Support)
   Replaces Tailwind for initiate_query, dashboard, product_audition, etc.
   ========================================================================== */

/* --- Display & Layout --- */
.w-full { width: 100%; }
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.inset-0 { top:0;right:0;bottom:0;left:0; }
.top-0 { top: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.pointer-events-none { pointer-events: none; }

/* --- Flexbox --- */
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* --- Grid --- */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* --- Spacing (padding) --- */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-6 { padding-top: 1.5rem; }

/* --- Spacing (margin) --- */
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.mr-2 { margin-right: 0.5rem; }

/* --- Sizing --- */
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.h-1 { height: 0.25rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-px { height: 1px; }
.h-full { height: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }

/* --- Typography --- */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-light { font-weight: 300; }
.font-serif { font-family: 'Georgia', serif; }
.font-mono { font-family: monospace; }
.italic { font-style: italic; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-wide { letter-spacing: 0.025em; }
.leading-relaxed { line-height: 1.625; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.uppercase { text-transform: uppercase; }
.underline { text-decoration: underline; }

/* --- Text Colors --- */
.text-white { color: #fff; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-blue-600 { color: #059669; }
.text-blue-700 { color: #047857; }
.text-blue-800 { color: #065F46; }
.text-blue-900 { color: #064E3B; }
.text-green-500 { color: #22c55e; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-green-800 { color: #166534; }
.text-yellow-600 { color: #ca8a04; }
.text-yellow-700 { color: #a16207; }
.text-yellow-800 { color: #854d0e; }
.text-red-500 { color: #ef4444; }
.text-red-800 { color: #991b1b; }
.text-purple-600 { color: #9333ea; }
.text-purple-700 { color: #7e22ce; }
.text-purple-800 { color: #6b21a8; }
.text-indigo-600 { color: #22c55e; }

/* --- Background Colors --- */
.bg-white { background-color: #fff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-gray-300 { background-color: #d1d5db; }
.bg-blue-50 { background-color: #ECFDF5; }
.bg-blue-100 { background-color: #D1FAE5; }
.bg-blue-500 { background-color: #059669; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-green-100 { background-color: #dcfce7; }
.bg-green-500 { background-color: #22c55e; }
.bg-green-600 { background-color: #16a34a; }
.bg-green-700 { background-color: #15803d; }
.bg-yellow-50 { background-color: #fefce8; }
.bg-yellow-100 { background-color: #fef9c3; }
.bg-yellow-500 { background-color: #eab308; }
.bg-orange-500 { background-color: #f97316; }
.bg-red-50 { background-color: #fef2f2; }
.bg-purple-50 { background-color: #faf5ff; }
.bg-purple-600 { background-color: #9333ea; }
.bg-purple-700 { background-color: #7e22ce; }
.bg-indigo-600 { background-color: #22c55e; }
.bg-indigo-700 { background-color: #16a34a; }

/* --- Tailwind arbitrary: bg-[#0B2D4A] maps to ONIC primary dark green --- */
.bg-\[\#0B2D4A\] { background: linear-gradient(180deg, #0A0F0D 0%, #0D1F18 50%, #152820 100%); color: #fff; }
.text-\[\#0B2D4A\] { color: #059669; }
.border-\[\#0B2D4A\] { border-color: #059669; }
.text-\[\#0B2D4A\]\/5 { color: rgba(5,150,105,0.05); }
.bg-\[\#0B2D4A\]\/5 { background-color: rgba(5,150,105,0.05); }
.bg-\[\#0B2D4A\]\/90 { background: linear-gradient(180deg, #0A0F0D 0%, #0D1F18 50%, #152820 100%); opacity: 0.9; }
.hover\:bg-\[\#0B2D4A\]\/90:hover { opacity: 0.85; }
.hover\:bg-\[\#0B2D4A\]\/5:hover { background-color: rgba(5,150,105,0.05); }
.text-white\/60 { color: rgba(255,255,255,0.6); }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.bg-white\/20 { background-color: rgba(255,255,255,0.2); }
.focus\:ring-\[\#0B2D4A\]:focus { box-shadow: 0 0 0 3px rgba(135,206,235,0.3); }
.focus\:ring-2:focus { box-shadow: 0 0 0 3px rgba(135,206,235,0.3); }
.focus\:border-transparent:focus { border-color: transparent; }
.text-\[\#0B2D4A\] { color: var(--primary-green); }

/* --- Gradients --- */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-blue-600 { --tw-gradient-from: #059669; --tw-gradient-stops: #059669, var(--tw-gradient-to, transparent); }
.to-blue-700 { --tw-gradient-to: #047857; }
.from-green-600 { --tw-gradient-from: #16a34a; --tw-gradient-stops: #16a34a, var(--tw-gradient-to, transparent); }
.to-green-700 { --tw-gradient-to: #15803d; }
.from-green-500 { --tw-gradient-from: #22c55e; --tw-gradient-stops: #22c55e, var(--tw-gradient-to, transparent); }
.to-green-600 { --tw-gradient-to: #16a34a; }
.from-yellow-500 { --tw-gradient-from: #eab308; --tw-gradient-stops: #eab308, var(--tw-gradient-to, transparent); }
.to-orange-500 { --tw-gradient-to: #f97316; }
.from-blue-50 { --tw-gradient-from: #eff6ff; --tw-gradient-stops: #eff6ff, var(--tw-gradient-to, transparent); }
.to-indigo-50 { --tw-gradient-to: #eef2ff; }

/* --- Borders --- */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-blue-200 { border-color: #A7F3D0; }
.border-blue-500 { border-color: #059669; }
.border-green-200 { border-color: #bbf7d0; }
.border-green-500 { border-color: #22c55e; }
.border-yellow-200 { border-color: #fef08a; }
.border-yellow-400 { border-color: #facc15; }
.border-red-200 { border-color: #fecaca; }
.border-purple-400 { border-color: #c084fc; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* --- Shadows --- */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }

/* --- Transitions & Transforms --- */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.duration-300 { transition-duration: 300ms; }
.transform { transform: translateZ(0); }

/* --- Hover States --- */
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\:bg-green-700:hover { background-color: #15803d; }
.hover\:bg-indigo-700:hover { background-color: #16a34a; }
.hover\:bg-purple-700:hover { background-color: #7e22ce; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:translate-x-2:hover { transform: translateX(0.5rem); }
.group:hover .group-hover\:translate-x-2 { transform: translateX(0.5rem); }

/* --- Animations --- */
.animate-pulse { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
.animate-fadeInUp { animation: fadeInUp 0.8s ease forwards; }

/* --- Space between children --- */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* --- Peer states (for radio/checkbox cards) --- */
.peer:checked ~ div { border-color: #3D8B6E; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
input[type="radio"]:checked + div { border-color: #3D8B6E; box-shadow: 0 20px 25px -5px rgba(61,139,110,0.15); }
input[name="case_type"][value="VALIDATION"]:checked + div { border-color: #22c55e; box-shadow: 0 20px 25px -5px rgba(34,197,94,0.15); }
.cursor-pointer { cursor: pointer; }

/* --- Form Inputs (ONIC styled) --- */
input[type="text"], input[type="email"], input[type="url"], input[type="tel"],
input[type="number"], input[type="date"], select, textarea {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background: #fff;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #5AADD4;
    box-shadow: 0 0 0 3px rgba(135,206,235,0.2);
}
input[type="checkbox"] {
    accent-color: #3D8B6E;
}

/* --- Tables --- */
table { border-collapse: collapse; }
th, td { text-align: left; }
table .hover\:bg-gray-50:hover,
tr.hover\:bg-gray-50:hover { background-color: #f9fafb; }

/* --- Object fit --- */
.object-cover { object-fit: cover; }
.opacity-50 { opacity: 0.5; }

/* --- MD responsive --- */
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:col-span-2 { grid-column: span 2 / span 2; }
    .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
    .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .md\:block { display: block; }
    .md\:w-16 { width: 4rem; }
    .sm\:flex-row { flex-direction: row; }
}

/* --- Functional page hero override (use ONIC dark-green-gradient) --- */
div.w-full > section.bg-\[\#0B2D4A\],
div.w-full > section[class*="bg-[#0B2D4A]"] {
    background: linear-gradient(180deg, #0A0F0D 0%, #0D1F18 40%, #152820 70%, #0A0F0D 100%);
    position: relative;
}

/* --- Gradient header bars inside cards --- */
div.bg-\[\#0B2D4A\],
.bg-\[\#0B2D4A\] {
    background: linear-gradient(135deg, #0D1F18 0%, #152820 50%, #1A3D30 100%);
    color: #fff;
}
.bg-gradient-to-r.from-green-500.to-green-600 { background: linear-gradient(to right, #22c55e, #16a34a); }
.bg-gradient-to-r.from-yellow-500.to-orange-500 { background: linear-gradient(to right, #eab308, #f97316); }
.bg-gradient-to-r.from-blue-600.to-blue-700 { background: linear-gradient(to right, #059669, #047857); }
.bg-gradient-to-r.from-green-600.to-green-700 { background: linear-gradient(to right, #16a34a, #15803d); }
.bg-gradient-to-r.from-blue-50.to-indigo-50 { background: linear-gradient(to right, #ECFDF5, #D1FAE5); }

/* ==========================================================================
   MOCKUP STYLE - How ONIC Works Section
   ========================================================================== */
.how-onic-works-section {
    padding: 4rem 0;
    background: #fff;
}

.section-header-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.section-header-line h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
}

.section-header-line .line {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,102,255,0.3), transparent);
}

.section-header-line .line-white {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

/* Process Flow - Mockup Style */
.process-flow-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.process-step-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.step-icon-circle-mockup {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f4fc 0%, #d4e9f7 100%);
    border: 2px solid #0066FF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066FF;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.15);
    transition: all 0.3s ease;
}

.step-icon-circle-mockup:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.25);
}

.step-label-mockup {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
}

.process-arrow-dotted {
    font-family: monospace;
    font-size: 0.9rem;
    color: #999;
    letter-spacing: -1px;
    margin: 0 0.3rem;
}

/* ==========================================================================
   Impact Snapshot Section - Blue Background
   ========================================================================== */
.impact-snapshot-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0052CC 0%, #0066FF 50%, #3385FF 100%);
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.impact-stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.impact-stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

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

/* ==========================================================================
   Join & Partner Section - Mockup Style
   ========================================================================== */
.join-partner-section {
    padding: 4rem 0;
    background: #fff;
}

.join-partner-grid-mockup {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.join-partner-box-mockup {
    background: #fff;
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.join-partner-box-mockup:hover {
    border-color: #0066FF;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
}

.join-partner-box-mockup h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.join-subtitle {
    font-size: 0.9rem;
    color: #0066FF;
    font-weight: 500;
    margin-bottom: 1rem;
}

.join-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.join-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.join-list .bullet {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: #10B981;
    border-radius: 50%;
    margin-top: 6px;
}

/* ==========================================================================
   Partner Logos Section
   ========================================================================== */
.partner-logos-section {
    padding: 3rem 0 4rem;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(30%);
}

.partner-logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.partner-logo-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.partner-logo-item span {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Responsive for Mockup Sections
   ========================================================================== */
@media (max-width: 992px) {
    .impact-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-flow-mockup {
        gap: 1rem;
    }

    .process-arrow-dotted {
        display: none;
    }
}

@media (max-width: 768px) {
    .join-partner-grid-mockup {
        grid-template-columns: 1fr;
    }

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

    .stat-number {
        font-size: 1.5rem;
    }

    .partner-logos-grid {
        gap: 2rem;
    }

    .partner-logo-item img {
        height: 30px;
    }

    .section-header-line h2 {
        font-size: 1.2rem;
    }

    .section-header-line .line {
        max-width: 50px;
    }
}

/* ==========================================================================
   HERO TAGS ROW - Product Creation, Validation, Query
   ========================================================================== */
.hero-tags-row {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-tag-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.4rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: #fff;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hero-tag-chip:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10B981;
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================================================================
   THREE PILLARS SECTION - Scientific Formulation, Ethics, Global Security
   ========================================================================== */
.three-pillars-section {
    padding: 5rem 0;
}

.three-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pillar-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.pillar-box:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.pillar-icon svg {
    color: #fff;
}

.pillar-box h3 {
    font-family: 'Georgia', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.pillar-box p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ==========================================================================
   HOW ONIC WORKS SECTION - 4 Step Horizontal Process
   ========================================================================== */
.how-onic-works-section {
    padding: 5rem 0;
}

.section-header-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.section-header-line h2 {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
}

.section-header-line .line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 102, 255, 0.3) 50%, transparent 100%);
}

.section-header-line .line-white {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
}

.process-flow-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step-h {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.step-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0F5EA8 0%, #2D86C9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(15, 94, 168, 0.3);
    transition: all 0.3s ease;
}

.step-circle svg {
    color: #fff;
}

.process-step-h:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(15, 94, 168, 0.4);
}

.step-name {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step-arrow {
    color: #0066FF;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
}

.step-arrow svg {
    color: #0066FF;
}

/* ==========================================================================
   IMPACT SNAPSHOT SECTION - Stats on Blue Background
   ========================================================================== */
.impact-snapshot-section {
    padding: 5rem 0;
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.impact-stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.impact-stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-wrapper svg {
    color: #fff;
}

.stat-number {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ==========================================================================
   JOIN PARTNER SECTION - Build with ONIC & Partner
   ========================================================================== */
.join-partner-section {
    padding: 5rem 0;
}

.join-partner-grid-mockup {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* ==========================================================================
   EMERALD GREEN BUTTONS
   ========================================================================== */
.btn-emerald {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-emerald:hover {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-emerald-outline {
    background: transparent;
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    border: 2px solid rgba(16, 185, 129, 0.5);
}

.btn-emerald-outline:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10B981;
    transform: translateY(-2px);
}

/* ==========================================================================
   HERO BUTTONS GREEN CONTAINER
   ========================================================================== */
.hero-buttons-green {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   HERO SECTION - White Text on Blue
   ========================================================================== */
.hero-title-white {
    font-family: 'Georgia', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
}

.hero-subtitle-white {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.hero-tagline-white {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

/* ==========================================================================
   RESPONSIVE - New Sections
   ========================================================================== */
@media (max-width: 992px) {
    .three-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-flow-horizontal {
        gap: 1rem;
    }

    .step-circle {
        width: 70px;
        height: 70px;
    }

    .step-circle svg {
        width: 24px;
        height: 24px;
    }

    .hero-title-white {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .three-pillars-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .process-flow-horizontal {
        flex-direction: column;
        gap: 1.5rem;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .hero-tags-row {
        justify-content: center;
    }

    .hero-buttons-green {
        justify-content: center;
    }

    .hero-title-white {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero-subtitle-white,
    .hero-tagline-white {
        text-align: center;
    }

    .join-partner-grid-mockup {
        grid-template-columns: 1fr;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .section-header-line {
        gap: 1rem;
    }

    .section-header-line h2 {
        font-size: 1.3rem;
    }

    .section-header-line .line {
        max-width: 60px;
    }
}
