/* ==========================================================================
   Vindhya Millets - About Page Modern Redesign CSS
   Faithful to Reference Mockup (Warm Cream, Forest Green, Amber Accents)
   ========================================================================== */

:root {
    --ab-primary: #1E3A2B;        /* Deep Forest Green */
    --ab-primary-hover: #14281E;
    --ab-primary-light: #EAF4EE;
    --ab-accent: #B85D19;         /* Warm Harvest Amber */
    --ab-accent-hover: #9A4A11;
    --ab-accent-light: #FEF3C7;
    --ab-terracotta: #8C3814;
    --ab-text-dark: #1A1918;
    --ab-text-muted: #5C665F;
    --ab-bg-warm: #FAF8F2;        /* Exact Soft Organic Cream from Mockup */
    --ab-bg-card: #FFFFFF;
    --ab-border: #EADBCC;
    --ab-border-subtle: #EADBCC;
    --ab-shadow-sm: 0 4px 14px rgba(84, 35, 17, 0.05);
    --ab-shadow-md: 0 10px 30px rgba(84, 35, 17, 0.07);
    --ab-shadow-lg: 0 18px 45px rgba(84, 35, 17, 0.11);
    --ab-radius-sm: 10px;
    --ab-radius-md: 18px;
    --ab-radius-lg: 24px;
    --ab-radius-xl: 28px;
    --ab-radius-pill: 50px;
}

/* Dark mode adjustments */
body.dark-mode {
    --ab-primary: #2D6E4B;
    --ab-primary-hover: #36825A;
    --ab-primary-light: rgba(45, 110, 75, 0.18);
    --ab-text-dark: #F3F4F6;
    --ab-text-muted: #9CA3AF;
    --ab-bg-warm: #121614;
    --ab-bg-card: #1A201D;
    --ab-border: rgba(255, 255, 255, 0.12);
    --ab-border-subtle: rgba(255, 255, 255, 0.08);
    --ab-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --ab-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --ab-shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.about-page-wrapper {
    background-color: var(--ab-bg-warm);
    color: var(--ab-text-dark);
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
}

.about-page-wrapper * {
    box-sizing: border-box;
}

.about-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .about-container {
        padding: 0 16px;
    }
}

/* ── Minimal Breadcrumb ── */
.ab-breadcrumb-nav {
    padding-top: 14px;
    margin-bottom: 24px;
}

.ab-breadcrumb-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--ab-text-muted);
}

.ab-breadcrumb-list li {
    list-style: none !important;
    display: inline-flex;
    align-items: center;
}

.ab-breadcrumb-list a {
    color: var(--ab-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.ab-breadcrumb-list a:hover {
    color: var(--ab-accent);
    text-decoration: underline;
}

.breadcrumb-sep {
    opacity: 0.45;
    user-select: none;
}

.breadcrumb-active {
    font-weight: 600;
    color: var(--ab-text-dark);
}

/* ── Minimal Badge (Leaf + Dash + Label) ── */
.ab-badge-minimal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--ab-primary);
    text-transform: uppercase;
    margin-bottom: 16px;
    max-width: 100%;
    flex-wrap: wrap;
    line-height: 1.4;
}

.ab-badge-leaf {
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
}

.ab-badge-dash {
    opacity: 0.4;
    font-weight: 300;
    flex-shrink: 0;
}

.ab-badge-text {
    font-weight: 700;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* ── Typography & Display Headings ── */
.ab-title-display {
    font-family: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
    font-weight: 800;
    line-height: 1.15;
    color: var(--ab-text-dark);
    letter-spacing: -0.025em;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
}

.text-amber {
    color: var(--ab-accent) !important;
}

.text-green {
    color: var(--ab-primary) !important;
}

/* ── Interactive Buttons ── */
.btn-ab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: var(--ab-radius-pill);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    line-height: 1.2;
}

.btn-ab-primary {
    background: var(--ab-primary);
    color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(30, 58, 43, 0.25);
}

.btn-ab-primary:hover {
    background: var(--ab-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 43, 0.35);
    color: #FFFFFF !important;
}

.btn-ab-secondary {
    background: #FFFFFF;
    color: var(--ab-primary) !important;
    border: 1.5px solid var(--ab-primary);
}

.btn-ab-secondary:hover {
    background: var(--ab-primary-light);
    transform: translateY(-2px);
    color: var(--ab-primary-hover) !important;
}

.btn-ab-secondary .play-icon {
    font-size: 0.8rem;
    color: var(--ab-primary);
}

.btn-ab-amber {
    background: var(--ab-accent);
    color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(184, 93, 25, 0.3);
}

.btn-ab-amber:hover {
    background: var(--ab-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(184, 93, 25, 0.4);
    color: #FFFFFF !important;
}

.btn-ab-white-outline {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF !important;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}

.btn-ab-white-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #FFFFFF;
    transform: translateY(-2px);
    color: #FFFFFF !important;
}

/* ==========================================================================
   1. HERO SECTION (100% Faithful to Reference Mockup)
   ========================================================================== */
.about-hero-sec {
    position: relative;
    padding: 10px 0 44px;
    background-color: var(--ab-bg-warm);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.hero-left-content {
    max-width: 580px;
}

.hero-title {
    font-family: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
    font-size: clamp(2.35rem, 3.8vw, 3.45rem) !important;
    margin-bottom: 20px !important;
    line-height: 1.16 !important;
    color: var(--ab-text-dark, #1A1918) !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    letter-spacing: -0.025em !important;
}

.hero-title-top {
    display: block !important;
    font-family: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
    color: #1B4324 !important; /* Deep forest green */
    font-weight: 800 !important;
    margin-bottom: 6px !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    letter-spacing: -0.02em !important;
}

.hero-title-gradient {
    display: inline-block !important;
    font-family: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
    color: #B85314 !important; /* Crisp terracotta fallback */
    background: linear-gradient(135deg, #B85314 0%, #D97706 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    filter: none !important;
}

body.dark-mode .hero-title {
    color: #F3F4F6 !important;
    text-shadow: none !important;
}

body.dark-mode .hero-title-top {
    color: #4ADE80 !important;
    text-shadow: none !important;
}

body.dark-mode .hero-title-gradient {
    color: #FBBF24 !important;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0 !important;
}

/* Hero Parent Entity Callout Card */
.ab-parent-callout-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #FFFFFF;
    border: 1.5px solid rgba(22, 101, 52, 0.16);
    border-radius: 18px;
    padding: 14px 18px;
    margin-bottom: 24px;
    max-width: 580px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 18px -2px rgba(27, 67, 50, 0.06), 0 2px 6px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-parent-callout-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #10B981 0%, #059669 100%);
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}

.ab-parent-callout-card:hover {
    transform: translateY(-2px);
    border-color: rgba(22, 101, 52, 0.3);
    box-shadow: 0 12px 28px -4px rgba(27, 67, 50, 0.12), 0 4px 10px rgba(0, 0, 0, 0.04);
}

.callout-left-badge {
    flex-shrink: 0;
    margin-top: 2px;
}

.callout-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #047857;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.callout-pulse-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #10B981;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pillPulseLive 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pillPulseLive {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.callout-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
    min-width: 0;
}

.callout-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.callout-kicker {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #166534;
}

.callout-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    background: #ECFDF5;
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.3);
    line-height: 1.2;
}

.callout-main-statement {
    font-size: 0.93rem;
    line-height: 1.5;
    color: #374151;
}

.brand-name-tag {
    font-weight: 800;
    color: #1B4324;
    display: inline-block;
}

.statement-middle {
    color: #4B5563;
}

.parent-company-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #14281E;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease;
}

.parent-company-link:hover {
    color: #059669;
}

.parent-company-link strong {
    color: inherit;
}

.external-arrow {
    opacity: 0.7;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.parent-company-link:hover .external-arrow {
    transform: translate(2px, -2px);
    opacity: 1;
}

.callout-bottom-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}

.callout-cin-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #F8FAF8;
    border: 1px solid rgba(22, 101, 52, 0.12);
    border-radius: 6px;
    padding: 2px 6px 2px 7px;
}

.cin-lbl {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    padding: 1px 4px;
    border-radius: 3px;
    background: rgba(16, 185, 129, 0.15);
    color: #047857;
}

.cin-code {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.76rem;
    font-weight: 800;
    color: #047857;
    letter-spacing: -0.3px;
}

.cin-copy-btn {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.callout-divider {
    color: #D1D5DB;
    font-size: 0.8rem;
}

.callout-meta-tag {
    font-size: 0.72rem;
    color: #6B7280;
    font-weight: 600;
}

.callout-view-dossier {
    font-size: 0.74rem;
    font-weight: 700;
    color: #B85D19;
    text-decoration: none;
    margin-left: auto;
    transition: color 0.2s ease;
}

.callout-view-dossier:hover {
    color: #D97706;
    text-decoration: underline;
}

/* Dark mode */
body.dark-mode .ab-parent-callout-card {
    background: #141E18;
    border-color: rgba(255, 255, 255, 0.09);
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.4);
}

body.dark-mode .callout-icon-box {
    background: #1E2D23;
    border-color: rgba(74, 222, 128, 0.25);
    color: #4ADE80;
}

body.dark-mode .callout-pulse-dot {
    border-color: #141E18;
}

body.dark-mode .callout-kicker {
    color: #4ADE80;
}

body.dark-mode .brand-name-tag {
    color: #86EFAC;
}

body.dark-mode .statement-middle {
    color: #D1D5DB;
}

body.dark-mode .parent-company-link {
    color: #F3F4F6;
}

body.dark-mode .parent-company-link:hover {
    color: #4ADE80;
}

body.dark-mode .callout-cin-badge {
    background: #0E1612;
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .cin-lbl {
    background: rgba(74, 222, 128, 0.15);
    color: #4ADE80;
}

body.dark-mode .cin-code {
    color: #4ADE80;
}

body.dark-mode .callout-meta-tag {
    color: #9CA3AF;
}

body.dark-mode .callout-view-dossier {
    color: #FBBF24;
}

.hero-lead-text {
    font-size: 1.12rem !important;
    font-weight: 600 !important;
    color: #243E2B !important;
    margin-bottom: 14px !important;
    line-height: 1.58 !important;
    text-shadow: none !important;
}

.hero-subtext {
    font-size: 0.98rem !important;
    color: #526056 !important;
    line-height: 1.68 !important;
    margin-bottom: 28px !important;
    text-shadow: none !important;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
}

/* 4 Trust Feature Pillars (Full Width across Left to Right in Laptop & Desktop) */
.hero-trust-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 22px);
    width: 100%;
    margin-top: clamp(28px, 3.8vw, 44px);
    padding-top: clamp(22px, 2.8vw, 32px);
    border-top: 1px solid rgba(27, 67, 36, 0.12);
}

.trust-pillar-item {
    background: #FFFFFF;
    border: 1px solid rgba(27, 67, 36, 0.1);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 4px 18px rgba(18, 56, 38, 0.04);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    min-width: 0;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}

.trust-pillar-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(18, 56, 38, 0.08);
    border-color: rgba(27, 67, 36, 0.22);
}

.trust-pillar-circle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    margin-bottom: 0;
    background: #EAF4EE;
    color: var(--ab-primary);
    border: 1px solid #D8E8DC;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: transform 0.25s ease;
}

.trust-pillar-item:hover .trust-pillar-circle {
    transform: scale(1.08);
}

.circle-green { background: #EAF4EE; border-color: #C8E3CF; }
.circle-amber { background: #FEF3C7; border-color: #FDE68A; }
.circle-rose  { background: #FDE8E8; border-color: #FBCFE8; }
.circle-teal  { background: #E0F2FE; border-color: #BAE6FD; }

.trust-pillar-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.trust-pillar-title {
    font-family: 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    color: #143D28;
    line-height: 1.25;
    display: block;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trust-pillar-sub {
    font-size: 0.78rem;
    color: #556B5C;
    font-weight: 500;
    display: block;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Laptop Optimization (992px to 1280px) — Proper Left to Right Span */
@media (min-width: 992px) and (max-width: 1280px) {
    .hero-trust-row {
        gap: 12px;
        margin-top: 28px;
        padding-top: 22px;
    }
    .trust-pillar-item {
        padding: 13px 12px;
        gap: 10px;
        border-radius: 15px;
    }
    .trust-pillar-circle {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
        border-radius: 12px;
    }
    .trust-pillar-title {
        font-size: 0.88rem;
    }
    .trust-pillar-sub {
        font-size: 0.74rem;
    }
}

/* Hero Right Visual (Clean Organic Cutout - Shifted Upwards) */
.hero-right-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -28px; /* Shifted slightly up as requested */
}

.hero-art-img {
    width: 100%;
    max-width: 610px;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 20px;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 14px 35px rgba(84, 35, 17, 0.08));
}

.hero-art-img:hover {
    transform: translateY(-4px) scale(1.015);
}

/* ==========================================================================
   2. IMPACT STATS FLOATING BAR
   ========================================================================== */
.about-stats-sec {
    position: relative;
    padding: 10px 0 45px;
    z-index: 5;
}

.stats-card-pill {
    background: #FFFFFF;
    border: 1.5px solid var(--ab-border);
    border-radius: var(--ab-radius-xl);
    padding: 24px 34px;
    box-shadow: var(--ab-shadow-md);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
    position: relative;
}

.stat-col {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

.stat-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--ab-border);
}

.stat-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    flex-shrink: 0;
}

.stat-circle-green      { background: #EAF4EE; color: var(--ab-primary); }
.stat-circle-amber      { background: #FEF3C7; color: var(--ab-accent); }
.stat-circle-rust       { background: #FDE8E8; color: var(--ab-terracotta); }
.stat-circle-leaf       { background: #EAF4EE; color: #2D6A4F; }

.stat-meta {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ab-text-dark);
    line-height: 1.1;
}

.stat-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ab-text-dark);
    line-height: 1.25;
}

.stat-sub {
    font-size: 0.74rem;
    color: var(--ab-text-muted);
    line-height: 1.3;
    margin-top: 2px;
}

/* ==========================================================================
   2.5 PANORAMIC LANDSCAPE QUOTE STRIP (Direct from Reference Mockup)
   ========================================================================== */
.about-panoramic-sec {
    position: relative;
    padding: 0 0 65px;
}

.panoramic-strip-card {
    position: relative;
    border-radius: var(--ab-radius-lg);
    overflow: hidden;
    box-shadow: var(--ab-shadow-md);
    border: 1.5px solid var(--ab-border);
    background: #DFCFC1;
}

.panoramic-img-desktop {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Hotspot link over the baked button on desktop */
.panoramic-hotspot-btn {
    position: absolute;
    right: 7.5%;
    top: 20%;
    width: 20%;
    height: 60%;
    border-radius: 50px;
    z-index: 5;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.panoramic-hotspot-btn:hover {
    box-shadow: 0 0 18px rgba(140, 56, 20, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

.panoramic-mobile-content {
    display: none;
    padding: 24px 20px;
    text-align: center;
    background: linear-gradient(180deg, rgba(234, 219, 204, 0.95) 0%, rgba(223, 207, 193, 0.98) 100%);
}

.panoramic-mobile-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.4rem;
    color: #3C2213;
    margin: 0 0 6px;
    line-height: 1.25;
}

.panoramic-mobile-brand {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #6E4E38;
    margin-bottom: 16px;
}

.btn-panoramic-mobile {
    background: var(--ab-terracotta);
    color: #FFFFFF !important;
    padding: 10px 22px;
    font-size: 0.88rem;
    box-shadow: 0 4px 14px rgba(140, 56, 20, 0.35);
}

/* ==========================================================================
   3. OUR STORY & ORIGINS
   ========================================================================== */
.about-story-sec {
    padding: 50px 0 70px;
    background: var(--ab-bg-warm);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: center;
}

.story-visual-wrap {
    position: relative;
    border-radius: var(--ab-radius-lg);
    overflow: hidden;
    box-shadow: var(--ab-shadow-md);
    border: 1.5px solid var(--ab-border);
    background: #FFFFFF;
}

.story-visual-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--ab-radius-lg);
    object-fit: cover;
}

.story-content-wrap {
    position: relative;
}

.section-title {
    font-size: clamp(1.85rem, 2.8vw, 2.45rem) !important;
    margin-bottom: 14px !important;
    line-height: 1.18 !important;
    text-shadow: none !important;
}

.story-intro-p {
    font-size: 0.96rem;
    line-height: 1.62;
    color: var(--ab-text-muted);
    margin-bottom: 18px;
}

.story-pillars {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.story-pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pillar-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: var(--ab-primary-light);
    color: var(--ab-primary);
    font-size: 1.05rem;
    border: 1px solid rgba(30, 58, 43, 0.1);
}

.pillar-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 2px 0;
    color: var(--ab-text-dark);
}

.pillar-text p {
    font-size: 0.84rem;
    color: var(--ab-text-muted);
    margin: 0;
    line-height: 1.45;
}

.story-footer-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.cursive-badge {
    font-family: 'Caveat', cursive, serif;
    font-size: 1.35rem;
    color: var(--ab-accent);
    font-weight: 700;
    transform: rotate(-2deg);
    display: inline-block;
}

/* ==========================================================================
   4. FARMER SPOTLIGHT & PHILOSOPHY QUOTE
   ========================================================================== */
.about-quote-sec {
    padding: 30px 0 75px;
}

.quote-highlight-card {
    background: linear-gradient(135deg, #183B28 0%, #235438 100%);
    border-radius: var(--ab-radius-xl);
    overflow: hidden;
    color: #FFFFFF;
    box-shadow: 0 16px 40px rgba(24, 59, 40, 0.22);
    display: grid;
    grid-template-columns: 1fr 340px;
    align-items: center;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
}

.quote-content-pad {
    padding: 50px 48px;
}

.quote-mark {
    font-size: 3.8rem;
    line-height: 0.8;
    color: #F59E0B;
    font-family: 'Playfair Display', Georgia, serif;
    opacity: 0.95;
    margin-bottom: 12px;
}

.quote-lead {
    font-family: 'Outfit', Georgia, serif;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.quote-text {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 24px;
    max-width: 580px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-info h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 2px;
    color: #FEF3C7;
}

.author-info p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.quote-visual-col {
    height: 100%;
    min-height: 320px;
}

.quote-visual-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   5. OUR VALUES SECTION
   ========================================================================== */
.about-values-sec {
    padding: 70px 0 85px;
    background: #FAF8F2;
}

.values-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.values-header .section-subtitle {
    font-size: 1rem;
    color: var(--ab-text-muted);
    margin-top: 12px;
}

.values-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.val-card {
    background: #FFFFFF;
    border-radius: var(--ab-radius-lg);
    padding: 32px 24px;
    border: 1.5px solid var(--ab-border);
    box-shadow: var(--ab-shadow-sm);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.val-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ab-shadow-md);
    border-color: rgba(30, 58, 43, 0.3);
}

.val-icon-bubble {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--ab-primary-light);
    color: var(--ab-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 43, 0.1);
}

.val-card:hover .val-icon-bubble {
    background: var(--ab-primary);
    color: #FFFFFF;
}

.val-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--ab-text-dark);
}

.val-desc {
    font-size: 0.88rem;
    color: var(--ab-text-muted);
    line-height: 1.55;
    margin: 0;
}

/* ==========================================================================
   6. 4-STEP FOOD JOURNEY PROCESS
   ========================================================================== */
.about-journey-sec {
    padding: 75px 0 90px;
    background: #FFFFFF;
    position: relative;
}

.journey-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
    position: relative;
}

.journey-header-stamp {
    position: absolute;
    right: -130px;
    top: -10px;
}

.journey-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.journey-step-card {
    background: var(--ab-bg-warm);
    border-radius: var(--ab-radius-lg);
    padding: 30px 22px;
    border: 1.5px solid var(--ab-border);
    position: relative;
    transition: all 0.3s ease;
}

.journey-step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ab-shadow-md);
    border-color: rgba(30, 58, 43, 0.25);
}

.step-num-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--ab-accent);
    background: var(--ab-accent-light);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(184, 93, 25, 0.2);
}

.step-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #FFFFFF;
    color: var(--ab-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--ab-border);
}

.step-icon-wrap.step-icon-farmer {
    padding: 0;
    overflow: hidden;
    border: 1.5px solid rgba(22, 101, 52, 0.32);
    box-shadow: 0 4px 12px rgba(22, 101, 52, 0.12);
}

.step-icon-wrap.step-icon-farmer .step-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-step-card:hover .step-icon-wrap.step-icon-farmer .step-icon-img {
    transform: scale(1.15);
}

.step-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--ab-text-dark);
}

.step-desc {
    font-size: 0.85rem;
    color: var(--ab-text-muted);
    line-height: 1.5;
    margin: 0;
}

.stamp-img {
    width: 110px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

/* ==========================================================================
   7. PURPOSE & IMPACT
   ========================================================================== */
.about-purpose-sec {
    padding: 70px 0 85px;
    background: #FAF8F2;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 280px;
    gap: 24px;
    align-items: stretch;
}

.purpose-card {
    background: #FFFFFF;
    border-radius: var(--ab-radius-lg);
    padding: 32px 24px;
    border: 1.5px solid var(--ab-border);
    box-shadow: var(--ab-shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.purpose-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--ab-text-dark);
}

.purpose-card-desc {
    font-size: 0.88rem;
    color: var(--ab-text-muted);
    line-height: 1.6;
    margin: 0;
}

.purpose-promo-card {
    border-radius: var(--ab-radius-lg);
    overflow: hidden;
    box-shadow: var(--ab-shadow-md);
    border: 1.5px solid var(--ab-border);
    height: 100%;
    display: flex;
    background: #FFFFFF;
}

.purpose-promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   8. PANORAMIC RIVER SUNSET COMMUNITY CTA
   ========================================================================== */
.about-cta-sec {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
    background: #111827;
}

.cta-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.55;
    filter: blur(4px);
    transform: scale(1.05);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 21, 17, 0.88) 0%, rgba(13, 21, 17, 0.96) 100%);
}

.cta-content-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    color: #FFFFFF;
}

.cta-title {
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 32px;
}

.cta-btn-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ==========================================================================
   9. BRAND PLEDGE BAR
   ========================================================================== */
.about-pledge-bar {
    background: var(--ab-primary);
    color: #FFFFFF;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pledge-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pledge-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pledge-dot {
    color: #F59E0B;
    font-size: 1.1rem;
}

/* ==========================================================================
   8.5 ANCIENT SUPERFOOD GRAINS (Educational Jankari)
   ========================================================================== */
.about-grains-sec {
    padding: 70px 0 85px;
    background: linear-gradient(180deg, var(--ab-bg-warm) 0%, #FFFFFF 35%, #FFFFFF 85%, var(--ab-bg-warm) 100%);
    position: relative;
}

.sf-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 36px;
}

.sf-header .section-subtitle {
    margin: 0 auto;
    max-width: 680px;
}

/* ── Benchmark Comparison Strip ── */
.sf-benchmark-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.sf-benchmark-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: #FFFFFF;
    border: 1.5px solid var(--ab-border);
    border-radius: var(--ab-radius-pill);
    box-shadow: 0 2px 8px rgba(84, 35, 17, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sf-benchmark-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(84, 35, 17, 0.08);
}

.sf-bench-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.sf-bench-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.25;
}

.sf-bench-text strong {
    font-size: 0.86rem;
    font-weight: 800;
    color: var(--ab-primary);
}

.sf-bench-text span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ab-text-muted);
}

/* ── Grains Grid ── */
.grains-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.grain-card.sf-card {
    background: #FFFFFF;
    border: 1.5px solid var(--ab-border);
    border-radius: var(--ab-radius-xl);
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    box-shadow: 0 4px 14px rgba(84, 35, 17, 0.04);
}

.grain-card.sf-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 36px rgba(30, 58, 43, 0.12);
    border-color: rgba(30, 58, 43, 0.35);
}

/* ── Card Media & Floating Tags ── */
.sf-card-media {
    position: relative;
    width: 100%;
    height: 170px;
    overflow: hidden;
    background: #FAF8F2;
}

.sf-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.grain-card.sf-card:hover .sf-card-img {
    transform: scale(1.08);
}

.sf-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
}

.sf-floating-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.sf-badge-calcium {
    background: rgba(27, 67, 36, 0.9);
    color: #A7F3D0;
    border: 1px solid rgba(167, 243, 208, 0.35);
}

.sf-badge-iron {
    background: rgba(140, 56, 20, 0.9);
    color: #FED7AA;
    border: 1px solid rgba(254, 215, 170, 0.35);
}

.sf-badge-gi {
    background: rgba(30, 58, 43, 0.9);
    color: #BBF7D0;
    border: 1px solid rgba(187, 247, 208, 0.35);
}

.sf-badge-fiber {
    background: rgba(184, 93, 25, 0.9);
    color: #FEF08A;
    border: 1px solid rgba(254, 240, 138, 0.35);
}

.sf-stat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
}

.sf-floating-origin {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 9px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ab-text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

/* ── Card Body ── */
.sf-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sf-card-body .grain-header {
    margin-bottom: 10px;
}

.sf-card-body .grain-title-group h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ab-text-dark);
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    margin: 0 0 2px;
    line-height: 1.2;
}

.sf-grain-sub {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ab-accent);
    display: block;
}

.sf-card-body .grain-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.grain-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    background: #EAF4EE;
    color: var(--ab-primary);
}

.grain-badge-amber {
    background: #FEF3C7;
    color: var(--ab-accent);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
}

.sf-card-body .grain-desc {
    font-size: 0.86rem;
    color: var(--ab-text-muted);
    line-height: 1.58;
    margin: 0 0 16px;
    flex-grow: 1;
}

/* ── Card Action Link ── */
.sf-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--ab-primary);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-top: auto;
}

.sf-card-action:hover {
    color: var(--ab-accent);
}

.sf-action-arrow {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    color: currentColor;
}

.sf-card-action:hover .sf-action-arrow {
    transform: translateX(4px);
}

/* ── Eco & Farmer Impact Strip ── */
.sf-eco-strip {
    margin-top: 42px;
    background: var(--ab-bg-warm);
    border: 1.5px dashed var(--ab-border);
    border-radius: var(--ab-radius-lg);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 14px;
}

.sf-eco-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--ab-text-dark);
}

.sf-eco-icon {
    font-size: 1.15rem;
    line-height: 1;
}

.sf-eco-divider {
    width: 1px;
    height: 18px;
    background: var(--ab-border);
}

/* Dark Mode Overrides for Superfoods Section */
body.dark-mode .about-grains-sec {
    background: linear-gradient(180deg, var(--ab-bg-warm) 0%, #171D1A 40%, #171D1A 85%, var(--ab-bg-warm) 100%);
}

body.dark-mode .sf-benchmark-pill {
    background: var(--ab-bg-card);
    border-color: var(--ab-border);
}

body.dark-mode .sf-bench-text strong {
    color: #34D399;
}

body.dark-mode .grain-card.sf-card {
    background: var(--ab-bg-card);
    border-color: var(--ab-border);
}

body.dark-mode .sf-card-media {
    background: #121614;
}

body.dark-mode .sf-floating-origin {
    background: rgba(26, 32, 29, 0.94);
    color: #F3F4F6;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .sf-card-action {
    border-top-color: rgba(255, 255, 255, 0.08);
    color: #34D399;
}

body.dark-mode .sf-card-action:hover {
    color: #FBBF24;
}

body.dark-mode .sf-eco-strip {
    background: var(--ab-bg-card);
    border-color: var(--ab-border);
}

body.dark-mode .sf-eco-divider {
    background: rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   8.6 THE CITIBLOCK FPC MODEL SHOWCASE (Farmer Producer Company & Value Chain)
   ========================================================================== */
.about-fpc-sec {
    padding: 80px 0 95px;
    background: #FAF8F2;
    position: relative;
}

.fpc-showcase-container {
    background: #FFFFFF;
    border: 1.5px solid var(--ab-border);
    border-radius: var(--ab-radius-xl);
    padding: 56px 44px;
    box-shadow: var(--ab-shadow-md);
    position: relative;
    overflow: hidden;
}

.fpc-showcase-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 46px;
}

.fpc-showcase-header .ab-badge-minimal {
    justify-content: center;
    margin-bottom: 14px;
}

.fpc-showcase-header .section-title {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    margin-bottom: 16px;
    line-height: 1.22;
}

.fpc-showcase-header .section-subtitle {
    font-size: 1.05rem;
    line-height: 1.68;
    color: var(--ab-text-muted);
    margin: 0;
}

/* 1. Value Chain Flow Diagram */
.fpc-arch-diagram-card {
    background: #FAF8F2;
    border: 1.5px solid var(--ab-border);
    border-radius: 20px;
    padding: 26px 28px 30px;
    margin-bottom: 48px;
    position: relative;
}

.fpc-arch-title-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(27, 67, 36, 0.1);
}

.arch-badge-pill {
    display: inline-flex;
    align-items: center;
    background: var(--ab-primary);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
}

.arch-title-text {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ab-text-dark);
}

.fpc-arch-grid {
    display: grid;
    grid-template-columns: 1fr auto 1.15fr auto 1.15fr auto 1fr;
    align-items: stretch;
    gap: 12px;
}

.fpc-arch-step {
    background: #FFFFFF;
    border: 1.5px solid var(--ab-border);
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    position: relative;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 43, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.fpc-arch-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 58, 43, 0.09);
}

.fpc-arch-step-parent {
    border-color: #D97706;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF5 100%);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.12);
}

.fpc-arch-step-brand {
    border-color: var(--ab-primary);
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F9F6 100%);
    box-shadow: 0 6px 20px rgba(30, 58, 43, 0.12);
}

.arch-step-num {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(30, 58, 43, 0.35);
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
}

.arch-step-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    display: inline-block;
    line-height: 1;
}

.fpc-arch-step h4 {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--ab-text-dark);
    margin: 0 0 6px;
}

.fpc-arch-step p {
    font-size: 0.82rem;
    color: var(--ab-text-muted);
    line-height: 1.48;
    margin: 0 0 12px;
    flex-grow: 1;
}

.arch-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: center;
}

.arch-tag-subtle {
    background: rgba(30, 58, 43, 0.07);
    color: var(--ab-primary);
}

.arch-tag-parent {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FCD34D;
    font-weight: 800;
}

.arch-tag-brand {
    background: #DCFCE7;
    color: #166534;
    border: 1px solid #86EFAC;
    font-weight: 800;
}

.fpc-arch-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ab-accent);
    opacity: 0.85;
    flex-shrink: 0;
    align-self: center;
}

/* 2. Four Core Pillars */
.fpc-pillars-section {
    margin-bottom: 48px;
}

.fpc-block-header-wrap {
    text-align: center;
    margin-bottom: 30px;
}

.fpc-mini-kicker {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--ab-accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.fpc-block-heading {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--ab-text-dark);
    margin: 0;
}

.fpc-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.fpc-pillar-card {
    background: #FAF8F2;
    border: 1.5px solid var(--ab-border);
    border-radius: 20px;
    padding: 30px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fpc-pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(30, 58, 43, 0.09);
    border-color: var(--ab-accent);
}

.pillar-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.pillar-top-badge {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--ab-accent);
    background: rgba(184, 93, 25, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

.pillar-stat-pill {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ab-primary);
    background: #FFFFFF;
    border: 1px solid rgba(30, 58, 43, 0.16);
    padding: 4px 12px;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.pillar-icon-glow {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #FFFFFF;
    border: 1px solid var(--ab-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.fpc-pillar-card h4 {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--ab-text-dark);
    margin: 0 0 10px;
}

.fpc-pillar-card p {
    font-size: 0.92rem;
    color: var(--ab-text-muted);
    line-height: 1.64;
    margin: 0;
}

/* 3. Radical Transparency Comparison & Value Meter */
.fpc-compare-box {
    margin-bottom: 56px;
}

.fpc-mini-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(22, 101, 52, 0.08);
    border: 1px solid rgba(22, 101, 52, 0.22);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: #166534;
    margin-bottom: 12px;
}

.fpc-kicker-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16A34A;
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
    animation: fpcPulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

.fpc-block-subheading {
    font-size: 1rem;
    color: #64748B;
    max-width: 720px;
    margin: 8px auto 0;
    line-height: 1.6;
    text-align: center;
}

/* ── Interactive Rupee Allocation Flow Meter ── */
.rupee-flow-card {
    background: linear-gradient(180deg, #FCFDFC 0%, #F6FAF7 100%);
    border: 1.5px solid rgba(22, 101, 52, 0.16);
    border-radius: 24px;
    padding: 28px 32px;
    margin: 28px 0 36px;
    box-shadow: 0 8px 30px rgba(22, 101, 52, 0.05);
}

.rupee-flow-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 24px;
}

.rupee-flow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #166534;
    background: #DCFCE7;
    border: 1px solid #86EFAC;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.rupee-flow-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.32rem;
    font-weight: 800;
    color: #143D28;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
}

.rupee-flow-sub {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0;
}

.rupee-meter-comparison {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.meter-channel {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.meter-channel:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.meter-channel-mandi {
    border-left: 4px solid #EF4444;
}

.meter-channel-citiblock {
    border-left: 4px solid #10B981;
    background: #F8FCF9;
    border-color: rgba(16, 185, 129, 0.25);
    border-left-width: 5px;
}

.meter-channel-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.channel-name {
    font-size: 0.94rem;
    font-weight: 800;
    color: #1E293B;
    display: flex;
    align-items: center;
    gap: 8px;
}

.channel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-red { background: #DC2626; box-shadow: 0 0 6px rgba(220, 38, 38, 0.4); }
.dot-emerald { background: #059669; box-shadow: 0 0 6px rgba(5, 150, 105, 0.4); }

.channel-stat {
    font-size: 0.85rem;
    font-weight: 700;
}

.channel-stat.loss-stat {
    color: #DC2626;
}

.channel-stat.gain-stat {
    color: #059669;
}

.stat-highlight {
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.meter-bar-track {
    height: 34px;
    border-radius: 10px;
    background: #F1F5F9;
    overflow: hidden;
    display: flex;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    position: relative;
}

.meter-segment {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.meter-segment:hover {
    filter: brightness(1.08);
}

.meter-segment .seg-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: #FFFFFF;
    white-space: nowrap;
    padding: 0 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mandi Segments */
.seg-mandi-farmer {
    background: linear-gradient(90deg, #F87171 0%, #EF4444 100%);
}

.seg-mandi-broker {
    background: linear-gradient(90deg, #F59E0B 0%, #D97706 100%);
}

.seg-mandi-logistics {
    background: linear-gradient(90deg, #94A3B8 0%, #64748B 100%);
}

.seg-mandi-markup {
    background: linear-gradient(90deg, #6B7280 0%, #4B5563 100%);
}

/* Citiblock Segments */
.seg-citi-farmer {
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
    box-shadow: 0 0 12px rgba(5, 150, 105, 0.3);
}

.seg-citi-process {
    background: linear-gradient(90deg, #3B82F6 0%, #2563EB 100%);
}

.seg-citi-bonus {
    background: linear-gradient(90deg, #F59E0B 0%, #EAB308 100%);
}

.meter-legend-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.leg-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 700;
    color: #475569;
}

.leg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.leg-mandi-f .leg-dot { background: #EF4444; }
.leg-mandi-b .leg-dot { background: #D97706; }
.leg-mandi-l .leg-dot { background: #64748B; }
.leg-mandi-m .leg-dot { background: #4B5563; }

.leg-citi-f .leg-dot { background: #059669; }
.leg-citi-p .leg-dot { background: #2563EB; }
.leg-citi-b .leg-dot { background: #EAB308; }

/* ── Comparative Cards Grid with VS Nexus ── */
.fpc-compare-grid-wrap {
    position: relative;
    margin-top: 24px;
}

.fpc-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    position: relative;
}

.compare-vs-nexus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-glow-ring {
    position: absolute;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.35) 0%, rgba(16, 185, 129, 0) 70%);
    animation: vsPulse 2.4s infinite ease-in-out;
}

@keyframes vsPulse {
    0%, 100% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
}

.vs-pill {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #143D28;
    border: 3px solid #FFFFFF;
    box-shadow: 0 8px 24px rgba(20, 61, 40, 0.3);
    color: #FBBF24;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-card {
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.compare-card:hover {
    transform: translateY(-4px);
}

.compare-card-mandi {
    background: #FFFBFB;
    border: 1.5px solid #FEE2E2;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.04);
}

.compare-card-mandi:hover {
    border-color: #FCA5A5;
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.09);
}

.compare-card-citiblock {
    background: #F4FAF6;
    border: 2px solid #86EFAC;
    box-shadow: 0 10px 30px rgba(22, 101, 52, 0.08);
}

.compare-card-citiblock:hover {
    border-color: #34D399;
    box-shadow: 0 16px 40px rgba(22, 101, 52, 0.15);
}

.compare-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
    align-self: flex-start;
}

.badge-warning {
    background: #FEF2F2;
    color: #DC2626;
    border: 1px solid #FECACA;
}

.badge-certified {
    background: #DCFCE7;
    color: #15803D;
    border: 1px solid #86EFAC;
}

.compare-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.compare-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.box-mandi {
    background: #FEE2E2;
}

.box-citiblock {
    background: #D1FAE5;
}

.compare-title {
    font-size: 1.16rem;
    font-weight: 800;
    color: #1E293B;
    margin: 0 0 3px;
    line-height: 1.25;
}

.compare-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.compare-card-mandi .compare-subtitle {
    color: #DC2626;
}

.compare-card-citiblock .compare-subtitle {
    color: #059669;
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    line-height: 1.55;
}

.compare-item-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

.compare-item-icon.cross {
    background: #FEE2E2;
    color: #DC2626;
    border: 1px solid #FECACA;
}

.compare-item-icon.check {
    background: #DCFCE7;
    color: #059669;
    border: 1px solid #A7F3D0;
}

.compare-list strong {
    font-weight: 800;
    color: #1E293B;
    margin-right: 4px;
}

.compare-card-mandi .compare-list span {
    color: #4B5563;
}

.compare-card-citiblock .compare-list span {
    color: #1E293B;
}

.compare-footer-stat {
    padding: 14px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.stat-mandi {
    background: #FEF2F2;
    border: 1px solid #FEE2E2;
}

.stat-citiblock {
    background: #ECFDF5;
    border: 1px solid #D1FAE5;
}

.compare-footer-stat .stat-num {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    flex-shrink: 0;
}

.stat-mandi .stat-num {
    color: #DC2626;
}

.stat-citiblock .stat-num {
    color: #059669;
}

.compare-footer-stat .stat-desc {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.4;
    color: #4B5563;
}




/* 4. Official Regulatory & Government Credentials Strip */
.fpc-credentials-wrap {
    margin-bottom: 45px;
}

.fpc-credentials-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 30px;
}

.fpc-cred-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(22, 101, 52, 0.08);
    border: 1px solid rgba(22, 101, 52, 0.22);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #166534;
    margin-bottom: 12px;
}

.fpc-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16A34A;
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
    animation: fpcPulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes fpcPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(22, 163, 74, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
    }
}

.fpc-cred-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--ab-text-dark);
    line-height: 1.25;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.fpc-cred-sub {
    font-size: 0.9rem;
    color: var(--ab-text-muted);
    line-height: 1.55;
    margin: 0;
}

.fpc-legal-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.legal-badge-card {
    background: #FFFFFF;
    border: 1.5px solid rgba(27, 67, 50, 0.09);
    border-radius: 20px;
    padding: 22px 16px 18px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.04), 0 2px 6px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-badge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s ease;
}

.card-mca::before {
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
}

.card-sfac::before {
    background: linear-gradient(90deg, #F59E0B 0%, #D97706 100%);
}

.card-fssai::before {
    background: linear-gradient(90deg, #0EA5E9 0%, #0284C7 100%);
}

.card-hq::before {
    background: linear-gradient(90deg, #EF4444 0%, #DC2626 100%);
}

.legal-badge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px -6px rgba(27, 67, 50, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.legal-badge-card:hover::before {
    height: 6px;
}

.legal-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.legal-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-badge-card:hover .legal-icon-wrap {
    transform: scale(1.1) rotate(2deg);
}

.icon-mca {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.icon-sfac {
    background: #FFFFFF;
    border: 1.5px solid rgba(22, 101, 52, 0.22);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 4px;
}

.legal-icon-img {
    width: 36px;
    height: 36px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.icon-fssai {
    background: #FFFFFF;
    border: 1.5px solid rgba(5, 150, 105, 0.22);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.06);
    padding: 3px;
}

.icon-hq {
    background: #FFFFFF;
    border: 1.5px solid rgba(220, 38, 38, 0.22);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.06);
    padding: 3px;
}

.legal-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    line-height: 1;
}

.pill-emerald {
    background: #ECFDF5;
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.pill-amber {
    background: #FFFBEB;
    color: #B45309;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.pill-sky {
    background: #F0F9FF;
    color: #0369A1;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.pill-rose {
    background: #FEF2F2;
    color: #B91C1C;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.legal-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.legal-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: var(--ab-text-muted);
    margin-bottom: 8px;
}

.legal-code-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    background: #F8FAF8;
    border: 1px solid rgba(27, 67, 50, 0.08);
    border-radius: 8px;
    padding: 6px 6px 6px 8px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.legal-code-row:hover {
    border-color: rgba(27, 67, 50, 0.2);
    background: #F1F6F2;
}

.legal-code-text {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--ab-text-dark);
    letter-spacing: -0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 1;
    min-width: 0;
}

.legal-tag-prefix {
    font-family: 'Outfit', sans-serif;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    padding: 1px 5px;
    border-radius: 4px;
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    flex-shrink: 0;
}

.legal-tag-prefix.tag-fssai {
    background: rgba(14, 165, 233, 0.14);
    color: #0369A1;
}

.legal-code-val {
    color: #047857;
}

.card-fssai .legal-code-val {
    color: #0369A1;
}

.legal-copy-btn {
    position: relative;
    background: #FFFFFF;
    border: 1px solid rgba(27, 67, 50, 0.15);
    border-radius: 6px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #4B5563;
    padding: 0;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.legal-copy-btn:hover {
    background: #ECFDF5;
    color: #047857;
    border-color: #10B981;
    transform: scale(1.06);
}

.legal-copy-btn.copied {
    background: #10B981;
    color: #FFFFFF;
    border-color: #10B981;
}

.copy-tooltip {
    position: absolute;
    bottom: 118%;
    right: 50%;
    transform: translateX(50%);
    background: #1F2937;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.18s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.legal-copy-btn:hover .copy-tooltip,
.legal-copy-btn.copied .copy-tooltip {
    opacity: 1;
    visibility: visible;
}

.legal-val-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--ab-text-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.legal-sub {
    font-size: 0.74rem;
    color: var(--ab-text-muted);
    line-height: 1.45;
    margin-bottom: 14px;
}

.legal-card-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px dashed rgba(27, 67, 50, 0.1);
    font-size: 0.7rem;
    color: #6B7280;
    font-weight: 600;
    line-height: 1.3;
    margin-top: auto;
}

.footer-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #9CA3AF;
    flex-shrink: 0;
}

.card-mca .footer-dot { background: #10B981; }
.card-sfac .footer-dot { background: #F59E0B; }
.card-fssai .footer-dot { background: #0EA5E9; }
.card-hq .footer-dot { background: #EF4444; }

/* 5. Interactive Dossier Gateway Card */
.fpc-gateway-card {
    background: linear-gradient(135deg, #1E3A2B 0%, #152B20 100%);
    border-radius: 20px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(27, 67, 36, 0.22);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.gateway-left {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 68%;
}

.gateway-logo-wrap {
    width: 76px;
    height: 76px;
    border-radius: 18px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.gateway-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gateway-tag {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #F59E0B;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.gateway-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 8px;
    line-height: 1.3;
    font-family: 'Outfit', sans-serif;
}

.gateway-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    margin: 0;
}

.gateway-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.gateway-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #B85D19;
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(184, 93, 25, 0.4);
    white-space: nowrap;
}

.gateway-btn:hover {
    background: #D97706;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(184, 93, 25, 0.5);
    color: #FFFFFF !important;
}

.gateway-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: right;
}

/* Dark Mode Overrides for Section 5 */
body.dark-mode .about-fpc-sec {
    background: var(--ab-bg-warm);
}

body.dark-mode .fpc-showcase-container {
    background: #181E1B;
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .fpc-arch-diagram-card {
    background: #141916;
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .fpc-arch-title-bar {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .arch-title-text {
    color: #F3F4F6;
}

body.dark-mode .fpc-arch-step {
    background: #1E2621;
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .fpc-arch-step h4 {
    color: #F3F4F6;
}

body.dark-mode .fpc-arch-step p {
    color: #9CA3AF;
}

body.dark-mode .fpc-arch-step-parent {
    background: #252D26;
    border-color: #D97706;
}

body.dark-mode .fpc-arch-step-brand {
    background: #1A2E22;
    border-color: #10B981;
}

body.dark-mode .fpc-block-heading {
    color: #F3F4F6;
}

body.dark-mode .fpc-pillar-card {
    background: #141916;
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .fpc-pillar-card h4 {
    color: #F3F4F6;
}

body.dark-mode .fpc-pillar-card p {
    color: #9CA3AF;
}

body.dark-mode .pillar-icon-glow {
    background: #1E2621;
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .pillar-stat-pill {
    background: #1E2621;
    color: #4ADE80;
    border-color: rgba(74, 222, 128, 0.3);
}

body.dark-mode .compare-card-mandi {
    background: rgba(127, 29, 29, 0.16);
    border-color: rgba(239, 68, 68, 0.3);
}

body.dark-mode .compare-card-mandi .compare-title {
    color: #F87171;
}

body.dark-mode .compare-card-mandi .compare-subtitle {
    color: #FCA5A5;
}

body.dark-mode .compare-card-mandi .compare-list li {
    color: #FECACA;
}

body.dark-mode .compare-card-citiblock {
    background: rgba(22, 101, 52, 0.22);
    border-color: rgba(74, 222, 128, 0.4);
}

body.dark-mode .compare-card-citiblock .compare-title {
    color: #4ADE80;
}

body.dark-mode .compare-card-citiblock .compare-subtitle {
    color: #86EFAC;
}

body.dark-mode .compare-card-citiblock .compare-list li {
    color: #BBF7D0;
}

body.dark-mode .fpc-cred-badge {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.25);
    color: #4ADE80;
}

body.dark-mode .fpc-cred-title {
    color: #F3F4F6;
}

body.dark-mode .fpc-cred-sub {
    color: #9CA3AF;
}

body.dark-mode .legal-badge-card {
    background: #151F19;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.35);
}

body.dark-mode .legal-badge-card:hover {
    box-shadow: 0 16px 32px -4px rgba(0, 0, 0, 0.5), 0 0 12px rgba(74, 222, 128, 0.12);
}

body.dark-mode .legal-code-row {
    background: #0E1612;
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .legal-code-row:hover {
    background: #14211A;
    border-color: rgba(74, 222, 128, 0.3);
}

body.dark-mode .legal-code-text {
    color: #E5E7EB;
}

body.dark-mode .legal-code-val {
    color: #4ADE80;
}

body.dark-mode .card-fssai .legal-code-val {
    color: #38BDF8;
}

body.dark-mode .legal-tag-prefix {
    background: rgba(74, 222, 128, 0.15);
    color: #4ADE80;
}

body.dark-mode .legal-tag-prefix.tag-fssai {
    background: rgba(56, 189, 248, 0.15);
    color: #38BDF8;
}

body.dark-mode .legal-copy-btn {
    background: #1E2D24;
    border-color: rgba(255, 255, 255, 0.12);
    color: #D1D5DB;
}

body.dark-mode .legal-copy-btn:hover {
    background: #047857;
    color: #FFFFFF;
    border-color: #10B981;
}

body.dark-mode .legal-val-title {
    color: #F9FAFB;
}

body.dark-mode .legal-label,
body.dark-mode .legal-sub {
    color: #9CA3AF;
}

body.dark-mode .legal-card-footer {
    border-top-color: rgba(255, 255, 255, 0.08);
    color: #9CA3AF;
}

body.dark-mode .fpc-gateway-card {
    background: linear-gradient(135deg, #14231A 0%, #0F1A13 100%);
    border-color: rgba(74, 222, 128, 0.2);
}

/* ==========================================================================
   8.7 ABOUT FAQ ACCORDION (SEO & Customer Confidence)
   ========================================================================== */
.about-faq-sec {
    padding: 75px 0 90px;
    background: #FFFFFF;
}

.ab-faq-stack {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ab-faq-item {
    background: var(--ab-bg-warm);
    border: 1.5px solid var(--ab-border);
    border-radius: var(--ab-radius-md);
    overflow: hidden;
    transition: all 0.25s ease;
}

.ab-faq-item.is-open {
    background: #FFFFFF;
    border-color: var(--ab-primary);
    box-shadow: var(--ab-shadow-sm);
}

.ab-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--ab-text-dark);
    text-align: left;
    cursor: pointer;
    line-height: 1.35;
}

.ab-faq-q:hover {
    color: var(--ab-primary);
}

.ab-faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid var(--ab-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ab-primary);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.ab-faq-item.is-open .ab-faq-toggle {
    transform: rotate(45deg);
    background: var(--ab-primary);
    color: #FFFFFF;
    border-color: var(--ab-primary);
}

.ab-faq-a {
    display: none;
    padding: 0 24px 22px;
    font-size: 0.94rem;
    color: var(--ab-text-muted);
    line-height: 1.7;
}

.ab-faq-item.is-open .ab-faq-a {
    display: block;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Mobile & Tablet Perfection)
   ========================================================================== */
@media (max-width: 991px) {
    .about-hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 36px;
    }
    .hero-left-content {
        max-width: 100%;
    }
    .hero-art-img {
        max-width: 520px;
    }
    .about-story-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }
    .quote-highlight-card {
        grid-template-columns: minmax(0, 1fr);
    }
    .quote-visual-col {
        min-height: 240px;
    }
    .values-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .journey-header-stamp {
        position: static;
        margin: 16px auto 0;
        display: inline-block;
    }
    .journey-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grains-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
    .fpc-showcase-container {
        padding: 40px 28px;
    }
    .fpc-arch-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .fpc-arch-arrow {
        transform: rotate(90deg);
        padding: 6px 0;
    }
    .fpc-pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .fpc-compare-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .fpc-legal-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .fpc-gateway-card {
        padding: 32px 28px;
    }
}

@media (max-width: 768px) {
    /* Container & Global Mobile Typography */
    .about-container {
        padding: 0 16px;
    }
    .ab-title-display br,
    .hero-title br,
    .section-title br,
    .cta-title br {
        display: none;
    }
    .ab-badge-minimal {
        font-size: 0.72rem;
        letter-spacing: 1px;
        gap: 6px;
        margin-bottom: 12px;
    }
    .section-subtitle {
        font-size: 0.92rem !important;
        line-height: 1.55 !important;
        margin-top: 8px !important;
        margin-bottom: 24px !important;
    }
    .values-header {
        margin-bottom: 28px !important;
    }

    /* 1. Hero Section */
    .about-hero-sec {
        padding: 16px 0 32px;
    }
    .about-hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }
    .hero-left-content {
        max-width: 100%;
    }
    .hero-title {
        font-size: clamp(1.75rem, 6.2vw, 2.3rem);
        line-height: 1.18;
        margin-bottom: 14px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .ab-parent-callout-card {
        padding: 13px 14px;
        gap: 12px;
        margin-bottom: 20px;
    }
    .callout-icon-box {
        width: 36px;
        height: 36px;
    }
    .callout-top-row {
        flex-wrap: wrap;
        gap: 6px;
    }
    .callout-main-statement {
        font-size: 0.88rem;
        line-height: 1.45;
    }
    .callout-bottom-row {
        gap: 6px;
    }
    .cin-code {
        font-size: 0.72rem;
    }
    .hero-lead-text {
        font-size: 1.02rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    .hero-subtext {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 22px;
    }
    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 24px;
    }
    .hero-actions .btn-ab {
        width: 100%;
        min-height: 48px;
        font-size: 0.94rem;
        padding: 14px 22px;
    }
    .hero-trust-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding-top: 18px;
        border-top: 1px solid var(--ab-border);
    }
    .trust-pillar-item {
        background: #FFFFFF;
        border: 1px solid var(--ab-border);
        border-radius: 14px;
        padding: 12px 10px;
        box-shadow: var(--ab-shadow-sm);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .trust-pillar-circle {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    .trust-pillar-title {
        font-size: 0.8rem;
        margin-bottom: 2px;
        white-space: normal;
        line-height: 1.25;
        overflow: visible;
        text-overflow: clip;
    }
    .trust-pillar-sub {
        font-size: 0.68rem;
        white-space: normal;
        line-height: 1.25;
        overflow: visible;
        text-overflow: clip;
    }
    .hero-right-visual {
        margin-top: 14px;
        margin-bottom: 6px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .hero-art-img {
        width: 100%;
        max-width: 440px;
        height: auto;
        border-radius: 16px;
        filter: drop-shadow(0 8px 25px rgba(84, 35, 17, 0.09));
    }

    /* 2. Impact Stats Floating Bar */
    .about-stats-sec {
        padding: 0 0 32px;
    }
    .stats-card-pill {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 14px;
        border-radius: 18px;
    }
    .stat-col {
        background: var(--ab-bg-warm);
        border: 1px solid var(--ab-border);
        border-radius: 12px;
        padding: 12px 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }
    .stat-col::after {
        display: none !important;
    }
    .stat-circle {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    .stat-number {
        font-size: 1.45rem;
        line-height: 1.1;
    }
    .stat-title {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    .stat-sub {
        font-size: 0.68rem;
        line-height: 1.25;
    }

    /* 2.5 Panoramic Strip */
    .about-panoramic-sec {
        padding: 0 0 42px;
    }
    .panoramic-strip-card {
        border-radius: 18px;
    }
    .panoramic-img-desktop,
    .panoramic-hotspot-btn {
        display: none;
    }
    .panoramic-mobile-content {
        display: block;
        padding: 34px 18px;
        text-align: center;
        background: linear-gradient(180deg, rgba(30, 58, 43, 0.84) 0%, rgba(18, 38, 28, 0.94) 100%), 
                    url('../images/about-panoramic-clean-bg.jpg') center/cover no-repeat;
        color: #FFFFFF;
        border-radius: 16px;
    }
    .panoramic-mobile-quote {
        font-family: 'Playfair Display', Georgia, serif;
        font-style: italic;
        font-size: 1.35rem;
        color: #FFFFFF;
        margin: 0 0 8px;
        line-height: 1.28;
    }
    .panoramic-mobile-brand {
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: #FEF3C7;
        margin-bottom: 18px;
    }
    .btn-panoramic-mobile {
        background: var(--ab-accent);
        color: #FFFFFF !important;
        padding: 12px 24px;
        font-size: 0.9rem;
        box-shadow: 0 4px 14px rgba(184, 93, 25, 0.35);
    }

    /* 3. Roots & Heritage */
    .about-story-sec {
        padding: 36px 0 44px;
    }
    .about-story-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 26px;
    }
    .story-visual-wrap {
        border-radius: 16px;
    }
    .story-visual-wrap img {
        width: 100%;
        height: auto;
        border-radius: 16px;
    }
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2.05rem);
        line-height: 1.22;
        margin-bottom: 16px;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .story-intro-p {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }
    .story-pillars {
        gap: 12px;
        margin-bottom: 24px;
    }
    .story-pillar-item {
        gap: 12px;
        align-items: flex-start;
    }
    .pillar-icon-box {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 1.05rem;
        border-radius: 10px;
        flex-shrink: 0;
    }
    .pillar-text h4 {
        font-size: 0.94rem;
        margin-bottom: 3px;
    }
    .pillar-text p {
        font-size: 0.84rem;
        line-height: 1.48;
    }
    .story-footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    .story-footer-row .btn-ab {
        width: 100%;
        min-height: 48px;
    }
    .cursive-badge {
        font-size: 1.35rem;
        transform: rotate(-1deg);
    }

    /* 4. Ancient Superfood Grains */
    .about-grains-sec {
        padding: 36px 0 44px;
    }
    .sf-header {
        margin-bottom: 24px;
    }
    .sf-benchmark-strip {
        gap: 8px;
        margin-top: 16px;
    }
    .sf-benchmark-pill {
        padding: 6px 12px;
        gap: 8px;
    }
    .sf-bench-icon {
        font-size: 1.05rem;
    }
    .sf-bench-text strong {
        font-size: 0.8rem;
    }
    .sf-bench-text span {
        font-size: 0.68rem;
    }
    .grains-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }
    .grain-card.sf-card {
        border-radius: 18px;
    }
    .sf-card-media {
        height: 150px;
    }
    .sf-floating-badge {
        bottom: 10px;
        left: 10px;
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    .sf-floating-origin {
        top: 10px;
        right: 10px;
        font-size: 0.65rem;
        padding: 2px 7px;
    }
    .sf-card-body {
        padding: 16px 14px;
    }
    .sf-card-body .grain-title-group h3 {
        font-size: 1.15rem;
    }
    .sf-grain-sub {
        font-size: 0.74rem;
    }
    .sf-card-body .grain-badge-row {
        gap: 5px;
        margin-bottom: 10px;
    }
    .grain-badge,
    .grain-badge-amber {
        font-size: 0.68rem;
        padding: 2px 7px;
    }
    .sf-card-body .grain-desc {
        font-size: 0.84rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    .sf-card-action {
        font-size: 0.82rem;
        padding-top: 12px;
    }
    .sf-eco-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 16px;
        margin-top: 26px;
        border-radius: 16px;
    }
    .sf-eco-divider {
        display: none;
    }
    .sf-eco-item {
        font-size: 0.82rem;
    }

    /* 5. Citiblock FPC Model Showcase Mobile */
    .about-fpc-sec {
        padding: 44px 0 54px;
    }
    .fpc-showcase-container {
        padding: 28px 18px;
        border-radius: 20px;
    }
    .fpc-showcase-header {
        margin-bottom: 30px;
    }
    .fpc-showcase-header .section-title {
        font-size: 1.65rem;
    }
    .fpc-arch-diagram-card {
        padding: 20px 16px 24px;
        margin-bottom: 32px;
        border-radius: 16px;
    }
    .fpc-arch-title-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 18px;
    }
    .fpc-arch-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .fpc-arch-arrow {
        transform: rotate(90deg);
        padding: 4px 0;
    }
    .fpc-pillars-section {
        margin-bottom: 32px;
    }
    .fpc-block-heading {
        font-size: 1.35rem;
    }
    .fpc-pillars-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .fpc-pillar-card {
        padding: 22px 18px;
        border-radius: 16px;
    }
    .fpc-compare-box {
        margin-bottom: 32px;
    }
    .rupee-flow-card {
        padding: 20px 16px;
        border-radius: 18px;
        margin: 20px 0 28px;
    }
    .rupee-flow-title {
        font-size: 1.15rem;
    }
    .meter-segment .seg-label {
        font-size: 0.65rem;
        padding: 0 4px;
    }
    .meter-legend-row {
        gap: 8px;
    }
    .leg-pill {
        font-size: 0.7rem;
    }
    .fpc-compare-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .compare-vs-nexus {
        position: static;
        transform: none;
        margin: 4px auto;
        order: 2;
    }
    .compare-card-mandi {
        order: 1;
    }
    .compare-card-citiblock {
        order: 3;
    }
    .compare-card {
        padding: 24px 20px;
        border-radius: 20px;
    }
    .compare-title {
        font-size: 1.1rem;
    }
    .compare-list li {
        font-size: 0.86rem;
    }
    .fpc-credentials-wrap {
        margin-bottom: 34px;
    }
    .fpc-credentials-head {
        text-align: left;
        margin-bottom: 20px;
    }
    .fpc-cred-title {
        font-size: 1.3rem;
    }
    .fpc-cred-sub {
        font-size: 0.84rem;
    }
    .fpc-legal-strip {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .legal-badge-card {
        padding: 20px 18px 16px;
    }
    .fpc-gateway-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 26px 20px;
        border-radius: 18px;
    }
    .gateway-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        max-width: 100%;
    }
    .gateway-title {
        font-size: 1.18rem;
    }
    .gateway-right {
        width: 100%;
        align-items: stretch;
    }
    .gateway-btn {
        width: 100%;
        justify-content: center;
    }
    .gateway-note {
        text-align: center;
    }

    /* 6. 4-Step Food Journey */
    .about-journey-sec {
        padding: 36px 0 44px;
    }
    .journey-header {
        margin-bottom: 26px;
    }
    .journey-header-stamp {
        position: static;
        margin: 10px auto 0;
        display: block;
        text-align: center;
    }
    .stamp-img {
        width: 75px;
        height: auto;
        margin: 0 auto;
    }
    .journey-steps-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }
    .journey-step-card {
        padding: 20px 16px;
        border-radius: 16px;
    }
    .step-num-badge {
        top: 16px;
        right: 16px;
        font-size: 0.76rem;
        padding: 2px 8px;
    }
    .step-icon-wrap {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
        border-radius: 10px;
        margin-bottom: 14px;
    }
    .step-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    .step-desc {
        font-size: 0.84rem;
        line-height: 1.48;
    }

    /* 7. Farmer Spotlight Quote */
    .about-quote-sec {
        padding: 28px 0 42px;
    }
    .quote-highlight-card {
        grid-template-columns: minmax(0, 1fr);
        border-radius: 18px;
        overflow: hidden;
    }
    .quote-content-pad {
        padding: 24px 18px 20px;
    }
    .quote-mark {
        font-size: 2.6rem;
        margin-bottom: 8px;
        line-height: 0.8;
    }
    .quote-lead {
        font-size: 1.25rem;
        line-height: 1.28;
        margin-bottom: 12px;
    }
    .quote-text {
        font-size: 0.88rem;
        line-height: 1.58;
        margin-bottom: 18px;
    }
    .author-info h5 {
        font-size: 0.95rem;
    }
    .author-info p {
        font-size: 0.78rem;
        line-height: 1.35;
    }
    .quote-visual-col {
        height: 240px;
        min-height: 240px;
        max-height: 260px;
        width: 100%;
        overflow: hidden;
    }
    .quote-visual-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 20%;
    }

    /* 8. Core Values */
    .about-values-sec {
        padding: 36px 0 44px;
    }
    .values-cards-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }
    .val-card {
        padding: 20px 16px;
        border-radius: 16px;
    }
    .val-icon-bubble {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        margin-bottom: 14px;
        border-radius: 12px;
    }
    .val-title {
        font-size: 1.05rem;
        margin-bottom: 6px;
    }
    .val-desc {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* 8.5 FAQ Accordion */
    .about-faq-sec {
        padding: 36px 0 44px;
    }
    .ab-faq-stack {
        gap: 10px;
    }
    .ab-faq-item {
        border-radius: 14px;
    }
    .ab-faq-q {
        padding: 14px 16px;
        font-size: 0.94rem;
        line-height: 1.35;
        gap: 12px;
    }
    .ab-faq-toggle {
        width: 26px;
        height: 26px;
        font-size: 1.1rem;
    }
    .ab-faq-a {
        padding: 0 16px 16px;
        font-size: 0.86rem;
        line-height: 1.62;
    }

    /* 9. River Sunset CTA */
    .about-cta-sec {
        padding: 48px 0 56px;
    }
    .cta-title {
        font-size: clamp(1.55rem, 5.2vw, 2.1rem);
        line-height: 1.2;
        margin-bottom: 12px;
    }
    .cta-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 22px;
    }
    .cta-btn-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }
    .cta-btn-row .btn-ab {
        width: 100%;
        min-height: 48px;
        padding: 14px 22px;
    }

    /* 10. Brand Pledge Bar & Mobile Nav Clearance */
    .about-pledge-bar {
        padding: 16px 0 calc(78px + env(safe-area-inset-bottom, 16px));
    }
    .pledge-inner {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        font-size: 0.8rem;
        text-align: center;
    }
    .pledge-dot {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.5rem, 6.8vw, 1.95rem);
    }
    .hero-actions .btn-ab {
        font-size: 0.92rem;
    }
    .stat-number {
        font-size: 1.35rem;
    }
    .panoramic-mobile-quote {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: clamp(1.35rem, 5.8vw, 1.75rem);
    }
}

@media (max-width: 360px) {
    .about-container {
        padding: 0 12px;
    }
    .hero-title {
        font-size: 1.45rem;
    }
    .hero-trust-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }
    .trust-pillar-item {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
    }
    .trust-pillar-circle {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .stats-card-pill {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }
    .stat-col {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
    }
    .stat-circle {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .btn-ab {
        font-size: 0.88rem;
        padding: 12px 18px;
    }
}

/* ==========================================================================
   5.5 OFFICIAL MCA VERIFICATION & STATUTORY ACCREDITATION SECTION
   ========================================================================== */
.about-mca-sec {
    position: relative;
    padding: 20px 0 70px;
}

.mca-verified-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #FAF8F4 60%, #F5EFEB 100%);
    border: 1.5px solid rgba(184, 93, 25, 0.22);
    border-radius: 28px;
    padding: 44px 44px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 48px -12px rgba(60, 34, 19, 0.08), 0 2px 10px rgba(0, 0, 0, 0.03);
}

.mca-verified-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #10B981 0%, #F59E0B 50%, #0284C7 100%);
}

.mca-verified-grid {
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 44px;
    align-items: center;
}

/* Plaque Col */
.mca-plaque-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mca-plaque-showcase {
    position: relative;
    width: 100%;
    max-width: 370px;
}

.mca-plaque-frame {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 36px -6px rgba(180, 83, 9, 0.22), 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    background: #FFFFFF;
    border: 3px solid rgba(217, 119, 6, 0.2);
}

.mca-plaque-frame:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 24px 48px -8px rgba(180, 83, 9, 0.3), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.mca-plaque-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.mca-plaque-seal {
    margin-top: 14px;
}

.mca-seal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 999px;
    background: #ECFDF5;
    border: 1.5px solid #A7F3D0;
    color: #047857;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 8px rgba(4, 120, 87, 0.1);
}

.mca-plaque-caption {
    font-size: 0.78rem;
    color: var(--ab-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.mca-caption-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10B981;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* Details Col */
.mca-details-col {
    display: flex;
    flex-direction: column;
}

.mca-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.mca-badge-icon {
    font-size: 1rem;
}

.mca-badge-text {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #92400E;
}

.mca-badge-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 11px;
    border-radius: 999px;
    background: #059669;
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 2px 6px rgba(5, 150, 105, 0.3);
}

.mca-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.95rem;
    font-weight: 800;
    color: #2C1810;
    line-height: 1.24;
    margin: 0 0 12px;
    letter-spacing: -0.015em;
}

.mca-title-gold {
    background: linear-gradient(135deg, #B45309 0%, #D97706 60%, #92400E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mca-lead {
    font-size: 0.95rem;
    color: #4A3528;
    line-height: 1.6;
    margin: 0 0 22px;
}

.mca-lead strong {
    color: #1F2937;
}

/* Master Data Grid */
.mca-data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.mca-data-card {
    background: #FFFFFF;
    border: 1.2px solid rgba(27, 67, 50, 0.1);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.25s ease;
}

.mca-data-card:hover {
    border-color: rgba(217, 119, 6, 0.35);
    box-shadow: 0 6px 16px rgba(60, 34, 19, 0.05);
}

.mca-data-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #78716C;
    margin-bottom: 5px;
}

.mca-cin-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.mca-cin-text {
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.95rem;
    font-weight: 800;
    color: #065F46;
    letter-spacing: 0.4px;
}

.mca-copy-btn {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    padding: 0;
    flex-shrink: 0;
}

.mca-copy-btn:hover {
    background: #E5E7EB;
    color: #111827;
}

.mca-copy-btn.copied {
    background: #ECFDF5;
    border-color: #A7F3D0;
    color: #059669;
}

.mca-val-main {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1F2937;
    line-height: 1.3;
}

.mca-val-sub {
    display: block;
    font-size: 0.75rem;
    color: #6B7280;
    margin-top: 3px;
}

.mca-status-active {
    color: #059669 !important;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.mca-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10B981;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
}

/* Trust Points */
.mca-trust-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.mca-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.mca-trust-icon {
    font-size: 1.05rem;
    line-height: 1.3;
    flex-shrink: 0;
}

.mca-trust-body strong {
    display: inline;
    font-size: 0.86rem;
    font-weight: 700;
    color: #2C1810;
    margin-right: 4px;
}

.mca-trust-body span {
    font-size: 0.82rem;
    color: #574438;
    line-height: 1.45;
}

/* Actions Row */
.mca-actions-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-mca-verify {
    display: none !important;
}

.btn-mca-dossier {
    background: #FFFFFF;
    color: #92400E !important;
    border: 1.5px solid rgba(180, 83, 9, 0.35);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 11px 22px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-mca-dossier:hover {
    background: #FFFBEB;
    border-color: #B45309;
    color: #78350F !important;
    transform: translateY(-2px);
}

/* Dark Mode Overrides for MCA Section */
body.dark-mode .mca-verified-card {
    background: linear-gradient(145deg, #18201B 0%, #131A16 100%);
    border-color: rgba(217, 119, 6, 0.3);
    box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.5);
}

body.dark-mode .mca-plaque-frame {
    background: #1B2420;
    border-color: rgba(217, 119, 6, 0.35);
}

body.dark-mode .mca-title {
    color: #F3F4F6;
}

body.dark-mode .mca-lead {
    color: #D1D5DB;
}

body.dark-mode .mca-lead strong {
    color: #FFFFFF;
}

body.dark-mode .mca-data-card {
    background: #1E2822;
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .mca-data-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
}

body.dark-mode .mca-val-main {
    color: #F3F4F6;
}

body.dark-mode .mca-val-sub {
    color: #9CA3AF;
}

body.dark-mode .mca-trust-body strong {
    color: #F3F4F6;
}

body.dark-mode .mca-trust-body span {
    color: #9CA3AF;
}

body.dark-mode .btn-mca-dossier {
    background: #1B2420;
    color: #F59E0B !important;
    border-color: rgba(245, 158, 11, 0.4);
}

body.dark-mode .btn-mca-dossier:hover {
    background: #243028;
    color: #FBBF24 !important;
}

/* Responsive Rules for MCA Section */
@media (max-width: 991px) {
    .mca-verified-card {
        padding: 36px 28px;
    }
    .mca-verified-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .mca-plaque-col {
        max-width: 420px;
        margin: 0 auto;
    }
    .mca-title {
        font-size: 1.65rem;
    }
}

@media (max-width: 640px) {
    .mca-verified-card {
        padding: 28px 18px;
        border-radius: 20px;
    }
    .mca-title {
        font-size: 1.4rem;
    }
    .mca-data-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .mca-actions-row {
        flex-direction: column;
        align-items: stretch;
    }
    .mca-actions-row .btn-ab {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}
