/* ==========================================================================
   CITIBLOCK FARMER PRODUCER COMPANY LIMITED — OFFICIAL CORPORATE STYLESHEET
   Matches High-Fidelity Reference Mockup (media_1788842934793.jpg)
   ========================================================================== */

:root {
    --cb-bg-cream: #FAF8F2;
    --cb-bg-warm: #F4F1E8;
    --cb-bg-white: #FFFFFF;
    --cb-green-dark: #12381F;
    --cb-green-primary: #194D2B;
    --cb-green-accent: #2A6E3F;
    --cb-green-light: #EBF3ED;
    --cb-green-pill: #E2EDE5;
    --cb-gold-accent: #D97706;
    --cb-gold-light: #FDE68A;
    --cb-gold-soft: #FFFBEB;
    --cb-brown-text: #5A432F;
    --cb-text-dark: #1F2937;
    --cb-text-muted: #64748B;
    --cb-border-subtle: #E8E3D7;
    --cb-border-card: #EFECE3;
    
    --cb-font-display: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --cb-font-sans: 'Plus Jakarta Sans', 'Mukta', system-ui, -apple-system, sans-serif;
    --cb-font-accent: 'Outfit', sans-serif;
    --cb-font-script: 'Caveat', cursive, serif;
    
    --cb-radius-sm: 8px;
    --cb-radius-md: 16px;
    --cb-radius-lg: 24px;
    --cb-radius-pill: 9999px;
    
    --cb-shadow-sm: 0 4px 12px rgba(18, 56, 31, 0.04);
    --cb-shadow-md: 0 10px 30px rgba(18, 56, 31, 0.06);
    --cb-shadow-lg: 0 20px 45px rgba(18, 56, 31, 0.09);
    --cb-shadow-card: 0 8px 24px rgba(35, 45, 38, 0.05);
}

[data-theme="dark"], body.dark-mode {
    --cb-bg-cream: #0B1710;
    --cb-bg-warm: #112218;
    --cb-bg-white: #162B1F;
    --cb-green-dark: #07130B;
    --cb-green-primary: #25663B;
    --cb-green-accent: #3E945A;
    --cb-green-light: rgba(37, 102, 59, 0.25);
    --cb-green-pill: #1B3526;
    --cb-gold-accent: #E59828;
    --cb-gold-light: rgba(229, 152, 40, 0.25);
    --cb-gold-soft: rgba(229, 152, 40, 0.12);
    --cb-brown-text: #D1C2A5;
    --cb-text-dark: #F3F4F6;
    --cb-text-muted: #94A3B8;
    --cb-border-subtle: rgba(255, 255, 255, 0.08);
    --cb-border-card: rgba(255, 255, 255, 0.06);
    --cb-shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.35);
    --cb-shadow-md: 0 12px 35px rgba(0, 0, 0, 0.45);
    --cb-shadow-lg: 0 22px 55px rgba(0, 0, 0, 0.6);
}

/* Base Page Layout */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    max-width: 100%;
}

*, *::before, *::after {
    box-sizing: inherit;
}

.cb-page-wrapper {
    background-color: var(--cb-bg-cream);
    color: var(--cb-text-dark);
    font-family: var(--cb-font-sans);
    overflow-x: hidden;
    max-width: 100%;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

.cb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ════════════════════════════════════════════════════════════════
   1. CORPORATE HEADER / NAVIGATION (FLOATING ON SCROLL)
   ════════════════════════════════════════════════════════════════ */
.cb-header {
    background: var(--cb-bg-cream);
    border-bottom: 1px solid var(--cb-border-subtle);
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                max-width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-radius 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border 0.35s ease,
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.3s ease,
                padding 0.35s ease,
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating Capsule State When Scrolling Starts */
.cb-header.is-scrolled {
    position: fixed !important;
    top: 14px !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: min(1200px, calc(100% - 32px)) !important;
    border-radius: 9999px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(226, 217, 203, 0.9) !important;
    box-shadow: 0 16px 36px -6px rgba(18, 56, 31, 0.16),
                0 4px 12px -2px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(255, 255, 255, 0.7) inset !important;
    padding: 0 18px !important;
    z-index: 1000 !important;
    animation: cbHeaderFloatDown 0.32s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes cbHeaderFloatDown {
    from {
        opacity: 0.6;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cb-header.is-scrolled .cb-container {
    padding: 0 8px;
    max-width: 100%;
}

.cb-header.is-scrolled .cb-nav-wrap {
    height: 62px;
}

.cb-header.is-scrolled .cb-brand-logo-img {
    height: 40px;
    width: 40px;
    border-radius: 11px;
    padding: 2.5px;
}

.cb-header.is-scrolled .cb-nav-links {
    gap: 20px;
}

.cb-header.is-scrolled .cb-nav-link {
    font-size: 0.9rem;
    padding: 4px 0;
}

.cb-header.is-scrolled .cb-cta-touch-btn {
    padding: 8px 18px;
    font-size: 0.84rem;
}

.cb-header.is-scrolled .cb-lang-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.cb-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    gap: 20px;
    transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cb-brand-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    gap: 10px;
    animation: cbLogoEntrance 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cbLogoEntrance {
    from { opacity: 0; transform: translateX(-18px) scale(0.92); }
    to   { opacity: 1; transform: translateX(0)     scale(1); }
}

/* ── Logo image: Premium Framed Corporate Emblem Badge ── */
.cb-brand-logo-img {
    height: 48px;
    width: 48px;
    display: block;
    object-fit: contain;
    background: #FFFFFF;
    border: 1.5px solid rgba(22, 101, 52, 0.22);
    border-radius: 14px;
    padding: 3px;
    box-shadow: 0 3px 10px rgba(18, 56, 31, 0.08), 
                0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.cb-brand-logo-link:hover .cb-brand-logo-img {
    border-color: rgba(22, 101, 52, 0.5);
    box-shadow: 0 6px 18px rgba(22, 101, 52, 0.18);
    transform: translateY(-1px) scale(1.04);
}

/* Dark mode: crisp white badge with glowing emerald border */
[data-theme="dark"] .cb-brand-logo-img,
body.dark-mode .cb-brand-logo-img {
    background: #FFFFFF;
    border: 1.5px solid rgba(74, 222, 128, 0.45);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(74, 222, 128, 0.15);
}

[data-theme="dark"] .cb-brand-logo-link:hover .cb-brand-logo-img,
body.dark-mode .cb-brand-logo-link:hover .cb-brand-logo-img {
    border-color: #4ADE80;
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.3);
    transform: translateY(-1px) scale(1.05);
}

.cb-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cb-nav-link {
    font-family: var(--cb-font-sans);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--cb-text-dark);
    text-decoration: none;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.cb-nav-link:hover,
.cb-nav-link.active {
    color: var(--cb-green-primary);
}

.cb-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cb-green-primary);
    border-radius: 2px;
}

.cb-nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Language Switcher Capsule */
.cb-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: var(--cb-bg-white);
    border: 1px solid var(--cb-border-subtle);
    border-radius: var(--cb-radius-pill);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--cb-text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
}

.cb-lang-btn:hover {
    border-color: var(--cb-green-primary);
    color: var(--cb-green-primary);
}

.cb-cta-touch-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--cb-green-dark);
    color: #FFFFFF !important;
    border-radius: var(--cb-radius-pill);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(18, 56, 31, 0.2);
    transition: all 0.25s ease;
}

.cb-cta-touch-btn:hover {
    background: var(--cb-green-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 56, 31, 0.3);
}

/* ── Mobile Navigation Hamburger Toggle ── */
.cb-mobile-toggle-btn,
.cb-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    background: var(--cb-bg-white);
    border: 1px solid var(--cb-border-subtle);
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(18, 56, 31, 0.06);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.cb-mobile-toggle-btn:hover,
.cb-hamburger:hover {
    background: var(--cb-green-light);
    border-color: var(--cb-green-primary);
}

.cb-hamburger-bar,
.cb-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--cb-green-dark);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.cb-mobile-toggle-btn[aria-expanded="true"] .cb-hamburger-bar:nth-child(1),
.cb-hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.cb-mobile-toggle-btn[aria-expanded="true"] .cb-hamburger-bar:nth-child(2),
.cb-hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.cb-mobile-toggle-btn[aria-expanded="true"] .cb-hamburger-bar:nth-child(3),
.cb-hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Drawer Backdrop ── */
.cb-drawer-backdrop {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(10, 24, 15, 0.6) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cb-drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

/* ── Mobile Drawer Aside (Guaranteed Off-Screen Fixed Position) ── */
.cb-mobile-drawer,
.cb-nav-drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: min(340px, 86vw) !important;
    height: 100vh !important;
    max-height: 100vh !important;
    background: #FFFFFF !important;
    box-shadow: -8px 0 32px rgba(10, 24, 15, 0.24) !important;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column !important;
    transform: translateX(100%) !important;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform, visibility;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.cb-mobile-drawer.is-open,
.cb-nav-drawer.is-open {
    transform: translateX(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.cb-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--cb-border-subtle);
    background: var(--cb-bg-cream);
}

.cb-drawer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cb-drawer-logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #FFFFFF;
    padding: 2px;
    box-shadow: 0 2px 6px rgba(18, 56, 31, 0.1);
    object-fit: contain;
}

.cb-drawer-title {
    display: block;
    font-family: var(--cb-font-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--cb-green-dark);
    line-height: 1.15;
}

.cb-drawer-sub {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--cb-green-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cb-drawer-close-btn,
.cb-drawer-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--cb-bg-white);
    border: 1px solid var(--cb-border-subtle);
    color: var(--cb-text-dark);
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cb-drawer-close-btn:hover,
.cb-drawer-close:hover {
    background: #FEE2E2;
    color: #DC2626;
    transform: rotate(90deg);
}

.cb-drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: 16px 18px;
    -webkit-overflow-scrolling: touch;
}

.cb-drawer-links,
.cb-drawer-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px;
}

.cb-drawer-links li,
.cb-drawer-list li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.cb-drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cb-text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
}

.cb-drawer-link-arrow {
    font-size: 0.95rem;
    color: var(--cb-text-muted);
    transition: transform 0.2s ease, color 0.2s ease;
}

.cb-drawer-link:hover,
.cb-drawer-link.active {
    background: var(--cb-green-light);
    color: var(--cb-green-primary);
    font-weight: 700;
    transform: translateX(3px);
}

.cb-drawer-link:hover .cb-drawer-link-arrow,
.cb-drawer-link.active .cb-drawer-link-arrow {
    color: var(--cb-green-primary);
    transform: translateX(3px);
}

.cb-drawer-footer {
    padding: 18px 20px;
    border-top: 1px solid var(--cb-border-subtle);
    background: var(--cb-bg-cream);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cb-drawer-store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    background: linear-gradient(135deg, #882408 0%, #C25E1A 100%);
    color: #FFFFFF !important;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 4px 14px rgba(136, 36, 8, 0.25);
    transition: all 0.2s ease;
}

.cb-drawer-store-btn:hover {
    background: linear-gradient(135deg, #6B1C05 0%, #A84E12 100%);
    transform: translateY(-1px);
}

.cb-drawer-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    background: var(--cb-green-dark);
    color: #FFFFFF !important;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 4px 14px rgba(18, 56, 31, 0.2);
    transition: all 0.2s ease;
}

.cb-drawer-contact-btn:hover {
    background: var(--cb-green-primary);
    transform: translateY(-1px);
}

/* ════════════════════════════════════════════════════════════════
   2. HERO SECTION
   ════════════════════════════════════════════════════════════════ */
.cb-hero-section {
    padding: 56px 0 64px;
    position: relative;
}

.cb-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.cb-hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cb-eyebrow-pill {
    font-family: var(--cb-font-sans);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cb-green-accent);
    margin-bottom: 14px;
}

.cb-hero-title {
    font-family: var(--cb-font-display);
    font-size: clamp(2.4rem, 4.2vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--cb-green-dark);
    margin: 0 0 16px;
    letter-spacing: -0.025em;
}

.cb-hero-tagline {
    font-family: var(--cb-font-sans);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cb-text-dark);
    margin: 0 0 14px;
    line-height: 1.4;
}

.cb-hero-desc {
    font-size: 1rem;
    color: var(--cb-text-muted);
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 520px;
}

.cb-hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.cb-btn-green-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: var(--cb-green-primary);
    color: #FFFFFF !important;
    border-radius: var(--cb-radius-pill);
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(25, 77, 43, 0.22);
    transition: all 0.25s ease;
}

.cb-btn-green-pill:hover {
    background: var(--cb-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(25, 77, 43, 0.3);
}

.cb-btn-outline-pill {
    display: inline-flex;
    align-items: center;
    padding: 11px 24px;
    background: transparent;
    border: 1.5px solid var(--cb-border-subtle);
    color: var(--cb-text-dark);
    border-radius: var(--cb-radius-pill);
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.cb-btn-outline-pill:hover {
    border-color: var(--cb-green-primary);
    color: var(--cb-green-primary);
    background: var(--cb-bg-white);
}

/* Feature 4-Pill Strip */
.cb-hero-feature-strip {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--cb-border-subtle);
    border-radius: var(--cb-radius-pill);
    backdrop-filter: blur(8px);
}

.cb-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--cb-brown-text);
    white-space: nowrap;
}

.cb-feature-tag svg {
    color: var(--cb-green-accent);
    flex-shrink: 0;
}

/* Hero Right Visual Stack */
.cb-hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cb-hero-photo-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(25, 77, 43, 0.14);
    background: #E5E7EB;
    max-width: 480px;
    width: 100%;
}

.cb-hero-farmer-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Floating Handwritten Quote Tag */
.cb-hero-quote-callout {
    position: absolute;
    top: -24px;
    left: -20px;
    z-index: 10;
    pointer-events: none;
}

.cb-script-text {
    font-family: var(--cb-font-script);
    font-size: 1.7rem;
    font-weight: 700;
    color: #882408;
    line-height: 1.15;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    display: inline-block;
    transform: rotate(-3deg);
}

/* Floating Circular Badge */
.cb-hero-badge-circle {
    position: absolute;
    top: 24px;
    right: -16px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #2D6A4F;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.2;
    padding: 8px;
    box-shadow: 0 10px 24px rgba(45, 106, 79, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.4);
    z-index: 10;
}

/* Bottom Location Pill */
.cb-hero-loc-pill {
    position: absolute;
    bottom: -16px;
    right: 20px;
    background: var(--cb-bg-white);
    border: 1px solid var(--cb-border-subtle);
    border-radius: var(--cb-radius-pill);
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--cb-text-dark);
    box-shadow: var(--cb-shadow-md);
    z-index: 10;
}

/* ════════════════════════════════════════════════════════════════
   3. SECTION: ABOUT US ("Rooted in Purpose, Growing Together")
   ════════════════════════════════════════════════════════════════ */
.cb-about-section {
    padding: 100px 0 90px;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--cb-border-subtle);
    border-bottom: 1px solid var(--cb-border-subtle);
}

.cb-about-ambient-glow {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 102, 59, 0.06) 0%, rgba(250, 248, 242, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.cb-about-grid {
    display: grid;
    grid-template-columns: minmax(360px, 490px) 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Visual Column */
.cb-about-visual-side {
    position: relative;
}

.cb-about-visual-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    overflow: hidden;
    background: #FAF8F2;
    border: 1px solid rgba(18, 56, 31, 0.12);
    box-shadow: 0 24px 60px -12px rgba(18, 56, 31, 0.18), 0 8px 24px -4px rgba(18, 56, 31, 0.08);
}

.cb-about-sprout-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cb-about-visual-frame:hover .cb-about-sprout-img {
    transform: scale(1.04);
}

.cb-visual-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 56, 31, 0.15) 0%, rgba(18, 56, 31, 0) 35%, rgba(18, 56, 31, 0.55) 100%);
    pointer-events: none;
}

/* Floating Glass Badge (Top Right) */
.cb-visual-badge-top {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
    z-index: 3;
}

.cb-badge-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #16A34A;
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
    animation: cbPulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
    flex-shrink: 0;
}

@keyframes cbPulse {
    0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.cb-badge-text-group {
    display: flex;
    flex-direction: column;
}

.cb-badge-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--cb-green-dark);
    line-height: 1.2;
}

.cb-badge-sub {
    font-size: 0.68rem;
    color: var(--cb-text-muted);
    font-weight: 500;
}

/* Floating Impact Card (Bottom Left) */
.cb-visual-card-bottom {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
    z-index: 3;
    max-width: calc(100% - 40px);
}

.cb-card-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #DCFCE7;
    color: #15803D;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cb-card-text-group {
    display: flex;
    flex-direction: column;
}

.cb-card-title {
    font-size: 0.86rem;
    font-weight: 800;
    color: var(--cb-green-dark);
    line-height: 1.2;
}

.cb-card-sub {
    font-size: 0.72rem;
    color: var(--cb-text-muted);
    font-weight: 500;
}

/* Integrated Script Watermark */
.cb-visual-script-tag {
    position: absolute;
    bottom: 84px;
    right: 20px;
    font-family: var(--cb-font-script);
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
    z-index: 2;
    pointer-events: none;
    letter-spacing: 0.02em;
}

/* Right Content Side */
.cb-about-content-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cb-about-eyebrow-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.cb-about-eyebrow-row .cb-section-eyebrow {
    margin-bottom: 0;
}

.cb-eyebrow-sep {
    color: var(--cb-border-subtle);
    font-weight: 700;
}

.cb-eyebrow-meta {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--cb-text-muted);
    letter-spacing: 0.05em;
    background: var(--cb-bg-cream);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid var(--cb-border-subtle);
}

.cb-about-section .cb-section-heading {
    font-family: var(--cb-font-display);
    font-size: clamp(2.2rem, 3.4vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--cb-green-dark);
    margin: 0 0 16px;
    letter-spacing: -0.03em;
}

.cb-heading-gradient {
    color: var(--cb-green-accent);
}

.cb-about-lead {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--cb-text-dark);
    margin: 0 0 12px;
}

.cb-about-lead strong,
.cb-about-body strong {
    color: var(--cb-green-dark);
    font-weight: 700;
}

.cb-about-body {
    font-size: 0.94rem;
    color: var(--cb-text-muted);
    line-height: 1.68;
    margin: 0 0 20px;
}

/* Core Commitments */
.cb-about-commitments {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.cb-commit-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cb-green-dark);
    background: #F4F8F5;
    padding: 6px 14px;
    border-radius: 9999px;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

/* 2x2 Bento Metric Grid */
.cb-about-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 28px;
    width: 100%;
}

.cb-bento-card {
    background: #FAF8F2;
    border: 1px solid var(--cb-border-subtle);
    border-radius: 18px;
    padding: 16px 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.cb-bento-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(18, 56, 31, 0.08);
    border-color: var(--cb-green-accent);
    background: #FFFFFF;
}

.cb-bento-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.cb-bento-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cb-bento-num {
    font-family: var(--cb-font-display);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--cb-green-dark);
    line-height: 1;
    letter-spacing: -0.02em;
}

.cb-bento-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--cb-green-dark);
    margin: 0 0 3px;
    line-height: 1.3;
}

.cb-bento-desc {
    font-size: 0.74rem;
    color: var(--cb-text-muted);
    margin: 0;
    line-height: 1.4;
}

/* CTA Row */
.cb-about-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cb-btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cb-green-dark);
    background: #FFFFFF;
    border: 1.5px solid var(--cb-border-subtle);
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.cb-btn-outline-gold:hover {
    border-color: var(--cb-gold-accent);
    color: var(--cb-gold-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(217, 119, 6, 0.15);
}

/* Legacy fallback classes preserved for safety */
.cb-stat-pill-card {
    background: var(--cb-bg-cream);
    border: 1px solid var(--cb-border-subtle);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.cb-stat-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--cb-green-light);
    color: var(--cb-green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cb-stat-num {
    font-family: var(--cb-font-sans);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--cb-green-dark);
    line-height: 1.1;
    display: block;
}
.cb-stat-lbl {
    font-size: 0.8rem;
    color: var(--cb-text-muted);
    font-weight: 500;
    display: block;
}

/* ════════════════════════════════════════════════════════════════
   4. SECTION: OUR FOUNDATION (Mission, Vision, Values, Approach)
   Matches media_1789557349160.png High-Fidelity Design
   ════════════════════════════════════════════════════════════════ */
.cb-foundation-section,
.cb-pillars-section {
    padding: 84px 0 92px;
    background: var(--cb-bg-cream);
    position: relative;
    overflow: hidden;
}

/* Ambient Decorative Badges & Foliage */
.cb-found-decor-left {
    position: absolute;
    top: 50px;
    left: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    pointer-events: none;
    z-index: 2;
}

.cb-found-decor-right {
    position: absolute;
    top: 50px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
    z-index: 2;
}

.cb-found-leaf-img {
    width: 68px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(18, 56, 31, 0.12));
    margin-bottom: -15px;
    align-self: center;
}

.cb-found-stalk-img {
    width: 78px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(18, 56, 31, 0.12));
    margin-top: -12px;
    align-self: center;
}

.cb-found-badge-angled,
.cb-found-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 9999px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(18, 56, 31, 0.1);
    transform: none !important;
    -webkit-transform: none !important;
    rotate: 0deg !important;
}

.cb-found-badge-left {
    background: #194D2B;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transform: none !important;
    -webkit-transform: none !important;
    rotate: 0deg !important;
}

.cb-found-badge-right {
    background: #FAF8F2;
    color: #842F11;
    border: 1.5px solid #D97706;
    transform: none !important;
    -webkit-transform: none !important;
    rotate: 0deg !important;
}

/* Centered Section Header */
.cb-foundation-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 52px;
}

.cb-found-eyebrow-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 14px;
    width: 100%;
}

.cb-found-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.4), transparent);
    flex: 0 1 80px;
}

.cb-found-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cb-green-primary);
}

.cb-eyebrow-leaf {
    color: #2A6E3F;
}

.cb-foundation-heading {
    font-family: var(--cb-font-display);
    font-size: clamp(2.2rem, 4.2vw, 3.2rem);
    font-weight: 800;
    color: var(--cb-green-dark);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0 0 16px;
}

.cb-foundation-sub {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--cb-text-muted);
    max-width: 720px;
    margin: 0 auto;
}

/* Grid Layout */
.cb-foundation-grid,
.cb-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
    z-index: 3;
}

/* Foundation Card */
.cb-found-card,
.cb-pillar-card {
    background: var(--cb-bg-white);
    border: 1px solid var(--cb-border-card);
    border-radius: 24px;
    padding: 26px 22px 22px;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    box-shadow: 0 6px 20px rgba(18, 56, 31, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    min-height: 100%;
}

.cb-found-card:hover,
.cb-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(18, 56, 31, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    border-color: rgba(42, 110, 63, 0.3);
}

.cb-found-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 18px;
}

.cb-found-icon-box,
.cb-pillar-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cb-found-icon-green {
    background: #E8F2EB;
    color: #194D2B;
}

.cb-found-icon-terracotta {
    background: #FBF0EB;
    color: #A8421E;
}

.cb-found-card-num {
    font-family: var(--cb-font-display);
    font-size: 1.85rem;
    font-weight: 800;
    color: #194D2B;
    opacity: 0.85;
    line-height: 1;
    letter-spacing: -0.02em;
}

.cb-found-num-terracotta {
    color: #A8421E;
}

.cb-found-card-title,
.cb-pillar-title {
    font-family: var(--cb-font-display);
    font-size: 1.32rem;
    font-weight: 800;
    color: var(--cb-green-dark);
    letter-spacing: -0.015em;
    margin: 0 0 12px;
}

.cb-found-title-terracotta {
    color: #A8421E;
}

.cb-found-card-desc,
.cb-pillar-text {
    font-size: 0.88rem;
    color: var(--cb-text-muted);
    line-height: 1.6;
    margin: 0 0 18px;
}

/* Action Button */
.cb-found-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    margin-bottom: 18px;
}

.cb-found-btn-green {
    color: #194D2B;
}

.cb-found-btn-terracotta {
    color: #A8421E;
}

.cb-found-btn-bottom {
    margin-top: auto;
    margin-bottom: 4px;
}

.cb-found-btn-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.cb-found-btn-green .cb-found-btn-arrow {
    background: #194D2B;
    color: #FFFFFF;
}

.cb-found-btn-terracotta .cb-found-btn-arrow {
    background: #A8421E;
    color: #FFFFFF;
}

.cb-found-btn:hover {
    opacity: 0.9;
}

.cb-found-btn:hover .cb-found-btn-arrow {
    transform: translateX(4px);
}

/* Card Landscape Photos (Cards 1 & 2) */
.cb-found-img-box {
    margin-top: auto;
    width: 100%;
    height: 154px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    background: #EFECE3;
}

.cb-found-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Card 3: Values Pills List */
.cb-found-pills-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-bottom: 22px;
}

.cb-found-val-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: #F7FAF8;
    border: 1px solid #E1ECE4;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #194D2B;
    transition: background-color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.cb-found-val-pill:hover {
    background: #EBF3ED;
    border-color: #2A6E3F;
    transform: translateX(3px);
}

.cb-val-pill-icon {
    font-size: 0.95rem;
    line-height: 1;
}

.cb-val-pill-text {
    line-height: 1.2;
}

/* Card 4: Approach Bullets List */
.cb-found-approach-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.cb-found-approach-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--cb-text-dark);
    line-height: 1.35;
}

.cb-approach-bullet-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #FBF0EB;
    color: #A8421E;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Section 4B Ecosystem Transition Header with Floating Store Pill */
.cb-ecosystem-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.cb-ecosystem-header-left {
    max-width: 700px;
}

.cb-ecosystem-header-left .cb-section-eyebrow {
    margin-bottom: 8px;
    display: inline-block;
}

.cb-ecosystem-header-left .cb-section-heading {
    margin-bottom: 12px;
}

.cb-btn-store-floating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    background: linear-gradient(135deg, #194D2B 0%, #2A6E3F 100%);
    color: #FFFFFF !important;
    border-radius: 9999px;
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(25, 77, 43, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    white-space: nowrap;
}

.cb-btn-store-floating:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(25, 77, 43, 0.38);
    background: linear-gradient(135deg, #12381F 0%, #225C34 100%);
    color: #FFFFFF !important;
}

.cb-store-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.cb-store-arrow {
    transition: transform 0.25s ease;
}

.cb-btn-store-floating:hover .cb-store-arrow {
    transform: translateX(4px);
}

/* Dark Mode Overrides for Foundation */
[data-theme="dark"] .cb-found-card,
body.dark-mode .cb-found-card {
    background: var(--cb-bg-white);
    border-color: var(--cb-border-card);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .cb-found-card:hover,
body.dark-mode .cb-found-card:hover {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
    border-color: rgba(62, 148, 90, 0.4);
}

[data-theme="dark"] .cb-found-icon-green,
body.dark-mode .cb-found-icon-green {
    background: rgba(37, 102, 59, 0.3);
    color: #4ADE80;
}

[data-theme="dark"] .cb-found-icon-terracotta,
body.dark-mode .cb-found-icon-terracotta {
    background: rgba(224, 109, 68, 0.25);
    color: #FB923C;
}

[data-theme="dark"] .cb-found-card-num,
body.dark-mode .cb-found-card-num {
    color: #4ADE80;
}

[data-theme="dark"] .cb-found-num-terracotta,
body.dark-mode .cb-found-num-terracotta {
    color: #FB923C;
}

[data-theme="dark"] .cb-found-card-title,
body.dark-mode .cb-found-card-title {
    color: var(--cb-text-dark);
}

[data-theme="dark"] .cb-found-title-terracotta,
body.dark-mode .cb-found-title-terracotta {
    color: #FB923C;
}

[data-theme="dark"] .cb-found-btn-green,
body.dark-mode .cb-found-btn-green {
    color: #4ADE80;
}

[data-theme="dark"] .cb-found-btn-green .cb-found-btn-arrow,
body.dark-mode .cb-found-btn-green .cb-found-btn-arrow {
    background: #25663B;
    color: #FFFFFF;
}

[data-theme="dark"] .cb-found-btn-terracotta,
body.dark-mode .cb-found-btn-terracotta {
    color: #FB923C;
}

[data-theme="dark"] .cb-found-btn-terracotta .cb-found-btn-arrow,
body.dark-mode .cb-found-btn-terracotta .cb-found-btn-arrow {
    background: #C25E2E;
    color: #FFFFFF;
}

[data-theme="dark"] .cb-found-val-pill,
body.dark-mode .cb-found-val-pill {
    background: rgba(37, 102, 59, 0.18);
    border-color: rgba(255, 255, 255, 0.1);
    color: #86EFAC;
}

[data-theme="dark"] .cb-found-val-pill:hover,
body.dark-mode .cb-found-val-pill:hover {
    background: rgba(37, 102, 59, 0.32);
    border-color: #3E945A;
}

[data-theme="dark"] .cb-approach-bullet-icon,
body.dark-mode .cb-approach-bullet-icon {
    background: rgba(224, 109, 68, 0.25);
    color: #FB923C;
}

[data-theme="dark"] .cb-found-badge-right,
body.dark-mode .cb-found-badge-right {
    background: #162B1F;
    color: #FBBF24;
    border-color: #D97706;
}

/* Responsive Overrides for Foundation */
@media (max-width: 1280px) {
    .cb-found-decor-left,
    .cb-found-decor-right {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .cb-foundation-grid,
    .cb-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .cb-ecosystem-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .cb-foundation-section,
    .cb-pillars-section {
        padding: 56px 0 64px;
    }

    .cb-foundation-header {
        margin-bottom: 36px;
    }

    .cb-foundation-grid,
    .cb-pillars-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cb-found-card,
    .cb-pillar-card {
        padding: 24px 20px 20px;
    }

    .cb-found-img-box {
        height: 180px;
    }
}

/* ════════════════════════════════════════════════════════════════
   5. SECTION: OUR BRAND — VINDHYA MILLETS
   ════════════════════════════════════════════════════════════════ */
.cb-brand-showcase-section {
    padding: 72px 0 80px;
    background: var(--cb-bg-white);
}

.cb-brand-card-wrap {
    background: var(--cb-bg-cream);
    border: 1px solid var(--cb-border-subtle);
    border-radius: 28px;
    padding: 44px 38px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr 1.15fr;
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cb-brand-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cb-brand-super-title {
    font-family: var(--cb-font-display);
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--cb-green-dark);
    margin: 0 0 4px;
    letter-spacing: -0.02em;
}

.cb-brand-sub-heading {
    font-size: 0.96rem;
    font-weight: 700;
    color: #882408;
    margin: 0 0 16px;
}

.cb-brand-desc {
    font-size: 0.92rem;
    color: var(--cb-text-muted);
    line-height: 1.65;
    margin: 0 0 24px;
}

/* Center Packaging Visual */
.cb-brand-center-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cb-brand-sack-img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(18, 56, 31, 0.08);
}

.cb-brand-cursive-callout {
    position: absolute;
    top: -16px;
    left: -12px;
    font-family: var(--cb-font-script);
    font-size: 1.6rem;
    font-weight: 700;
    color: #882408;
    line-height: 1.1;
    transform: rotate(-4deg);
    z-index: 5;
    pointer-events: none;
}

/* ── Modern Right Showcase Card: Same Roots • Stronger Together ── */
.cb-brand-right-showcase {
    position: relative;
    background: #FFFFFF;
    border: 1.5px solid rgba(226, 217, 203, 0.95);
    border-radius: 24px;
    padding: 24px 22px;
    box-shadow: 0 16px 36px -8px rgba(18, 56, 31, 0.09),
                0 4px 12px -2px rgba(0, 0, 0, 0.03);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.cb-brand-right-showcase::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, rgba(217, 119, 6, 0) 70%);
    pointer-events: none;
}

.cb-brand-right-showcase:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px -6px rgba(18, 56, 31, 0.14),
                0 6px 16px -2px rgba(0, 0, 0, 0.04);
    border-color: rgba(22, 101, 52, 0.3);
}

.cb-roots-card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

/* Top Kicker Pill */
.cb-roots-pill-header {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(22, 101, 52, 0.07);
    border: 1px solid rgba(22, 101, 52, 0.16);
    border-radius: 9999px;
    padding: 4px 11px;
    align-self: flex-start;
    margin-bottom: 12px;
}

.cb-roots-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #16A34A;
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
    animation: cbPulseGreen 1.8s infinite;
}

.cb-roots-kicker-text {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #166534;
    line-height: 1.25;
}

/* Main Title & Emblem Row */
.cb-roots-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.cb-roots-emblem-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #12381F 0%, #1A542C 100%);
    color: #F59E0B;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(18, 56, 31, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cb-roots-title-text {
    flex: 1;
}

.cb-roots-main-title {
    font-family: var(--cb-font-display);
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.18;
    color: #12381F;
    margin: 0;
    letter-spacing: -0.01em;
}

.cb-roots-gradient-title {
    background: linear-gradient(135deg, #882408 0%, #D97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* 3 Interactive Stat / Metric Boxes */
.cb-roots-boxes-grid {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.cb-root-stat-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 13px;
    border-radius: 14px;
    background: #FAF8F3;
    border: 1px solid rgba(226, 217, 203, 0.75);
    transition: all 0.25s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    cursor: default;
}

.cb-root-stat-box:hover {
    transform: translateY(-2px);
    background: #FFFFFF;
    box-shadow: 0 6px 16px rgba(18, 56, 31, 0.08);
}

.cb-root-stat-box.box-farmers:hover {
    border-color: #16A34A;
}

.cb-root-stat-box.box-organic:hover {
    border-color: #D97706;
}

.cb-root-stat-box.box-purity:hover {
    border-color: #0D9488;
}

.cb-root-stat-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.box-farmers .cb-root-stat-icon-wrap {
    background: #DCFCE7;
    color: #15803D;
}

.box-organic .cb-root-stat-icon-wrap {
    background: #FEF3C7;
    color: #B45309;
}

.box-purity .cb-root-stat-icon-wrap {
    background: #CCFBF1;
    color: #0F766E;
}

.cb-root-stat-info {
    flex: 1;
    min-width: 0;
}

.cb-root-stat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 2px;
}

.cb-root-stat-val {
    font-family: var(--cb-font-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: #12381F;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.cb-root-stat-val.val-amber {
    color: #B45309;
}

.cb-root-stat-val.val-teal {
    color: #0F766E;
}

.cb-root-tag-badge {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 4px;
    line-height: 1.2;
}

.badge-green {
    background: #DCFCE7;
    color: #15803D;
}

.badge-amber {
    background: #FEF3C7;
    color: #B45309;
}

.badge-teal {
    background: #CCFBF1;
    color: #0F766E;
}

.cb-root-stat-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 2px;
    line-height: 1.25;
}

.cb-root-stat-desc {
    font-size: 0.72rem;
    color: #64748B;
    line-height: 1.35;
}

/* Bottom Trust Strip */
.cb-roots-card-footer {
    margin-top: 14px;
    padding-top: 11px;
    border-top: 1px dashed rgba(226, 217, 203, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.72rem;
}

.cb-roots-foot-left {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: #166534;
}

.cb-roots-badge-brand {
    font-weight: 700;
    font-size: 0.68rem;
    color: #882408;
    background: #FEE2E2;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

/* ════════════════════════════════════════════════════════════════
   6. SECTION: OUR IMPACT — CREATING REAL CHANGE
   ════════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════════
   6. SECTION: OUR IMPACT — MEASURABLE RURAL TRANSFORMATION
   High-Fidelity Match to media_1789557635747.jpg
   ════════════════════════════════════════════════════════════════ */
.cb-impact-section {
    padding: 88px 0 96px;
    background: #FAFBF8;
    position: relative;
    overflow: hidden;
}

/* Ambient Corner Branches & Hand-lettered Callouts */
.cb-impact-decor-leaf-tl {
    position: absolute;
    top: 25px;
    left: 0;
    z-index: 2;
    pointer-events: none;
    max-width: 75px;
}

.cb-impact-decor-callout-tl {
    position: absolute;
    top: 135px;
    left: max(12px, calc((100vw - 1240px) / 2 - 40px));
    z-index: 2;
    pointer-events: none;
    max-width: 85px;
}

.cb-impact-decor-callout-tr {
    position: absolute;
    top: 135px;
    right: max(12px, calc((100vw - 1240px) / 2 - 40px));
    z-index: 2;
    pointer-events: none;
    max-width: 105px;
}

.cb-impact-decor-leaf-br {
    position: absolute;
    bottom: 35px;
    right: 0;
    z-index: 2;
    pointer-events: none;
    max-width: 65px;
}

.cb-impact-decor-img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(18, 56, 31, 0.05));
    user-select: none;
    -webkit-user-select: none;
}

/* Section Header */
.cb-impact-header-center {
    text-align: center;
    margin-bottom: 38px;
    position: relative;
    z-index: 3;
}

.cb-impact-eyebrow-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cb-impact-eyebrow-line {
    width: 36px;
    height: 1.5px;
    background: #15803D;
}

.cb-impact-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    color: #15803D;
    text-transform: uppercase;
}

.cb-impact-eyebrow-leaf {
    font-size: 0.88rem;
}

.cb-impact-main-heading {
    font-family: var(--cb-font-sans);
    font-size: clamp(2.1rem, 3.8vw, 2.85rem);
    font-weight: 900;
    line-height: 1.16;
    margin: 0 0 16px;
    letter-spacing: -0.025em;
}

.cb-impact-title-dark {
    color: #0E2E1B;
}

.cb-impact-title-green {
    color: #166534;
}

.cb-impact-title-leaf {
    font-size: 1.8rem;
    vertical-align: middle;
}

.cb-impact-subtitle {
    font-size: 0.95rem;
    line-height: 1.62;
    color: #55665B;
    max-width: 760px;
    margin: 0 auto;
}

/* 4 High-Impact KPI Milestone Cards */
.cb-impact-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 34px;
    position: relative;
    z-index: 3;
}

.cb-impact-stat-card {
    background: #FFFFFF;
    border: 1.5px solid #E5ECE7;
    border-radius: 20px;
    padding: 20px 20px 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(18, 56, 31, 0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.cb-impact-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(18, 56, 31, 0.1);
    border-color: rgba(39, 110, 63, 0.35);
}

.cb-impact-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.cb-impact-card-ico {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-impact-card-ico.cb-ico-green {
    background: #E1F2E6;
    color: #166534;
}

.cb-impact-card-ico.cb-ico-peach {
    background: #FBECE4;
    color: #A8421E;
}

.cb-impact-card-ico.cb-ico-gold {
    background: #FEF3C7;
    color: #B45309;
}

.cb-impact-card-ico.cb-ico-sky {
    background: #E0F2FE;
    color: #0284C7;
}

.cb-impact-card-chip {
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 9999px;
    white-space: nowrap;
}

.cb-impact-card-chip.cb-chip-green {
    background: #EAF5EE;
    color: #166534;
    border: 1px solid #C8E6C9;
}

.cb-impact-card-chip.cb-chip-peach {
    background: #FDF2E9;
    color: #A8421E;
    border: 1px solid #FADBD8;
}

.cb-impact-card-chip.cb-chip-gold {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A;
}

.cb-impact-card-chip.cb-chip-sky {
    background: #E0F2FE;
    color: #0369A1;
    border: 1px solid #BAE6FD;
}

.cb-impact-stat-val-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.cb-impact-stat-val {
    font-family: var(--cb-font-sans);
    font-size: 2.15rem;
    font-weight: 900;
    color: #0E2E1B;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cb-impact-stat-val.cb-val-rust {
    color: #0E2E1B;
}

.cb-impact-stat-arrow {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    transition: transform 0.25s ease;
}

.cb-impact-stat-card:hover .cb-impact-stat-arrow {
    transform: translateX(3px);
}

.cb-impact-stat-arrow.cb-arrow-green {
    background: #DDF1E4;
    color: #166534;
}

.cb-impact-stat-arrow.cb-arrow-peach {
    background: #FCEBD7;
    color: #A8421E;
}

.cb-impact-stat-arrow.cb-arrow-gold {
    background: #FEF3C7;
    color: #92400E;
}

.cb-impact-stat-arrow.cb-arrow-sky {
    background: #E0F2FE;
    color: #0369A1;
}

.cb-impact-stat-title {
    font-family: var(--cb-font-sans);
    font-size: 0.96rem;
    font-weight: 850;
    line-height: 1.3;
    margin: 0 0 5px;
}

.cb-impact-stat-title.cb-title-green {
    color: #165A2C;
}

.cb-impact-stat-title.cb-title-rust {
    color: #A8421E;
}

.cb-impact-stat-title.cb-title-gold {
    color: #B45309;
}

.cb-impact-stat-title.cb-title-sky {
    color: #0369A1;
}

.cb-impact-stat-sub {
    font-size: 0.77rem;
    line-height: 1.48;
    color: #55665B;
    margin: 0 0 14px;
    flex: 1;
}

.cb-impact-stat-visual {
    margin: 0 -20px;
    overflow: hidden;
    height: 52px;
    display: flex;
    align-items: flex-end;
}

.cb-impact-stat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

/* 2 Wide Deep-Dive Impact Feature Cards */
.cb-impact-feature-deck {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-bottom: 34px;
    position: relative;
    z-index: 3;
}

.cb-impact-feature-card {
    background: #FFFFFF;
    border: 1.5px solid #E5ECE7;
    border-radius: 24px;
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 26px rgba(18, 56, 31, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.cb-impact-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(18, 56, 31, 0.1);
    border-color: rgba(39, 110, 63, 0.35);
}

.cb-feature-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.cb-feature-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cb-feature-eyebrow.cb-eyebrow-green {
    color: #15803D;
}

.cb-feature-eyebrow.cb-eyebrow-amber {
    color: #C84E18;
}

.cb-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.cb-eyebrow-green .cb-eyebrow-dot {
    background: #15803D;
}

.cb-eyebrow-amber .cb-eyebrow-dot {
    background: #C84E18;
}

.cb-feature-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 850;
    padding: 4px 12px;
    border-radius: 9999px;
    white-space: nowrap;
}

.cb-feature-pill-badge.cb-badge-margin {
    background: #EAF5EE;
    color: #166534;
    border: 1px solid #C8E6C9;
}

.cb-feature-pill-badge.cb-badge-water {
    background: #FDF2E9;
    color: #B45309;
    border: 1px solid #FADBD8;
}

.cb-feature-card-body {
    display: flex;
    gap: 20px;
    align-items: stretch;
    flex: 1;
}

.cb-feature-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.cb-feature-title {
    font-family: var(--cb-font-sans);
    font-size: 1.25rem;
    font-weight: 850;
    color: #0E2E1B;
    margin: 0 0 10px;
    line-height: 1.25;
}

.cb-feature-desc {
    font-size: 0.8rem;
    line-height: 1.55;
    color: #55665B;
    margin: 0 0 16px;
}

.cb-feature-checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.cb-feature-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.77rem;
    font-weight: 650;
    color: #2D3A31;
}

.cb-feature-check-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-feature-check-icon.cb-ico-check-green {
    background: #D9EFE0;
    color: #166534;
}

.cb-feature-check-icon.cb-ico-check-amber {
    background: #FEF3C7;
    color: #B45309;
}

.cb-feature-photo-wrap {
    width: 175px;
    min-width: 175px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #E8EDE8;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.08);
}

.cb-feature-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cb-impact-feature-card:hover .cb-feature-photo {
    transform: scale(1.04);
}

/* Bottom Centered Botanical Trust Line */
.cb-impact-trust-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 16px 20px;
    color: #166534;
    font-size: 0.88rem;
    font-weight: 750;
    position: relative;
    z-index: 3;
}

.cb-trust-leaf {
    font-size: 1.1rem;
}

/* Dark Mode Overrides for Impact Section */
body.dark-mode .cb-impact-section,
[data-theme="dark"] .cb-impact-section {
    background: #091910;
}

body.dark-mode .cb-impact-title-dark,
[data-theme="dark"] .cb-impact-title-dark {
    color: #F1F5F9;
}

body.dark-mode .cb-impact-title-green,
[data-theme="dark"] .cb-impact-title-green {
    color: #4ADE80;
}

body.dark-mode .cb-impact-subtitle,
[data-theme="dark"] .cb-impact-subtitle {
    color: #94A3B8;
}

body.dark-mode .cb-impact-stat-card,
[data-theme="dark"] .cb-impact-stat-card {
    background: #0D2015;
    border-color: rgba(255, 255, 255, 0.09);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
}

body.dark-mode .cb-impact-stat-val,
[data-theme="dark"] .cb-impact-stat-val {
    color: #F1F5F9;
}

body.dark-mode .cb-impact-stat-sub,
[data-theme="dark"] .cb-impact-stat-sub {
    color: #94A3B8;
}

body.dark-mode .cb-impact-feature-card,
[data-theme="dark"] .cb-impact-feature-card {
    background: #0D2015;
    border-color: rgba(255, 255, 255, 0.09);
    box-shadow: 0 6px 26px rgba(0, 0, 0, 0.25);
}

body.dark-mode .cb-feature-title,
[data-theme="dark"] .cb-feature-title {
    color: #F1F5F9;
}

body.dark-mode .cb-feature-desc,
[data-theme="dark"] .cb-feature-desc {
    color: #94A3B8;
}

body.dark-mode .cb-feature-check-item,
[data-theme="dark"] .cb-feature-check-item {
    color: #CBD5E1;
}

body.dark-mode .cb-impact-trust-line,
[data-theme="dark"] .cb-impact-trust-line {
    color: #6EE7B7;
}

/* ────────────────────────────────────────────────────────────
   Responsive Rules for Section 6: Our Impact
   ──────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .cb-impact-decor-leaf-tl,
    .cb-impact-decor-callout-tl,
    .cb-impact-decor-callout-tr,
    .cb-impact-decor-leaf-br {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .cb-impact-stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 860px) {
    .cb-impact-feature-deck {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .cb-impact-section {
        padding: 56px 0 64px;
    }

    .cb-impact-header-center {
        margin-bottom: 28px;
    }

    .cb-impact-main-heading {
        font-size: 1.85rem;
    }

    .cb-impact-subtitle {
        font-size: 0.88rem;
        margin-bottom: 30px;
    }

    .cb-impact-stat-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        gap: 16px;
    }

    .cb-feature-card-body {
        flex-direction: column;
        align-items: center;
    }

    .cb-feature-photo-wrap {
        width: 100%;
        max-width: 280px;
        height: 220px;
    }

    .cb-impact-trust-line {
        font-size: 0.78rem;
        gap: 8px;
        flex-wrap: wrap;
        padding: 12px 10px;
    }
}

/* Backward compatibility aliases */
.cb-impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.cb-impact-left {
    display: flex;
    flex-direction: column;
}

.cb-impact-cards-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.cb-impact-card {
    background: var(--cb-bg-white);
    border: 1px solid var(--cb-border-subtle);
    border-radius: 18px;
    padding: 22px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--cb-shadow-sm);
    transition: transform 0.25s ease;
}

.cb-impact-card:hover {
    transform: translateY(-4px);
    border-color: var(--cb-green-accent);
}

.cb-impact-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--cb-green-light);
    color: var(--cb-green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.cb-impact-num {
    font-family: var(--cb-font-sans);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--cb-green-dark);
    line-height: 1.1;
    margin-bottom: 4px;
}

.cb-impact-lbl {
    font-size: 0.8rem;
    color: var(--cb-text-muted);
    font-weight: 600;
}

.cb-impact-right {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(18, 56, 31, 0.12);
}

.cb-impact-cursive-overlay {
    position: absolute;
    top: 24px;
    right: 24px;
    text-align: right;
    font-family: var(--cb-font-script);
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    line-height: 1.15;
    pointer-events: none;
}

/* ════════════════════════════════════════════════════════════════
   7. SECTION: STATUTORY DOSSIER (Compliance & MCA Records)
   ════════════════════════════════════════════════════════════════ */
.cb-dossier-section {
    padding: 64px 0;
    background: var(--cb-bg-white);
    border-top: 1px solid var(--cb-border-subtle);
}

.cb-dossier-toggle-card {
    background: var(--cb-bg-cream);
    border: 1px solid var(--cb-border-subtle);
    border-radius: 20px;
    padding: 24px 30px;
}

.cb-dossier-header-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.cb-dossier-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cb-dossier-title {
    font-family: var(--cb-font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--cb-green-dark);
    margin: 0;
}

.cb-dossier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--cb-border-subtle);
}

.cb-dossier-item {
    background: var(--cb-bg-white);
    border: 1px solid var(--cb-border-subtle);
    border-radius: 12px;
    padding: 14px 16px;
}

.cb-dossier-item-lbl {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--cb-text-muted);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 4px;
}

.cb-dossier-item-val {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--cb-green-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cb-copy-sm-btn {
    background: var(--cb-green-light);
    color: var(--cb-green-primary);
    border: none;
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cb-copy-sm-btn:hover {
    background: var(--cb-green-accent);
    color: #FFFFFF;
}

/* ════════════════════════════════════════════════════════════════
   8. SECTION: MISSION IN ACTION & 3 CORE PILLARS
   High-Fidelity Match to media_1789557767128.png
   ════════════════════════════════════════════════════════════════ */
.cb-journey-cta-section {
    background: #071C10;
    color: #FFFFFF;
    padding: 80px 0 92px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cb-journey-ambient-mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 20%, rgba(34, 197, 94, 0.16) 0%, transparent 45%),
                radial-gradient(circle at 82% 30%, rgba(217, 119, 6, 0.14) 0%, transparent 45%),
                radial-gradient(circle at 50% 95%, rgba(14, 165, 233, 0.10) 0%, transparent 50%),
                radial-gradient(circle at 5% 70%, rgba(16, 185, 129, 0.12) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Ambient Left Foliage Branch */
.cb-journey-foliage-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 280px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}

.cb-foliage-left-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    display: block;
}

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

/* Upper Split Hero Banner */
.cb-journey-hero-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 36px;
    align-items: center;
    margin-bottom: 42px;
}

.cb-journey-hero-left {
    display: flex;
    flex-direction: column;
}

.cb-journey-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4ADE80;
    margin-bottom: 14px;
}

.cb-journey-hero-title {
    font-family: var(--cb-font-display);
    font-size: clamp(2.4rem, 3.8vw, 3.25rem);
    font-weight: 850;
    letter-spacing: -0.025em;
    color: #FFFFFF;
    margin: 0 0 14px;
    line-height: 1.12;
}

.cb-journey-title-accent {
    color: #86EFAC;
    font-weight: 850;
}

.cb-journey-hero-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.62;
    margin: 0 0 24px;
    max-width: 580px;
}

/* 3 Action Buttons */
.cb-journey-action-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.cb-journey-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #FFFFFF;
    color: #0B2414 !important;
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.cb-journey-btn-white:hover {
    background: #FAF8F2;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.38);
}

.cb-journey-btn-trans {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    color: #FFFFFF !important;
    border-radius: 9999px;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.cb-journey-btn-trans:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.cb-journey-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: rgba(217, 119, 6, 0.15);
    border: 1.5px solid rgba(217, 119, 6, 0.65);
    color: #FCD34D !important;
    border-radius: 9999px;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.cb-journey-btn-gold:hover {
    background: #D97706;
    color: #FFFFFF !important;
    border-color: #D97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.35);
}

.cb-btn-arr {
    font-size: 0.95rem;
    transition: transform 0.25s ease;
}

.cb-journey-btn-white:hover .cb-btn-arr {
    transform: translateX(3px);
}

/* 4 Mini Trust Items */
.cb-journey-trust-strip {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cb-journey-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cb-trust-item-ico {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cb-ico-green {
    background: rgba(34, 197, 94, 0.18);
    color: #4ADE80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.cb-ico-emerald {
    background: rgba(16, 185, 129, 0.18);
    color: #6EE7B7;
    border: 1px solid rgba(110, 231, 183, 0.3);
}

.cb-ico-teal {
    background: rgba(13, 148, 136, 0.22);
    color: #5EEAD4;
    border: 1px solid rgba(94, 234, 212, 0.35);
}

.cb-ico-lime {
    background: rgba(132, 204, 22, 0.18);
    color: #BEF264;
    border: 1px solid rgba(190, 242, 100, 0.3);
}

.cb-trust-item-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.cb-trust-item-meta strong {
    font-size: 0.78rem;
    color: #FFFFFF;
    font-weight: 800;
}

.cb-trust-item-meta span {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

/* Right Column: Farmer Hero Frame */
.cb-journey-hero-right {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.cb-journey-farmer-frame {
    position: relative;
    max-width: 504px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.cb-journey-farmer-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Dynamic Hindi Badge Overlay over the Farmer chest */
.cb-farmer-pill-hi-overlay {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 380px;
    background: rgba(18, 50, 28, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 9999px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    z-index: 3;
}

.cb-fhi-col {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
}

.cb-fhi-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
}

/* 3-Pillar Deck */
.cb-journey-pillars-deck {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 28px;
}

.cb-journey-card {
    position: relative;
    border-radius: 20px;
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease,
                background 0.3s ease;
}

.cb-journey-card:hover {
    transform: translateY(-5px);
}

/* Card Themes */
.cb-journey-card.cb-card-green {
    background: radial-gradient(circle at top right, rgba(34, 197, 94, 0.12) 0%, rgba(10, 32, 18, 0.85) 60%), #0A2012;
    border: 1.2px solid rgba(74, 222, 128, 0.35);
    box-shadow: 0 8px 28px rgba(5, 20, 10, 0.35);
}

.cb-journey-card.cb-card-green:hover {
    border-color: rgba(74, 222, 128, 0.7);
    box-shadow: 0 16px 36px rgba(34, 197, 94, 0.18);
}

.cb-journey-card.cb-card-gold {
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.12) 0%, rgba(26, 26, 12, 0.85) 60%), #14180A;
    border: 1.2px solid rgba(245, 158, 11, 0.38);
    box-shadow: 0 8px 28px rgba(20, 18, 5, 0.35);
}

.cb-journey-card.cb-card-gold:hover {
    border-color: rgba(251, 191, 36, 0.75);
    box-shadow: 0 16px 36px rgba(245, 158, 11, 0.18);
}

.cb-journey-card.cb-card-blue {
    background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.12) 0%, rgba(10, 24, 32, 0.85) 60%), #081720;
    border: 1.2px solid rgba(14, 165, 233, 0.38);
    box-shadow: 0 8px 28px rgba(5, 15, 25, 0.35);
}

.cb-journey-card.cb-card-blue:hover {
    border-color: rgba(56, 189, 248, 0.75);
    box-shadow: 0 16px 36px rgba(14, 165, 233, 0.18);
}

.cb-journey-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cb-pillar-step-badge {
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 9999px;
}

.cb-badge-green {
    color: #86EFAC;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.4);
}

.cb-badge-gold {
    color: #FDE047;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.45);
}

.cb-badge-blue {
    color: #7DD3FC;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.4);
}

.cb-journey-icon-pod {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cb-journey-card:hover .cb-journey-icon-pod {
    transform: scale(1.08);
}

.cb-pod-green {
    background: rgba(34, 197, 94, 0.14);
    color: #4ADE80;
    border: 1px solid rgba(74, 222, 128, 0.35);
}

.cb-pod-gold {
    background: rgba(245, 158, 11, 0.14);
    color: #FCD34D;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.cb-pod-blue {
    background: rgba(14, 165, 233, 0.14);
    color: #7DD3FC;
    border: 1px solid rgba(14, 165, 233, 0.4);
}

.cb-journey-card-title {
    font-family: var(--cb-font-display);
    font-size: 1.25rem;
    font-weight: 850;
    color: #FFFFFF;
    margin: 0 0 10px;
    line-height: 1.25;
}

.cb-journey-card-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.58;
    margin: 0 0 18px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.cb-journey-card-footer {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.cb-pillar-action-pill {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 16px;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 750;
    text-decoration: none;
    transition: all 0.25s ease;
}

.cb-pill-green {
    background: rgba(16, 50, 26, 0.85);
    color: #FFFFFF !important;
    border: 1px solid rgba(74, 222, 128, 0.4);
}

.cb-pill-green:hover {
    background: #15803D;
    border-color: #4ADE80;
    transform: translateY(-2px);
}

.cb-pill-gold {
    background: rgba(45, 38, 15, 0.85);
    color: #FFFFFF !important;
    border: 1px solid rgba(245, 158, 11, 0.45);
}

.cb-pill-gold:hover {
    background: #B45309;
    border-color: #FBBF24;
    transform: translateY(-2px);
}

.cb-pill-blue {
    background: rgba(14, 38, 50, 0.85);
    color: #FFFFFF !important;
    border: 1px solid rgba(14, 165, 233, 0.45);
}

.cb-pill-blue:hover {
    background: #0284C7;
    border-color: #38BDF8;
    transform: translateY(-2px);
}

.cb-pill-arrow {
    font-size: 0.86rem;
    transition: transform 0.25s ease;
}

.cb-pillar-action-pill:hover .cb-pill-arrow {
    transform: translateX(3px);
}

/* Watermark illustration in card bottom-right */
.cb-card-watermark {
    position: absolute;
    bottom: -4px;
    right: 4px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.22;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cb-journey-card:hover .cb-card-watermark {
    opacity: 0.4;
    transform: scale(1.06);
}

.cb-wm-green { color: #4ADE80; }
.cb-wm-gold  { color: #F59E0B; }
.cb-wm-blue  { color: #0EA5E9; }

/* Bottom Perimeter: Store CTA Button & Chalk Scripts */
.cb-journey-bottom-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 10px;
}

.cb-journey-bottom-cta-wrap {
    display: flex;
    justify-content: flex-end;
    flex: 1;
    margin-right: 18px;
}

.cb-journey-bottom-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #06180E;
    border: 1.5px solid #EAB308;
    border-radius: 9999px;
    color: #FFFFFF !important;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
    transition: all 0.25s ease;
}

.cb-journey-bottom-store-btn:hover {
    background: #0D2C1A;
    border-color: #FBBF24;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(234, 179, 8, 0.25);
}

.cb-btn-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 8px #22C55E;
    animation: cb-pulse-green 2s infinite ease-in-out;
}

@keyframes cb-pulse-green {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.cb-btn-arrow-right {
    font-size: 0.9rem;
    color: #4ADE80;
    transition: transform 0.25s ease;
}

.cb-journey-bottom-store-btn:hover .cb-btn-arrow-right {
    transform: translateX(3px);
}

/* Chalk Handwriting Scripts */
.cb-journey-hand-script {
    display: flex;
    flex-direction: column;
    font-family: 'Caveat', cursive, sans-serif;
    color: #FFFFFF;
    line-height: 1.05;
    user-select: none;
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.cb-script-left {
    font-size: 1.35rem;
    font-weight: 700;
    transform: rotate(-7deg);
    margin-left: 10px;
}

.cb-script-right {
    font-size: 1.35rem;
    font-weight: 700;
    transform: rotate(6deg);
    margin-right: 10px;
}

.cb-script-leaf-ico {
    font-size: 1.1rem;
    vertical-align: middle;
}

.cb-script-underline-wrap {
    margin-top: 2px;
}

/* ────────────────────────────────────────────────────────────
   Responsive Rules for Section 8: Be a Part of Our Journey
   ──────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .cb-journey-foliage-left,
    .cb-script-left,
    .cb-script-right {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .cb-journey-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cb-journey-hero-right {
        justify-content: center;
    }

    .cb-journey-farmer-frame {
        max-width: 460px;
    }

    .cb-journey-pillars-deck {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}

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

    .cb-journey-bottom-row {
        justify-content: center;
    }

    .cb-journey-bottom-cta-wrap {
        margin-right: 0;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .cb-journey-cta-section {
        padding: 56px 0 64px;
    }

    .cb-journey-hero-title {
        font-size: 2.1rem;
    }

    .cb-journey-action-row {
        flex-direction: column;
        align-items: stretch;
    }

    .cb-journey-btn-white,
    .cb-journey-btn-trans,
    .cb-journey-btn-gold {
        justify-content: center;
        text-align: center;
    }

    .cb-journey-trust-strip {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cb-farmer-pill-hi-overlay {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 10px;
        border-radius: 12px;
    }
}

/* Backward-compatible aliases */
.cb-journey-content {
    display: block;
}
.cb-journey-right-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cb-journey-pillar-item {
    display: flex;
    flex-direction: column;
}
.cb-journey-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
}
.cb-journey-pillar-txt {
    font-size: 0.88rem;
}

/* ════════════════════════════════════════════════════════════════
   9. OFFICIAL CORPORATE PARENT ENTITY FOOTER
   ════════════════════════════════════════════════════════════════ */
.cb-corp-footer {
    background: #0B2215;
    color: #E2E8F0;
    position: relative;
    overflow: hidden;
    font-family: var(--cb-font-sans);
    border-top: 3px solid #D97706;
}

/* Top Mission & Heritage Accreditation Bar */
.cb-corp-footer-mission-bar {
    background: linear-gradient(90deg, #0E2B1A 0%, #153E26 50%, #0E2B1A 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
}

.cb-corp-mission-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cb-corp-mission-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 280px;
}

.cb-corp-govt-emblem {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
}

.cb-corp-mission-left strong {
    display: block;
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.cb-corp-mission-left p {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(226, 232, 240, 0.82);
    line-height: 1.4;
}

.cb-corp-mission-left p strong {
    display: inline;
    color: #FBBF24;
    font-weight: 700;
}

.cb-footer-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #D97706, #B45309);
    color: #FFFFFF !important;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.cb-footer-store-btn:hover {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(217, 119, 6, 0.5);
    color: #FFFFFF !important;
}

/* Main 5-Column Corporate Navigation Body */
.cb-corp-footer-body {
    padding: 54px 0 40px;
}

.cb-corp-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.95fr 0.95fr 1.25fr 1.05fr;
    gap: 32px;
}

.cb-corp-col {
    display: flex;
    flex-direction: column;
}

/* Col 1: Brand & Statutory Pills */
.cb-corp-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 14px;
}

.cb-corp-footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #FFFFFF;
    padding: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    object-fit: contain;
}

.cb-corp-brand-main {
    display: block;
    font-family: var(--cb-font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
}

.cb-corp-brand-sub {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: #34D399;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cb-corp-lead-desc {
    font-size: 0.83rem;
    color: rgba(226, 232, 240, 0.78);
    line-height: 1.6;
    margin: 0 0 16px;
}

.cb-corp-statutory-tokens {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cb-stat-token-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cb-stat-token-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #34D399;
    transform: translateX(2px);
}

.cb-stat-token-lbl {
    font-size: 0.68rem;
    font-weight: 800;
    color: #FBBF24;
    text-transform: uppercase;
    flex-shrink: 0;
}

.cb-stat-token-code {
    font-family: 'SFMono-Regular', Consolas, Menlo, monospace;
    font-size: 0.75rem;
    color: #FFFFFF;
    font-weight: 700;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cb-copy-icon-micro {
    font-size: 0.76rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.cb-stat-token-item:hover .cb-copy-icon-micro {
    opacity: 1;
}

.cb-stat-meta-row {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    color: rgba(226, 232, 240, 0.62);
    margin-top: 3px;
}

/* Col Headings */
.cb-corp-col-heading {
    font-family: var(--cb-font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 18px;
    position: relative;
    padding-bottom: 8px;
    letter-spacing: 0.02em;
}

.cb-corp-col-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 26px;
    height: 2px;
    background: #34D399;
    border-radius: 2px;
}

/* Links Columns */
.cb-corp-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cb-corp-links a {
    color: rgba(226, 232, 240, 0.75);
    text-decoration: none;
    font-size: 0.84rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.cb-link-arrow {
    color: #34D399;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.cb-corp-links a:hover {
    color: #FFFFFF;
    transform: translateX(3px);
}

.cb-corp-links a:hover .cb-link-arrow {
    transform: translateX(2px);
    color: #FBBF24;
}

/* Col 4: Address Card & Desk */
.cb-corp-address-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 13px;
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.cb-corp-addr-icon {
    color: #34D399;
    flex-shrink: 0;
    margin-top: 2px;
}

.cb-corp-addr-txt {
    font-size: 0.78rem;
    color: rgba(226, 232, 240, 0.85);
    line-height: 1.5;
}

.cb-corp-addr-txt strong {
    color: #FFFFFF;
    display: block;
    margin-bottom: 3px;
}

.cb-corp-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.cb-corp-contact-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.81rem;
    color: rgba(226, 232, 240, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
}

.cb-corp-contact-list a svg {
    flex-shrink: 0;
    color: #34D399;
}

.cb-corp-contact-list a:hover {
    color: #34D399;
    transform: translateX(2px);
}

/* Col 5: Accreditations & Farmer Seals */
.cb-corp-seals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.cb-corp-seal-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 9px 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3px;
    transition: all 0.2s ease;
}

.cb-corp-seal-badge:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(52, 211, 153, 0.4);
    transform: translateY(-2px);
}

.cb-seal-ico {
    font-size: 1.2rem;
    line-height: 1;
}

.cb-corp-seal-badge strong {
    font-size: 0.68rem;
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.2;
    display: block;
}

.cb-corp-seal-badge span {
    font-size: 0.6rem;
    color: rgba(226, 232, 240, 0.6);
    display: block;
}

.cb-corp-cursive-signoff {
    font-family: var(--cb-font-script);
    font-size: 1.45rem;
    font-weight: 700;
    color: #F59E0B;
    line-height: 1.25;
    margin-top: 10px;
    transform: rotate(-2deg);
}

/* Statutory Transparency & Legal Lineage Disclaimer */
.cb-corp-legal-disclaimer {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 34px;
}

.cb-corp-legal-disclaimer p {
    margin: 0;
    font-size: 0.77rem;
    color: rgba(226, 232, 240, 0.68);
    line-height: 1.65;
}

.cb-corp-legal-disclaimer strong {
    color: #FBBF24;
}

/* Bottom Copyright & Policy Strip */
.cb-corp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0 28px;
    background: rgba(0, 0, 0, 0.22);
}

.cb-corp-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.cb-corp-copyright {
    font-size: 0.79rem;
    color: rgba(226, 232, 240, 0.65);
}

.cb-corp-copyright strong {
    color: #FFFFFF;
}

.cb-corp-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.79rem;
    flex-wrap: wrap;
}

.cb-corp-bottom-links a {
    color: rgba(226, 232, 240, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cb-corp-bottom-links a:hover {
    color: #34D399;
}

.cb-corp-bottom-links span {
    color: rgba(255, 255, 255, 0.2);
}

/* ════════════════════════════════════════════════════════════════
   (Consolidated Responsive Media System is positioned at the bottom of stylesheet for complete cascading override)
   ════════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════════
   SKELETON LOADING SYSTEM
   ════════════════════════════════════════════════════════════════ */

/* Page-wide loading overlay — shown while JS/assets load */
.cb-page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #FAF8F2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}
.cb-page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Animated logo in loader */
.cb-loader-logo {
    height: 80px;
    width: auto;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 2px 8px rgba(18,56,31,0.15));
    animation: cbLoaderPulse 1.6s ease-in-out infinite;
}
@keyframes cbLoaderPulse {
    0%, 100% { opacity: 1; transform: scale(1);    }
    50%       { opacity: 0.6; transform: scale(0.96); }
}

/* Loading bar */
.cb-loader-bar {
    width: 160px;
    height: 3px;
    background: var(--cb-border-subtle, #E8E3D7);
    border-radius: 9999px;
    overflow: hidden;
}
.cb-loader-bar-fill {
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, #194D2B 0%, #D97706 60%, #194D2B 100%);
    background-size: 200% 100%;
    border-radius: 9999px;
    animation: cbLoaderSlide 1.3s ease-in-out infinite;
}
@keyframes cbLoaderSlide {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* Generic skeleton shimmer atom */
.cb-skeleton {
    background: linear-gradient(90deg,
        #ede9e0 25%,
        #f5f3ec 50%,
        #ede9e0 75%
    );
    background-size: 200% 100%;
    animation: cbSkeletonShimmer 1.5s ease-in-out infinite;
    border-radius: 8px;
}
@keyframes cbSkeletonShimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Skeleton shapes */
.cb-skel-text    { height: 14px; border-radius: 4px; margin-bottom: 8px; }
.cb-skel-title   { height: 32px; border-radius: 6px; margin-bottom: 12px; }
.cb-skel-card    { height: 160px; border-radius: 16px; }
.cb-skel-img     { aspect-ratio: 4/3; border-radius: 16px; }
.cb-skel-avatar  { width: 56px; height: 56px; border-radius: 50%; }
.cb-skel-pill    { height: 32px; width: 120px; border-radius: 9999px; }

/* Dark mode skeleton */
[data-theme="dark"] .cb-skeleton,
body.dark-mode .cb-skeleton {
    background: linear-gradient(90deg,
        #1a2e20 25%,
        #21392a 50%,
        #1a2e20 75%
    );
    background-size: 200% 100%;
    animation: cbSkeletonShimmer 1.5s ease-in-out infinite;
}

/* ════════════════════════════════════════════════════════════════
   SCROLL-REVEAL ANIMATION SYSTEM ("BLUR WALA" PREMIUM LOADING)
   Smooth blur-to-focus + slide-up on viewport scroll
   ════════════════════════════════════════════════════════════════ */

/* Elements start hidden with blur & translateY until .cb-revealed is added by JS */
.cb-reveal {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(10px);
    -webkit-filter: blur(10px);
    will-change: opacity, transform, filter;
    transition:
        opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.cb-reveal.cb-revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    -webkit-filter: blur(0);
}

/* Stagger delays for sibling reveals */
.cb-reveal[data-delay="1"], .cb-reveal-left[data-delay="1"], .cb-reveal-right[data-delay="1"], .cb-reveal-scale[data-delay="1"] { transition-delay: 0.08s; }
.cb-reveal[data-delay="2"], .cb-reveal-left[data-delay="2"], .cb-reveal-right[data-delay="2"], .cb-reveal-scale[data-delay="2"] { transition-delay: 0.16s; }
.cb-reveal[data-delay="3"], .cb-reveal-left[data-delay="3"], .cb-reveal-right[data-delay="3"], .cb-reveal-scale[data-delay="3"] { transition-delay: 0.24s; }
.cb-reveal[data-delay="4"], .cb-reveal-left[data-delay="4"], .cb-reveal-right[data-delay="4"], .cb-reveal-scale[data-delay="4"] { transition-delay: 0.32s; }
.cb-reveal[data-delay="5"], .cb-reveal-left[data-delay="5"], .cb-reveal-right[data-delay="5"], .cb-reveal-scale[data-delay="5"] { transition-delay: 0.40s; }
.cb-reveal[data-delay="6"], .cb-reveal-left[data-delay="6"], .cb-reveal-right[data-delay="6"], .cb-reveal-scale[data-delay="6"] { transition-delay: 0.48s; }

/* Directional variants with blur */
.cb-reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    filter: blur(10px);
    -webkit-filter: blur(10px);
    will-change: opacity, transform, filter;
    transition:
        opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.cb-reveal-right {
    opacity: 0;
    transform: translateX(32px);
    filter: blur(10px);
    -webkit-filter: blur(10px);
    will-change: opacity, transform, filter;
    transition:
        opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.cb-reveal-left.cb-revealed,
.cb-reveal-right.cb-revealed {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
    -webkit-filter: blur(0);
}

/* Scale-in variant with blur for cards and badges */
.cb-reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    filter: blur(12px);
    -webkit-filter: blur(12px);
    will-change: opacity, transform, filter;
    transition:
        opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.cb-reveal-scale.cb-revealed {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    -webkit-filter: blur(0);
}

/* Mobile 60fps performance tuning: softer blur radius */
@media (max-width: 640px) {
    .cb-reveal,
    .cb-reveal-left,
    .cb-reveal-right {
        filter: blur(6px);
        -webkit-filter: blur(6px);
    }
    .cb-reveal-scale {
        filter: blur(8px);
        -webkit-filter: blur(8px);
    }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .cb-reveal,
    .cb-reveal-left,
    .cb-reveal-right,
    .cb-reveal-scale {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        -webkit-filter: none !important;
        transition: none !important;
    }
    .cb-brand-logo-link,
    .cb-loader-logo {
        animation: none !important;
    }
    .cb-page-loader.loaded {
        display: none;
    }
}

/* ════════════════════════════════════════════════════════════════
   NAV LINK STAGGER ENTRANCE
   ════════════════════════════════════════════════════════════════ */
.cb-nav-links li {
    opacity: 0;
    animation: cbNavItemIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.cb-nav-links li:nth-child(1) { animation-delay: 0.08s; }
.cb-nav-links li:nth-child(2) { animation-delay: 0.15s; }
.cb-nav-links li:nth-child(3) { animation-delay: 0.22s; }
.cb-nav-links li:nth-child(4) { animation-delay: 0.29s; }
.cb-nav-links li:nth-child(5) { animation-delay: 0.36s; }
.cb-nav-links li:nth-child(6) { animation-delay: 0.43s; }
.cb-nav-links li:nth-child(7) { animation-delay: 0.50s; }
.cb-nav-links li:nth-child(8) { animation-delay: 0.57s; }
@keyframes cbNavItemIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════════════
   PARENT COMPANY TOP RIBBON
   ════════════════════════════════════════════════════════════════ */
.cb-top-ribbon {
    background: #0D2816;
    color: #F8FAF7;
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(217, 119, 6, 0.35);
    position: relative;
    z-index: 101;
}

.cb-ribbon-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.cb-ribbon-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cb-ribbon-badge {
    background: #D97706;
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cb-ribbon-text {
    color: #D1DED5;
    line-height: 1.4;
}

.cb-ribbon-text strong {
    color: #FFFFFF;
    font-weight: 700;
}

.cb-ribbon-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    text-decoration: none;
    padding: 4px 14px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cb-ribbon-store-btn:hover {
    background: #D97706;
    border-color: #D97706;
    color: #FFFFFF;
    transform: translateX(2px);
}

/* ════════════════════════════════════════════════════════════════
   HERO SUBHEADING & BRAND HIGHLIGHT
   ════════════════════════════════════════════════════════════════ */
.cb-hero-subheading {
    display: block;
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    font-weight: 600;
    color: var(--cb-green-primary);
    margin-top: 10px;
    letter-spacing: -0.01em;
}

.cb-highlight-brand {
    color: #882408;
    background: linear-gradient(135deg, #882408, #D97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.cb-hero-btn-store {
    background: linear-gradient(135deg, #882408, #C25E1A);
    color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(136, 36, 8, 0.35);
}

.cb-hero-btn-store:hover {
    background: linear-gradient(135deg, #6B1C05, #A84E12);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(136, 36, 8, 0.45);
}

/* ════════════════════════════════════════════════════════════════
   PARENT & BRAND ECOSYSTEM SECTION (SEED TO SHELF)
   Matches media_1789557446807.png High-Fidelity Design
   ════════════════════════════════════════════════════════════════ */
.cb-ecosystem-section {
    padding: 84px 0 92px;
    background: var(--cb-bg-cream);
    border-top: 1px solid var(--cb-border-subtle);
    border-bottom: 1px solid var(--cb-border-subtle);
    position: relative;
    overflow: hidden;
}

/* Ambient Side Callouts & Millet Stalks */
.cb-eco-ambient-callout {
    position: absolute;
    top: 36px;
    z-index: 2;
    pointer-events: none;
}

.cb-eco-callout-left {
    left: 24px;
}

.cb-eco-callout-right {
    right: 24px;
}

.cb-eco-decor-img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(18, 56, 31, 0.08));
}

.cb-eco-millet-corner-left {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    max-height: 220px;
    width: auto;
    opacity: 0.92;
}

.cb-eco-millet-corner-right {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
    max-height: 220px;
    width: auto;
    opacity: 0.92;
}

/* Centered Header */
.cb-eco-header-center {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 46px;
    position: relative;
    z-index: 3;
}

.cb-eco-eyebrow-wrap {
    margin-bottom: 14px;
}

.cb-eco-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: #E8F3EB;
    color: #194D2B;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(25, 77, 43, 0.12);
}

.cb-eco-eyebrow-icon {
    font-size: 0.9rem;
}

.cb-eco-main-title {
    font-family: var(--cb-font-display);
    font-size: clamp(2.1rem, 3.8vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin: 0 0 14px;
}

.cb-eco-title-green {
    color: #12381F;
}

.cb-eco-title-rust {
    color: #B93815;
}

.cb-eco-subtitle {
    font-size: 0.96rem;
    line-height: 1.65;
    color: var(--cb-text-muted);
    max-width: 720px;
    margin: 0 auto;
}

/* 4-Card Connected Chain Grid */
.cb-ecosystem-chain-wrap {
    position: relative;
    z-index: 3;
    margin-bottom: 40px;
}

.cb-ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

/* Ecosystem Card */
.cb-ecosystem-card {
    background: var(--cb-bg-white);
    border: 1px solid var(--cb-border-card);
    border-radius: 22px;
    padding: 22px 18px 18px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 6px 18px rgba(18, 56, 31, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    min-height: 100%;
}

.cb-ecosystem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(18, 56, 31, 0.08);
    border-color: rgba(42, 110, 63, 0.3);
}

/* Top Badge & Number */
.cb-eco-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 14px;
}

.cb-eco-step-badge {
    background: #194D2B;
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cb-eco-step-num {
    font-family: var(--cb-font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: #CBD5E1;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Icon Box */
.cb-eco-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #E8F3EB;
    color: #194D2B;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

/* Card Title */
.cb-eco-card-title {
    font-family: var(--cb-font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--cb-green-dark);
    letter-spacing: -0.015em;
    margin: 0 0 10px;
    line-height: 1.3;
}

/* Card Description */
.cb-eco-card-desc {
    font-size: 0.84rem;
    color: var(--cb-text-muted);
    line-height: 1.55;
    margin: 0 0 14px;
    flex-grow: 1;
}

/* Card Visual / Image */
.cb-eco-card-visual {
    margin-top: auto;
    width: 100%;
    height: 110px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
    background: #F1EFE9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cb-eco-step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.cb-ecosystem-card:hover .cb-eco-step-img {
    transform: scale(1.05);
}

/* Bottom Tag */
.cb-eco-tag-wrap {
    width: 100%;
}

.cb-eco-card-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 7px 12px;
    background: #EBF3ED;
    color: #194D2B;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.25s ease;
}

.cb-eco-tag-icon {
    font-size: 0.88rem;
    line-height: 1;
}

/* Card 3 (Highlight Flagship) */
.cb-ecosystem-card.highlight {
    background: linear-gradient(175deg, #FFFFFF 0%, #FFFBF7 100%);
    border: 1.5px solid #EA580C;
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.12);
}

.cb-ecosystem-card.highlight:hover {
    box-shadow: 0 16px 36px rgba(234, 88, 12, 0.2);
    border-color: #C2410C;
}

.cb-ecosystem-card.highlight .cb-eco-step-badge {
    background: #9A3412;
}

.cb-ecosystem-card.highlight .cb-eco-icon-wrap {
    background: #FFEDD5;
    color: #C2410C;
}

.cb-ecosystem-card.highlight .cb-eco-num-terracotta {
    color: #FDBA74;
}

.cb-eco-tag-flagship {
    background: #FFF7ED;
    color: #9A3412;
    border: 1px solid #FFEDD5;
}

/* Step Connector Arrow */
.cb-eco-connector-arrow {
    position: absolute;
    right: -20px;
    top: 48%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border: 1.5px solid #2A6E3F;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2A6E3F;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    z-index: 6;
    pointer-events: none;
}

/* Bottom Bar: Stats + Store CTA */
.cb-eco-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 28px;
    background: #FFFFFF;
    border: 1px solid var(--cb-border-card);
    border-radius: 9999px;
    box-shadow: 0 8px 24px rgba(18, 56, 31, 0.05);
    position: relative;
    z-index: 3;
}

.cb-eco-stats-row {
    display: flex;
    align-items: center;
    gap: 28px;
}

.cb-eco-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cb-eco-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #E8F3EB;
    color: #194D2B;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cb-eco-stat-text {
    display: flex;
    flex-direction: column;
}

.cb-eco-stat-val {
    font-family: var(--cb-font-display);
    font-size: 1.12rem;
    font-weight: 800;
    color: #12381F;
    line-height: 1.15;
}

.cb-eco-stat-lbl {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--cb-text-muted);
}

.cb-eco-stat-divider {
    width: 1px;
    height: 30px;
    background: var(--cb-border-subtle);
}

.cb-eco-btn-store {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #0D3B1C;
    color: #FFFFFF !important;
    border-radius: 9999px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(13, 59, 28, 0.25);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}

.cb-eco-btn-store:hover {
    transform: translateY(-2px);
    background: #072813;
    box-shadow: 0 10px 24px rgba(13, 59, 28, 0.35);
    color: #FFFFFF !important;
}

.cb-store-cart-icon {
    display: inline-flex;
    align-items: center;
}

.cb-store-arrow-icon {
    transition: transform 0.25s ease;
}

.cb-eco-btn-store:hover .cb-store-arrow-icon {
    transform: translateX(4px);
}

/* Dark Mode Overrides for Ecosystem */
[data-theme="dark"] .cb-ecosystem-card,
body.dark-mode .cb-ecosystem-card {
    background: var(--cb-bg-white);
    border-color: var(--cb-border-card);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .cb-eco-eyebrow-pill,
body.dark-mode .cb-eco-eyebrow-pill {
    background: rgba(37, 102, 59, 0.25);
    color: #4ADE80;
    border-color: rgba(74, 222, 128, 0.2);
}

[data-theme="dark"] .cb-eco-title-green,
body.dark-mode .cb-eco-title-green {
    color: var(--cb-text-dark);
}

[data-theme="dark"] .cb-eco-title-rust,
body.dark-mode .cb-eco-title-rust {
    color: #FB923C;
}

[data-theme="dark"] .cb-eco-icon-wrap,
body.dark-mode .cb-eco-icon-wrap {
    background: rgba(37, 102, 59, 0.3);
    color: #4ADE80;
}

[data-theme="dark"] .cb-eco-card-title,
body.dark-mode .cb-eco-card-title {
    color: var(--cb-text-dark);
}

[data-theme="dark"] .cb-eco-card-tag,
body.dark-mode .cb-eco-card-tag {
    background: rgba(37, 102, 59, 0.2);
    color: #86EFAC;
}

[data-theme="dark"] .cb-ecosystem-card.highlight,
body.dark-mode .cb-ecosystem-card.highlight {
    background: linear-gradient(175deg, #1A281E 0%, #201E1A 100%);
    border-color: #EA580C;
}

[data-theme="dark"] .cb-eco-tag-flagship,
body.dark-mode .cb-eco-tag-flagship {
    background: rgba(234, 88, 12, 0.2);
    color: #FDBA74;
    border-color: rgba(234, 88, 12, 0.3);
}

[data-theme="dark"] .cb-eco-connector-arrow,
body.dark-mode .cb-eco-connector-arrow {
    background: #162B1F;
    border-color: #3E945A;
    color: #4ADE80;
}

[data-theme="dark"] .cb-eco-bottom-bar,
body.dark-mode .cb-eco-bottom-bar {
    background: #162B1F;
    border-color: var(--cb-border-card);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .cb-eco-stat-icon,
body.dark-mode .cb-eco-stat-icon {
    background: rgba(37, 102, 59, 0.3);
    color: #4ADE80;
}

[data-theme="dark"] .cb-eco-stat-val,
body.dark-mode .cb-eco-stat-val {
    color: var(--cb-text-dark);
}

[data-theme="dark"] .cb-eco-stat-divider,
body.dark-mode .cb-eco-stat-divider {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Overrides for Ecosystem */
@media (max-width: 1200px) {
    .cb-eco-ambient-callout,
    .cb-eco-millet-corner-left,
    .cb-eco-millet-corner-right {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .cb-ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .cb-ecosystem-card:nth-child(2) .cb-eco-connector-arrow,
    .cb-ecosystem-card:nth-child(4) .cb-eco-connector-arrow {
        display: none;
    }

    .cb-eco-bottom-bar {
        border-radius: 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 22px;
    }

    .cb-eco-stats-row {
        justify-content: space-around;
    }

    .cb-eco-btn-store {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .cb-ecosystem-section {
        padding: 56px 0 64px;
    }

    .cb-ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cb-eco-connector-arrow {
        display: none !important;
    }

    .cb-ecosystem-card {
        padding: 22px 18px;
    }

    .cb-eco-card-visual {
        height: 140px;
    }

    .cb-eco-stats-row {
        flex-direction: row;
        justify-content: space-between;
        gap: 12px;
        align-items: center;
    }

    .cb-eco-stat-divider {
        display: none;
    }
}

/* ════════════════════════════════════════════════════════════════
   FLAGSHIP BRAND PRODUCT SHOWCASE CARDS
   ════════════════════════════════════════════════════════════════ */
.cb-products-preview-wrap {
    margin-top: 36px;
}

.cb-products-preview-title {
    font-family: var(--cb-font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--cb-green-dark);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cb-products-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cb-prod-card {
    background: #FFFFFF;
    border: 1px solid var(--cb-border-subtle);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.cb-prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(18, 56, 31, 0.12);
    border-color: #D97706;
}

.cb-prod-img-wrap {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    background: #FAF8F2;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-prod-img-wrap img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.cb-prod-card:hover .cb-prod-img-wrap img {
    transform: scale(1.06);
}

.cb-prod-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #882408;
    background: #FEE2E2;
    padding: 2px 6px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 6px;
}

.cb-prod-name {
    font-family: var(--cb-font-display);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--cb-green-dark);
    margin: 0 0 4px;
    line-height: 1.3;
}

.cb-prod-sub {
    font-size: 0.78rem;
    color: var(--cb-text-muted);
    margin-bottom: 10px;
    flex-grow: 1;
}

.cb-prod-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--cb-green-accent);
    padding-top: 8px;
    border-top: 1px dashed var(--cb-border-subtle);
}

.cb-prod-card:hover .cb-prod-action {
    color: #882408;
}

/* ════════════════════════════════════════════════════════════════
   FLOATING QUICK-SWITCH PILL (STOREFRONT TOGGLE)
   ════════════════════════════════════════════════════════════════ */
.cb-floating-store-pill {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, #12381F 0%, #194D2B 100%);
    color: #FFFFFF !important;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--cb-font-sans);
    font-size: 0.86rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(18, 56, 31, 0.4);
    border: 2px solid #D97706;
    z-index: 999;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.cb-floating-store-pill:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(18, 56, 31, 0.55);
    background: linear-gradient(135deg, #882408 0%, #C25E1A 100%);
}

.cb-floating-pulse {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: cbPulseGreen 1.8s infinite;
}

@keyframes cbPulseGreen {
    0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70%  { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ════════════════════════════════════════════════════════════════
   5B. FARMER LEADERSHIP & GOVERNANCE SECTION
   High-Fidelity Match to media_1789557555856.jpg
   ════════════════════════════════════════════════════════════════ */
.cb-leadership-section {
    padding: 88px 0 96px;
    background: #FAFBF8;
    position: relative;
    overflow: hidden;
}

/* Ambient Callouts and Millet Stalk Decorations */
.cb-lead-decor-tl {
    position: absolute;
    top: 48px;
    left: max(16px, calc((100vw - 1240px) / 2 - 30px));
    z-index: 2;
    pointer-events: none;
    max-width: 140px;
}

.cb-lead-decor-tr {
    position: absolute;
    top: 52px;
    right: max(16px, calc((100vw - 1240px) / 2 - 30px));
    z-index: 2;
    pointer-events: none;
    max-width: 145px;
}

.cb-lead-decor-ml {
    position: absolute;
    top: 470px;
    left: max(0px, calc((100vw - 1320px) / 2 - 80px));
    z-index: 2;
    pointer-events: none;
    max-width: 210px;
}

.cb-lead-decor-mr {
    position: absolute;
    top: 510px;
    right: max(16px, calc((100vw - 1240px) / 2 - 30px));
    z-index: 2;
    pointer-events: none;
    max-width: 175px;
}

.cb-lead-decor-br {
    display: none !important;
}

.cb-lead-decor-img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(18, 56, 31, 0.05));
    user-select: none;
    -webkit-user-select: none;
}

/* Top Header: Eyebrow, Main Title, Subtitle */
.cb-gov-header-center {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 3;
}

.cb-gov-eyebrow-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.cb-gov-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #113B1F;
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 9999px;
    box-shadow: 0 4px 14px rgba(17, 59, 31, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cb-gov-eyebrow-icon {
    font-size: 0.88rem;
    line-height: 1;
}

.cb-gov-main-heading {
    font-family: var(--cb-font-sans);
    font-size: clamp(2.1rem, 3.8vw, 2.85rem);
    font-weight: 900;
    line-height: 1.16;
    margin: 0 0 16px;
    letter-spacing: -0.025em;
}

.cb-gov-title-green {
    color: #0E2E1B;
}

.cb-gov-title-rust {
    color: #C84E18;
}

.cb-gov-subtitle {
    font-size: 0.95rem;
    line-height: 1.62;
    color: #55665B;
    max-width: 760px;
    margin: 0 auto;
}

/* 5 Quick Trust Metrics Strip */
.cb-gov-metrics-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 34px;
    padding: 14px 20px;
    margin: 28px auto 44px;
    position: relative;
    z-index: 3;
}

.cb-gov-metric-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cb-gov-metric-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #D9EFE0;
    color: #1E6B37;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(30, 107, 55, 0.1);
    border: 1px solid rgba(30, 107, 55, 0.15);
}

.cb-gov-metric-text {
    display: flex;
    flex-direction: column;
}

.cb-gov-metric-val {
    font-size: 1.05rem;
    font-weight: 850;
    color: #0E2E1B;
    line-height: 1.18;
}

.cb-gov-metric-lbl {
    font-size: 0.74rem;
    font-weight: 600;
    color: #5B6B60;
    line-height: 1.25;
}

/* 3 Core Governance Principles Strip */
.cb-governance-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
    position: relative;
    z-index: 3;
}

.cb-gov-pillar {
    background: #FFFFFF;
    border: 1.5px solid #E5ECE7;
    border-radius: 20px;
    padding: 24px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 4px 20px rgba(18, 56, 31, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cb-gov-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(18, 56, 31, 0.08);
    border-color: rgba(39, 110, 63, 0.35);
}

.cb-gov-ico {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: #D9EFE0;
    color: #1E6B37;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-gov-ico.cb-ico-emerald {
    background: #D9EFE0;
    color: #1E6B37;
}

.cb-gov-ico.cb-ico-gold {
    background: #FCEBD7;
    color: #C84E18;
}

.cb-gov-text h4 {
    font-size: 1.02rem;
    font-weight: 850;
    color: #0E2E1B;
    margin: 0 0 5px 0;
    line-height: 1.28;
}

.cb-gov-text p {
    font-size: 0.82rem;
    line-height: 1.5;
    color: #55665B;
    margin: 0;
}

/* Sub-Section Header: Meet Our Leadership */
.cb-leadership-sub-header {
    text-align: center;
    margin-bottom: 34px;
    position: relative;
    z-index: 3;
}

.cb-lead-eyebrow-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 8px;
}

.cb-lead-line {
    width: 44px;
    height: 1.5px;
    background: #BDCEC3;
}

.cb-lead-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    color: #1E6B37;
    text-transform: uppercase;
}

.cb-eyebrow-leaf {
    color: #1E6B37;
}

.cb-lead-sub-title {
    font-family: var(--cb-font-sans);
    font-size: clamp(1.85rem, 3.4vw, 2.4rem);
    font-weight: 900;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cb-lead-title-dark {
    color: #0E2E1B;
}

.cb-lead-title-accent {
    color: #C84E18;
}

.cb-lead-sub-desc {
    font-size: 0.95rem;
    font-weight: 600;
    color: #5B6B60;
    margin: 0;
}

/* Executive Leadership Spotlight (Promoter Director & CEO) */
.cb-leadership-exec-deck {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-bottom: 34px;
    position: relative;
    z-index: 3;
}

.cb-exec-card {
    background: #FFFFFF;
    border: 1.5px solid #E5ECE7;
    border-radius: 24px;
    padding: 18px 22px;
    display: flex;
    gap: 22px;
    align-items: stretch;
    box-shadow: 0 6px 26px rgba(18, 56, 31, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.cb-exec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(18, 56, 31, 0.1);
    border-color: rgba(39, 110, 63, 0.35);
}

.cb-exec-photo-wrap {
    width: 175px;
    min-width: 175px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.cb-exec-photo {
    width: 100%;
    height: 195px;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 16px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
    display: block;
    transition: transform 0.4s ease;
    background: #E8EDE8;
}

.cb-exec-card:hover .cb-exec-photo {
    transform: scale(1.03);
}

.cb-exec-photo-wrap .cb-exec-badge-pill {
    position: relative;
    margin-top: 10px;
    width: 100%;
    text-align: center;
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 8px;
    border-radius: 9999px;
    background: #0E2618;
    color: #6EE7B7;
    border: 1px solid rgba(110, 231, 183, 0.3);
    white-space: nowrap;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.cb-exec-photo-wrap .cb-exec-badge-pill.cb-pill-gold {
    color: #FDE68A;
    border-color: rgba(253, 230, 138, 0.35);
}

.cb-exec-content {
    padding: 4px 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cb-exec-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.cb-exec-name {
    font-family: var(--cb-font-sans);
    font-size: 1.25rem;
    font-weight: 850;
    color: #0E2E1B;
    margin: 0 0 2px 0;
    line-height: 1.25;
}

.cb-exec-designation {
    font-size: 0.78rem;
    font-weight: 700;
    color: #1E6B37;
}

.cb-exec-subrole {
    font-weight: 600;
    color: #5B6B60;
}

.cb-exec-din-chip {
    font-size: 0.66rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 11px;
    border-radius: 9999px;
    background: #E8F5E9;
    color: #1B5E20;
    border: 1px solid #C8E6C9;
    white-space: nowrap;
}

.cb-exec-din-chip.cb-chip-gold {
    background: #FEF3C7;
    color: #92400E;
    border-color: #FDE68A;
}

.cb-exec-bio {
    font-size: 0.8rem;
    line-height: 1.55;
    color: #526056;
    margin: 8px 0 14px 0;
    flex: 1;
}

.cb-exec-focus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.cb-exec-tag {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 7px;
    background: #F3EFE6;
    color: #2D3A31;
    border: 1px solid rgba(18, 56, 31, 0.08);
}

/* Functional Board of Directors Grid */
.cb-leadership-dir-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
    position: relative;
    z-index: 3;
}

.cb-dir-card {
    background: #FFFFFF;
    border: 1.5px solid #E5ECE7;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(18, 56, 31, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.cb-dir-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(18, 56, 31, 0.1);
    border-color: rgba(39, 110, 63, 0.32);
}

.cb-dir-photo-wrap {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #E8EDE8;
}

.cb-dir-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    transition: transform 0.4s ease;
}

.cb-dir-card:hover .cb-dir-photo {
    transform: scale(1.05);
}

.cb-dir-portfolio-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 9999px;
    background: rgba(14, 38, 24, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #52D88A;
    border: 1px solid rgba(82, 216, 138, 0.35);
    z-index: 2;
}

.cb-dir-portfolio-badge.cb-badge-teal {
    color: #5EEAD4;
    border-color: rgba(94, 234, 212, 0.35);
    background: rgba(10, 38, 40, 0.88);
}

.cb-dir-portfolio-badge.cb-badge-amber {
    color: #FCD34D;
    border-color: rgba(252, 211, 77, 0.35);
    background: rgba(46, 31, 10, 0.88);
}

.cb-dir-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cb-dir-name {
    font-family: var(--cb-font-sans);
    font-size: 1.1rem;
    font-weight: 850;
    color: #0E2E1B;
    margin: 0 0 2px 0;
    line-height: 1.25;
}

.cb-dir-role {
    font-size: 0.74rem;
    font-weight: 700;
    color: #1E6B37;
    margin-bottom: 8px;
    line-height: 1.35;
}

.cb-dir-desc {
    font-size: 0.75rem;
    line-height: 1.48;
    color: #55665B;
    margin: 0 0 14px 0;
    flex: 1;
}

.cb-dir-trust-tag {
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #15803D;
    background: #E8F5E9;
    padding: 4px 10px;
    border-radius: 8px;
    align-self: flex-start;
    margin-top: auto;
    border: 1px solid #C8E6C9;
}

/* Bottom Values Trust Strip */
.cb-lead-values-strip {
    background: #EBF3ED;
    border: 1.5px solid #D2E4D6;
    border-radius: 9999px;
    padding: 14px 36px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 920px;
    margin: 0 auto 36px;
    box-shadow: 0 4px 16px rgba(18, 56, 31, 0.04);
    position: relative;
    z-index: 3;
}

.cb-lead-value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 800;
    color: #164E2A;
}

.cb-lead-val-icon {
    font-size: 1.05rem;
}

.cb-lead-val-text {
    white-space: nowrap;
}

.cb-lead-val-divider {
    width: 1.5px;
    height: 18px;
    background: #C2D8C7;
}

/* Statutory Governance Trust Footer Bar */
.cb-gov-footer-bar {
    background: #0E2618;
    border-radius: 20px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 8px 30px rgba(11, 38, 20, 0.12);
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 3;
}

.cb-gov-footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.cb-gov-shield-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(110, 231, 183, 0.15);
    color: #6EE7B7;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(110, 231, 183, 0.25);
}

.cb-gov-footer-heading {
    font-size: 0.96rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 4px;
}

.cb-gov-footer-sub {
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.cb-gov-footer-bar .cb-btn-white-pill {
    padding: 10px 20px;
    font-size: 0.84rem;
    flex-shrink: 0;
}

/* Dark Mode Overrides for Leadership & Governance Section */
body.dark-mode .cb-leadership-section,
[data-theme="dark"] .cb-leadership-section {
    background: #091910;
}

body.dark-mode .cb-gov-title-green,
[data-theme="dark"] .cb-gov-title-green {
    color: #F1F5F9;
}

body.dark-mode .cb-gov-title-rust,
[data-theme="dark"] .cb-gov-title-rust {
    color: #FB923C;
}

body.dark-mode .cb-gov-subtitle,
[data-theme="dark"] .cb-gov-subtitle {
    color: #94A3B8;
}

body.dark-mode .cb-gov-metric-icon,
[data-theme="dark"] .cb-gov-metric-icon {
    background: rgba(30, 107, 55, 0.25);
    color: #6EE7B7;
    border-color: rgba(110, 231, 183, 0.25);
}

body.dark-mode .cb-gov-metric-val,
[data-theme="dark"] .cb-gov-metric-val {
    color: #F1F5F9;
}

body.dark-mode .cb-gov-metric-lbl,
[data-theme="dark"] .cb-gov-metric-lbl {
    color: #94A3B8;
}

body.dark-mode .cb-gov-pillar,
[data-theme="dark"] .cb-gov-pillar {
    background: #0D2015;
    border-color: rgba(255, 255, 255, 0.09);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

body.dark-mode .cb-gov-text h4,
[data-theme="dark"] .cb-gov-text h4 {
    color: #F1F5F9;
}

body.dark-mode .cb-gov-text p,
[data-theme="dark"] .cb-gov-text p {
    color: #94A3B8;
}

body.dark-mode .cb-lead-title-dark,
[data-theme="dark"] .cb-lead-title-dark {
    color: #F1F5F9;
}

body.dark-mode .cb-lead-title-accent,
[data-theme="dark"] .cb-lead-title-accent {
    color: #FB923C;
}

body.dark-mode .cb-lead-sub-desc,
[data-theme="dark"] .cb-lead-sub-desc {
    color: #94A3B8;
}

body.dark-mode .cb-lead-line,
[data-theme="dark"] .cb-lead-line {
    background: rgba(255, 255, 255, 0.15);
}

body.dark-mode .cb-exec-card,
[data-theme="dark"] .cb-exec-card {
    background: #0D2015;
    border-color: rgba(255, 255, 255, 0.09);
    box-shadow: 0 6px 26px rgba(0, 0, 0, 0.25);
}

body.dark-mode .cb-exec-name,
[data-theme="dark"] .cb-exec-name {
    color: #F1F5F9;
}

body.dark-mode .cb-exec-bio,
[data-theme="dark"] .cb-exec-bio {
    color: #94A3B8;
}

body.dark-mode .cb-exec-tag,
[data-theme="dark"] .cb-exec-tag {
    background: rgba(255, 255, 255, 0.06);
    color: #CBD5E1;
    border-color: rgba(255, 255, 255, 0.09);
}

body.dark-mode .cb-dir-card,
[data-theme="dark"] .cb-dir-card {
    background: #0D2015;
    border-color: rgba(255, 255, 255, 0.09);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
}

body.dark-mode .cb-dir-name,
[data-theme="dark"] .cb-dir-name {
    color: #F1F5F9;
}

body.dark-mode .cb-dir-desc,
[data-theme="dark"] .cb-dir-desc {
    color: #94A3B8;
}

body.dark-mode .cb-dir-trust-tag,
[data-theme="dark"] .cb-dir-trust-tag {
    background: rgba(34, 197, 94, 0.15);
    color: #86EFAC;
    border-color: rgba(134, 239, 172, 0.3);
}

body.dark-mode .cb-lead-values-strip,
[data-theme="dark"] .cb-lead-values-strip {
    background: #0D2015;
    border-color: rgba(255, 255, 255, 0.09);
}

body.dark-mode .cb-lead-value-item,
[data-theme="dark"] .cb-lead-value-item {
    color: #6EE7B7;
}

body.dark-mode .cb-lead-val-divider,
[data-theme="dark"] .cb-lead-val-divider {
    background: rgba(255, 255, 255, 0.15);
}

/* Backward compatibility aliases */
.cb-leadership-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.cb-leader-card {
    background: var(--cb-bg-cream);
    border: 1px solid var(--cb-border-subtle);
    border-radius: 18px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.cb-leader-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--cb-shadow-md);
    border-color: var(--cb-green-accent);
}

.cb-leader-photo-wrap {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 12px;
    overflow: hidden;
    border: 3px solid var(--cb-green-light);
    box-shadow: 0 4px 12px rgba(18, 56, 31, 0.1);
}

.cb-leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cb-leader-name {
    font-family: var(--cb-font-display);
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--cb-green-dark);
    margin: 0 0 4px;
}

.cb-leader-role {
    font-size: 0.76rem;
    color: var(--cb-text-muted);
    line-height: 1.3;
}

.cb-leader-badge {
    display: inline-block;
    font-size: 0.64rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--cb-green-accent);
    background: var(--cb-green-light);
    padding: 2px 8px;
    border-radius: 999px;
    margin-top: 6px;
}

/* ════════════════════════════════════════════════════════════════
   10. CONSOLIDATED MOBILE & TABLET RESPONSIVE SYSTEM
   ════════════════════════════════════════════════════════════════ */

/* Global Mobile Overflow Guard */
html, body {
    overflow-x: clip;
    max-width: 100vw;
}

.cb-page-wrapper, main {
    overflow-x: clip;
    width: 100%;
}

/* ── Breakpoint: 1024px (Laptops & Tablet Landscape) ── */
@media (max-width: 1024px) {
    /* Top Announcement Ribbon: Hidden on mobile & tablet, visible only on laptop/desktop */
    .cb-top-ribbon {
        display: none !important;
    }

    /* Header & Navigation */
    .cb-nav-links {
        display: none !important;
    }

    .cb-mobile-toggle-btn,
    .cb-hamburger {
        display: flex !important;
    }

    .cb-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cb-hero-left {
        align-items: center;
    }

    .cb-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

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

    .cb-hero-feature-strip {
        grid-template-columns: repeat(2, auto);
        border-radius: 18px;
    }

    .cb-about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cb-about-visual-side {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }

    .cb-about-content-side {
        align-items: flex-start;
        text-align: left;
    }

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

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

    .cb-products-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cb-brand-card-wrap {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 36px;
        padding: 36px 24px;
    }

    .cb-brand-left {
        align-items: center;
        text-align: center;
    }

    .cb-brand-right-showcase {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
        text-align: left;
    }

    .cb-lead-decor-tl,
    .cb-lead-decor-tr,
    .cb-lead-decor-ml,
    .cb-lead-decor-mr,
    .cb-lead-decor-br {
        display: none !important;
    }

    .cb-gov-metrics-strip {
        gap: 20px;
        padding: 10px 14px;
        margin: 20px auto 32px;
    }

    .cb-governance-strip {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cb-leadership-exec-deck {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cb-leadership-dir-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cb-gov-footer-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 22px;
    }

    .cb-gov-footer-bar .cb-btn-white-pill {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .cb-leadership-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cb-impact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .cb-impact-kpi-deck {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cb-impact-bento-deck {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cb-impact-proof-island {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 22px 24px;
    }

    .cb-impact-island-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .cb-impact-banner-photo {
        height: 440px;
    }

    .cb-journey-header-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 36px;
    }

    .cb-journey-header-actions {
        width: 100%;
    }

    .cb-journey-pillars-deck {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cb-corp-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .cb-corp-col-brand {
        grid-column: 1 / -1;
    }
}

/* ── Breakpoint: 768px (Tablet Portrait & Large Mobile) ── */
@media (max-width: 768px) {
    /* Header & Navigation */
    .cb-nav-links {
        display: none !important;
    }

    .cb-mobile-toggle-btn {
        display: flex;
    }

    .cb-header.is-scrolled {
        top: 8px !important;
        max-width: calc(100% - 16px) !important;
        padding: 0 12px !important;
        border-radius: 18px !important;
    }

    .cb-header.is-scrolled .cb-nav-wrap {
        height: 56px !important;
    }

    /* Hero */
    .cb-hero-title {
        font-size: 2.2rem;
    }

    .cb-hero-photo-card {
        max-width: 100%;
    }

    .cb-hero-farmer-img {
        height: 380px;
    }

    .cb-hero-feature-strip {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        border-radius: 16px;
    }

    /* About */
    .cb-about-section {
        padding: 64px 0 56px;
    }

    .cb-about-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cb-about-commitments {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .cb-commit-badge {
        font-size: 0.76rem;
        padding: 6px 10px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* Pillars */
    .cb-pillars-grid {
        grid-template-columns: 1fr;
    }

    /* Dossier */
    .cb-dossier-grid {
        grid-template-columns: 1fr;
    }

    /* Leadership */
    .cb-gov-metrics-strip {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 12px 14px;
        margin: 20px auto 30px;
    }



    .cb-governance-strip {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cb-leadership-exec-deck {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cb-exec-card {
        flex-direction: column;
    }

    .cb-exec-photo-wrap {
        width: 100%;
        height: 260px;
        min-width: 0;
    }

    .cb-exec-content {
        padding: 22px 20px;
    }

    .cb-leadership-dir-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cb-leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .cb-lead-values-strip {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 16px;
        padding: 14px 18px;
        border-radius: 18px;
        white-space: normal;
    }

    .cb-lead-val-divider {
        display: none !important;
    }

    .cb-lead-value-item {
        justify-content: center;
        font-size: 0.84rem;
    }

    /* Ecosystem */
    .cb-eco-connector-arrow {
        display: none !important;
    }

    .cb-ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Journey CTA */
    .cb-journey-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cb-journey-hero-right {
        justify-content: center;
    }

    .cb-journey-farmer-frame {
        max-width: 100%;
    }

    /* Impact */
    .cb-impact-bento-card {
        padding: 26px 20px;
    }

    .cb-impact-banner-photo {
        height: 460px;
    }

    .cb-impact-proof-island {
        bottom: 16px;
        left: 16px;
        right: 16px;
        padding: 18px 20px;
    }

    .cb-impact-island-quote {
        font-size: 1.05rem;
    }

    /* Journey CTA & 3 Pillars */
    .cb-journey-pillars-deck {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cb-journey-header-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .cb-journey-header-actions .cb-btn-white-pill,
    .cb-journey-header-actions .cb-btn-trans-pill,
    .cb-journey-header-actions .cb-btn-accent-pill {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* Footer */
    .cb-corp-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
    }

    .cb-corp-col-brand,
    .cb-corp-col-address,
    .cb-corp-col-seals {
        grid-column: 1 / -1;
    }

    .cb-corp-mission-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cb-footer-store-btn {
        width: 100%;
        justify-content: center;
    }

    .cb-corp-bottom-inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 12px;
    }

    .cb-corp-bottom-links {
        justify-content: center;
    }

    .cb-brand-right-showcase {
        padding: 20px 16px;
    }

    .cb-roots-main-title {
        font-size: 1.12rem;
    }

    .cb-root-stat-box {
        padding: 10px 12px;
        gap: 10px;
    }

    .cb-root-stat-val {
        font-size: 0.98rem;
    }

    .cb-root-stat-name {
        font-size: 0.8rem;
    }
}

/* ── Breakpoint: 640px (Standard Mobile Screens) ── */
@media (max-width: 640px) {
    /* Top Ribbon: Hidden on Mobile */
    .cb-top-ribbon {
        display: none !important;
    }

    /* Header adjustments */
    .cb-cta-touch-btn {
        display: none !important;
    }

    .cb-nav-actions {
        gap: 8px;
    }

    .cb-lang-btn {
        padding: 6px 10px;
        font-size: 0.78rem;
    }

    /* Hero */
    .cb-hero-section {
        padding: 36px 0 48px;
    }

    .cb-hero-title {
        font-size: clamp(1.95rem, 6.8vw, 2.4rem);
    }

    .cb-hero-subheading {
        font-size: 1.08rem;
    }

    .cb-hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .cb-btn-green-pill,
    .cb-btn-outline-pill,
    .cb-hero-btn-store {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .cb-hero-feature-strip {
        gap: 8px;
        padding: 10px 12px;
    }

    .cb-feature-tag {
        font-size: 0.74rem;
        justify-content: center;
        text-align: center;
        white-space: normal;
    }

    .cb-hero-farmer-img {
        height: 330px;
    }

    .cb-hero-quote-callout {
        top: -14px;
        left: 0;
    }

    .cb-script-text {
        font-size: 1.35rem;
    }

    .cb-hero-badge-circle {
        top: 10px;
        right: 10px;
        width: 74px;
        height: 74px;
        font-size: 0.62rem;
    }

    .cb-hero-loc-pill {
        bottom: -10px;
        right: 10px;
        font-size: 0.74rem;
        padding: 6px 12px;
    }

    /* About */
    .cb-about-section {
        padding: 52px 0 44px;
    }

    .cb-about-visual-frame {
        border-radius: 20px;
    }

    .cb-visual-badge-top {
        top: 12px;
        right: 12px;
        padding: 6px 10px;
        gap: 8px;
    }

    .cb-badge-title {
        font-size: 0.72rem;
    }

    .cb-badge-sub {
        font-size: 0.62rem;
    }

    .cb-visual-card-bottom {
        bottom: 12px;
        left: 12px;
        padding: 10px 12px;
        gap: 10px;
    }

    .cb-card-title {
        font-size: 0.78rem;
    }

    .cb-card-sub {
        font-size: 0.66rem;
    }

    .cb-visual-script-tag {
        display: none;
    }

    .cb-about-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .cb-about-cta-row {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .cb-about-cta-row a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .cb-section-heading {
        font-size: clamp(1.8rem, 6vw, 2.25rem);
    }

    /* Pillars */
    .cb-pillars-section {
        padding: 50px 0;
    }

    .cb-pillar-card {
        padding: 24px 18px;
    }

    /* Ecosystem */
    .cb-ecosystem-section {
        padding: 50px 0;
    }

    .cb-ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cb-ecosystem-card {
        padding: 24px 18px;
    }

    .cb-products-preview-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 380px;
        margin: 0 auto;
    }

    /* Brand Section */
    .cb-brand-showcase-section {
        padding: 50px 0 56px;
    }

    .cb-brand-card-wrap {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .cb-brand-super-title {
        font-size: clamp(1.8rem, 6vw, 2.15rem);
    }

    .cb-brand-right-showcase {
        padding: 18px 14px;
        border-radius: 18px;
    }

    .cb-roots-main-title {
        font-size: 1.05rem;
    }

    .cb-root-stat-box {
        padding: 10px 12px;
        gap: 10px;
    }

    .cb-root-stat-val {
        font-size: 0.95rem;
    }

    .cb-root-stat-name {
        font-size: 0.8rem;
    }

    .cb-roots-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    /* Leadership */
    .cb-leadership-section {
        padding: 56px 0 60px;
    }

    .cb-gov-eyebrow-pill {
        font-size: 0.65rem;
        padding: 6px 14px;
    }

    .cb-gov-main-heading {
        font-size: 1.85rem;
    }

    .cb-gov-subtitle {
        font-size: 0.88rem;
    }

    .cb-gov-metrics-strip {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 12px 14px;
        margin: 20px auto 32px;
    }



    .cb-gov-metric-item {
        gap: 10px;
    }

    .cb-gov-metric-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .cb-gov-metric-val {
        font-size: 0.96rem;
    }

    .cb-gov-metric-lbl {
        font-size: 0.7rem;
    }

    .cb-governance-strip {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 0 0 36px;
    }

    .cb-gov-pillar {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .cb-lead-sub-title {
        font-size: 1.65rem;
    }

    .cb-lead-sub-desc {
        font-size: 0.85rem;
    }

    .cb-leadership-exec-deck {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 24px;
    }

    .cb-exec-card {
        flex-direction: column;
        border-radius: 20px;
        padding: 16px;
        align-items: center;
        text-align: center;
    }

    .cb-exec-photo-wrap {
        width: 100%;
        max-width: 220px;
        min-width: 0;
    }

    .cb-exec-header {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .cb-exec-focus-tags {
        justify-content: center;
    }

    .cb-exec-content {
        padding: 16px 8px 8px;
    }

    .cb-exec-name {
        font-size: 1.18rem;
    }

    .cb-leadership-dir-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .cb-dir-photo-wrap {
        height: 250px;
    }

    .cb-dir-body {
        padding: 16px 14px;
    }

    .cb-lead-values-strip {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border-radius: 18px;
        gap: 12px 14px;
        padding: 14px 16px;
        white-space: normal;
    }

    .cb-lead-val-divider {
        display: none !important;
    }

    .cb-lead-value-item {
        justify-content: center;
        font-size: 0.82rem;
    }

    .cb-gov-footer-bar {
        padding: 18px 16px;
        border-radius: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .cb-gov-footer-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cb-gov-footer-bar .cb-btn-white-pill {
        width: 100%;
        justify-content: center;
    }

    /* Legacy leadership aliases for 640px */
    .cb-leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cb-leader-photo-wrap {
        width: 76px;
        height: 76px;
    }

    .cb-leader-name {
        font-size: 0.88rem;
    }

    /* Impact */
    .cb-impact-section {
        padding: 56px 0 64px;
    }

    .cb-impact-kpi-deck {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 36px;
        margin-bottom: 24px;
    }

    .cb-impact-kpi-card {
        padding: 20px 18px;
    }

    .cb-impact-kpi-num {
        font-size: 1.85rem;
    }

    .cb-impact-bento-deck {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 24px;
    }

    .cb-impact-bento-card {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .cb-bento-title {
        font-size: 1.22rem;
    }

    .cb-bento-check-item {
        padding: 10px 12px;
    }

    .cb-impact-banner-photo {
        height: 220px;
    }

    .cb-impact-proof-island {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        border-radius: 0 0 24px 24px;
        padding: 22px 18px;
        background: #0E2618;
    }

    .cb-impact-island-quote {
        font-size: 1.05rem;
    }

    .cb-impact-island-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .cb-impact-island-actions .cb-btn-white-pill,
    .cb-impact-island-actions .cb-btn-accent-pill {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* Legacy impact aliases for 640px */
    .cb-impact-cards-2x2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .cb-impact-card {
        padding: 16px 12px;
        border-radius: 14px;
    }

    .cb-impact-num {
        font-size: 1.22rem;
    }

    .cb-impact-lbl {
        font-size: 0.74rem;
    }

    .cb-impact-landscape-img {
        height: 230px;
    }

    .cb-impact-cursive-overlay {
        font-size: 1.05rem;
        top: 14px;
        right: 14px;
    }

    /* Statutory MCA Dossier */
    .cb-dossier-section {
        padding: 42px 0;
    }

    .cb-dossier-toggle-card {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .cb-dossier-header-btn {
        flex-wrap: wrap;
        gap: 8px;
    }

    .cb-dossier-title {
        font-size: 1.15rem;
    }

    .cb-dossier-item {
        padding: 12px 14px;
    }

    .cb-dossier-item-val {
        flex-wrap: wrap;
        gap: 6px;
        font-size: 0.84rem;
        word-break: break-all;
    }

    /* Journey CTA & 3 Pillars */
    .cb-journey-cta-section {
        padding: 50px 0 58px;
    }

    .cb-journey-header-block {
        gap: 20px;
        margin-bottom: 28px;
    }

    .cb-journey-title {
        font-size: clamp(1.75rem, 5.5vw, 2.1rem);
        margin-bottom: 10px;
    }

    .cb-journey-sub {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .cb-journey-header-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .cb-journey-header-actions .cb-btn-white-pill,
    .cb-journey-header-actions .cb-btn-trans-pill,
    .cb-journey-header-actions .cb-btn-accent-pill {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.88rem;
    }

    .cb-journey-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .cb-journey-card-title {
        font-size: 1.15rem;
    }

    .cb-journey-card-desc {
        font-size: 0.86rem;
        line-height: 1.55;
    }

    /* Corporate Footer */
    .cb-corp-footer-body {
        padding: 38px 0 28px;
    }

    .cb-corp-seals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .cb-stat-token-item {
        padding: 6px 8px;
    }

    .cb-stat-token-code {
        font-size: 0.72rem;
    }

    .cb-corp-legal-disclaimer {
        padding: 12px 14px;
    }

    /* Floating Storefront Pill */
    .cb-floating-store-pill {
        bottom: 16px;
        right: 14px;
        font-size: 0.78rem;
        padding: 8px 14px;
    }
}

/* ── Breakpoint: 480px (Compact Mobile Screens) ── */
@media (max-width: 480px) {
    .cb-container {
        padding: 0 16px;
    }

    .cb-brand-logo-img {
        width: 38px;
        height: 38px;
    }

    .cb-hero-title {
        font-size: 1.85rem;
    }

    .cb-hero-farmer-img {
        height: 290px;
    }

    .cb-about-sprout-wrap {
        width: 250px;
        height: 250px;
    }

    .cb-sprout-cursive-tag {
        font-size: 1.15rem;
    }

    .cb-leader-card {
        padding: 12px 6px;
    }

    .cb-leader-photo-wrap {
        width: 68px;
        height: 68px;
    }

    .cb-leader-name {
        font-size: 0.82rem;
    }

    .cb-leader-role {
        font-size: 0.68rem;
    }

    .cb-lead-values-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 10px;
        padding: 12px 14px;
    }

    .cb-lead-value-item {
        font-size: 0.76rem;
        gap: 6px;
    }

    .cb-gov-metrics-strip {
        gap: 10px;
        padding: 10px 12px;
    }

    .cb-gov-metric-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .cb-gov-metric-val {
        font-size: 0.88rem;
    }

    .cb-gov-metric-lbl {
        font-size: 0.65rem;
    }

    .cb-journey-farmer-frame {
        max-width: 100%;
        border-radius: 16px;
    }

    .cb-journey-hero-title {
        font-size: 1.85rem;
    }

    .cb-journey-action-row {
        gap: 8px;
    }

    .cb-journey-btn-white,
    .cb-journey-btn-trans,
    .cb-journey-btn-gold {
        font-size: 0.82rem;
        padding: 9px 16px;
    }

    .cb-journey-trust-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .cb-journey-trust-item {
        padding: 6px 8px;
    }

    .cb-trust-item-meta strong {
        font-size: 0.82rem;
    }

    .cb-trust-item-meta span {
        font-size: 0.64rem;
    }

    .cb-impact-num {
        font-size: 1.15rem;
    }

    .cb-impact-lbl {
        font-size: 0.7rem;
    }
}

/* ── Breakpoint: 380px (Small Screen Mobile: iPhone SE, Galaxy Fold) ── */
@media (max-width: 380px) {
    .cb-hero-title {
        font-size: 1.68rem;
    }

    .cb-hero-farmer-img {
        height: 240px;
    }

    .cb-hero-badge-circle {
        width: 62px;
        height: 62px;
        font-size: 0.56rem;
    }

    .cb-about-sprout-wrap {
        width: 210px;
        height: 210px;
    }

    .cb-section-heading {
        font-size: 1.58rem;
    }

    .cb-brand-super-title {
        font-size: 1.58rem;
    }

    .cb-brand-sack-img {
        max-width: 200px;
    }

    .cb-impact-kpi-num {
        font-size: 1.6rem;
    }

    .cb-impact-kpi-title {
        font-size: 0.88rem;
    }

    .cb-bento-title {
        font-size: 1.15rem;
    }

    .cb-impact-island-quote {
        font-size: 0.96rem;
    }

    .cb-impact-cards-2x2 {
        grid-template-columns: 1fr;
    }

    .cb-exec-name {
        font-size: 1.12rem;
    }

    .cb-dir-name {
        font-size: 1.05rem;
    }

    .cb-leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .cb-leader-photo-wrap {
        width: 58px;
        height: 58px;
    }

    .cb-leader-name {
        font-size: 0.76rem;
    }

    .cb-leader-role {
        font-size: 0.65rem;
    }

    .cb-lead-values-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 10px 12px;
    }

    .cb-lead-value-item {
        font-size: 0.74rem;
    }

    .cb-gov-metrics-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .cb-journey-title {
        font-size: 1.48rem;
    }

    .cb-journey-hero-title {
        font-size: 1.55rem;
    }

    .cb-journey-trust-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .cb-journey-card {
        padding: 18px 14px;
        border-radius: 16px;
    }

    .cb-journey-card-title {
        font-size: 1.05rem;
    }

    .cb-pillar-tag {
        font-size: 0.72rem;
        padding: 5px 9px;
    }

    .cb-corp-bottom-links {
        font-size: 0.72rem;
        gap: 6px;
    }

    .cb-floating-store-pill {
        font-size: 0.72rem;
        padding: 6px 11px;
        bottom: 12px;
        right: 10px;
    }
}
