
/* ============================================================
   KRISHIOS LANDING PAGE — PREMIUM STYLESHEET
   QuantumJet Technologies © 2026
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
    /* Brand Colors */
    --color-primary:        #1E4D35;   /* Deep forest green */
    --color-primary-light:  #2D6B4A;
    --color-primary-mid:    #3A8A5F;
    --color-secondary:      #5CB87A;   /* Fresh leaf green */
    --color-accent:         #F5A623;   /* Harvest amber */
    --color-accent-warm:    #E8834A;

    /* Neutrals */
    --color-text:           #0F1A0F;
    --color-text-muted:     #4A5C4A;
    --color-text-light:     #7A8F7A;
    --color-white:          #FFFFFF;
    --color-bg:             #FFFFFF;
    --color-bg-soft:        #F4F8F4;
    --color-bg-subtle:      #EDF5EE;
    --color-dark:           #0D1A0F;
    --color-dark-mid:       #121F12;
    --color-border:         #DDE8DD;
    --color-border-light:   #ECF3EC;

    /* Gradients */
    --gradient-primary:     linear-gradient(135deg, #1E4D35 0%, #3A8A5F 100%);
    --gradient-hero:        linear-gradient(135deg, #f0f9f2 0%, #e8f5e9 50%, #f8fff8 100%);
    --gradient-card-shine:  linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.01) 100%);
    --gradient-text:        linear-gradient(135deg, #1E4D35 0%, #5CB87A 100%);

    /* Shadows */
    --shadow-xs:    0 1px 3px rgba(0,0,0,0.05);
    --shadow-sm:    0 4px 12px rgba(0,0,0,0.06);
    --shadow-md:    0 8px 24px rgba(0,0,0,0.09);
    --shadow-lg:    0 16px 48px rgba(0,0,0,0.12);
    --shadow-xl:    0 24px 64px rgba(0,0,0,0.14);
    --shadow-green: 0 8px 32px rgba(30,77,53,0.18);

    /* Radii */
    --radius-sm:    8px;
    --radius-md:    14px;
    --radius-lg:    20px;
    --radius-xl:    28px;
    --radius-pill:  999px;

    /* Spacing */
    --section-pad:  7rem;
    --container-w:  1200px;

    /* Transitions */
    --ease:         all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring:  all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Typography */
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden; /* prevent horizontal scroll on all browsers/iOS */
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.65;
    overflow-x: hidden;
    max-width: 100vw; /* hard cap at viewport width */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul { list-style: none; }
a  { text-decoration: none; color: inherit; transition: var(--ease); }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   3. TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; font-weight: 600; }

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 2rem;
}

.container.narrow { max-width: 780px; }

.section {
    padding: var(--section-pad) 0;
    overflow-x: clip; /* prevent any child from causing horizontal scroll */
}

.text-center  { text-align: center; }
.text-white   { color: var(--color-white) !important; }
.text-light-muted { color: rgba(255,255,255,0.65); }

.bg-dark      { background-color: var(--color-dark); }
.bg-soft      { background-color: var(--color-bg-soft); }

/* ============================================================
   5. SHARED SECTION HEADER
   ============================================================ */
.section-header {
    margin-bottom: 4rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-secondary);
    background: rgba(92,184,122,0.1);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
    border: 1px solid rgba(92,184,122,0.2);
}

.section-eyebrow.eyebrow-light {
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
}

.section-eyebrow.eyebrow-accent {
    color: var(--color-accent);
    background: rgba(245,166,35,0.1);
    border-color: rgba(245,166,35,0.25);
}

.section-title {
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================================
   6. SHARED BUTTON SYSTEM
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--ease);
    white-space: nowrap;
    line-height: 1;
}

.btn-md  { padding: 0.85rem 1.8rem; font-size: 1rem; }
.btn-hero { padding: 1rem 2.2rem; font-size: 1.05rem; border-radius: var(--radius-md); }

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-green);
    border-color: transparent;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(30,77,53,0.28);
    filter: brightness(1.08);
}

.btn-outline {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}
.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: transparent;
    border-radius: var(--radius-sm);
}
.btn-outline-dark:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-ghost {
    color: var(--color-text-muted);
    border-color: var(--color-border);
    background: transparent;
}
.btn-ghost:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    border-color: rgba(255,255,255,0.5);
    color: var(--color-white);
    background: rgba(255,255,255,0.08);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--color-white);
    border-color: transparent;
    font-size: 1rem;
    padding: 1rem 1.8rem;
    border-radius: var(--radius-md);
    justify-content: center;
    box-shadow: 0 8px 28px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(37,211,102,0.4);
}

.btn-full {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ============================================================
   7. SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.85); }
}

/* ============================================================
   8. TEXT GRADIENT UTILITY
   ============================================================ */
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   9. NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.1rem 0;
    transition: var(--ease);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.7rem 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), var(--shadow-sm);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
}

.logo-highlight {
    color: var(--color-secondary);
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: var(--ease);
}
.nav-link:hover {
    color: var(--color-primary);
    background: var(--color-bg-subtle);
}

.nav-btn {
    margin-left: 0.25rem;
    font-size: 0.88rem;
    padding: 0.55rem 1.2rem;
}

/* Mobile Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: var(--ease);
}
.mobile-toggle:hover { background: var(--color-bg-subtle); }

.bar {
    width: 24px;
    height: 2.5px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--ease);
    display: block;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    display: none;
    flex-direction: column;
    background: var(--color-white);
    border-top: 1px solid var(--color-border-light);
    padding: 1.25rem 1.5rem 1.75rem;
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
}

.mobile-nav-drawer.open {
    display: flex;
    max-height: 600px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    list-style: none;
    margin-bottom: 1.25rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-muted);
    border-radius: var(--radius-sm);
    transition: var(--ease);
}
.mobile-nav-link:hover {
    background: var(--color-bg-subtle);
    color: var(--color-primary);
}

.mobile-cta {
    margin-top: 0.5rem;
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
}

/* ============================================================
   10. HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
    background: var(--gradient-hero);
    overflow: hidden; /* clips shapes and floating cards */
}

/* Background decorative shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
}
.shape-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(92,184,122,0.22) 0%, transparent 70%);
    top: -120px;
    right: -80px;
}
.shape-2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(30,77,53,0.12) 0%, transparent 70%);
    bottom: 60px;
    left: -100px;
}
.shape-3 {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
    top: 40%;
    left: 45%;
}

/* Hero layout */
.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

/* Hero Content */
.hero-content {
    animation: fadeInUp 0.75s ease-out both;
}

.hero-badge-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    background: rgba(92,184,122,0.12);
    border: 1px solid rgba(92,184,122,0.28);
    padding: 0.38rem 0.9rem;
    border-radius: var(--radius-pill);
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--color-secondary);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

.hero-badge-sub {
    font-size: 0.8rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.hero-heading {
    font-size: clamp(2.75rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--color-text);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 2rem;
}

/* Value chips row */
.hero-value-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.25rem;
}

.value-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 0.42rem 0.9rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-xs);
    transition: var(--ease);
}
.value-chip:hover {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-sm);
}
.chip-icon { font-size: 0.95rem; }

/* CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.hero-trust-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.trust-dot {
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-frame {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.04);
    overflow: visible; /* allows floating cards to show */
    animation: fadeInUp 0.85s 0.2s ease-out both;
    contain: layout; /* isolates layout context so floating cards don't affect page width */
}

.frame-top-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    background: #f5f5f5;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    border-bottom: 1px solid var(--color-border-light);
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dot-red    { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green  { background: #28C840; }

.frame-url-bar {
    margin-left: 0.5rem;
    font-size: 0.72rem;
    color: #888;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
    background: rgba(0,0,0,0.04);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
}

.hero-dashboard-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    object-fit: cover;
}

/* Floating info cards on hero image */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 0.7rem 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}
.card-ndvi {
    bottom: 18%;
    left: -5%;   /* was -10%, pulled inward */
    animation-delay: 0s;
}
.card-saving {
    top: 20%;
    right: -4%;  /* was -8%, pulled inward */
    animation-delay: 1.8s;
}

.float-icon  { font-size: 1.4rem; flex-shrink: 0; }
.float-title { font-size: 0.7rem; font-weight: 600; color: var(--color-text-light); text-transform: uppercase; letter-spacing: 0.05em; }
.float-value { font-size: 0.88rem; font-weight: 700; color: var(--color-text); margin-top: 0.15rem; }
.float-value.good { color: #1E7A3A; }

/* ============================================================
   11. STATS STRIP
   ============================================================ */
.stats-strip {
    background: var(--color-white);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    padding: 2.5rem 0;
}

.stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 0.5rem 3.5rem;
    flex: 1;
    min-width: 160px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-light);
    line-height: 1.3;
    max-width: 120px;
    margin: 0 auto;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--color-border);
    flex-shrink: 0;
}

/* ============================================================
   12. WHAT WE DO — COMPARISON SECTION
   ============================================================ */
.section-shift {
    background: var(--color-bg-soft);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 1020px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    border: 1.5px solid var(--color-border-light);
    transition: var(--ease);
}

.comparison-old {
    opacity: 0.85;
}
.comparison-old:hover {
    opacity: 1;
    box-shadow: var(--shadow-sm);
}

.comparison-new {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 1px rgba(92,184,122,0.15), var(--shadow-md);
    background: linear-gradient(135deg, #fff 60%, #f4fff7 100%);
}
.comparison-new:hover {
    box-shadow: 0 0 0 2px rgba(92,184,122,0.3), var(--shadow-lg);
    transform: translateY(-4px);
}

.comparison-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.28rem 0.75rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.25rem;
}

.tag-old {
    background: #f3f3f3;
    color: #888;
    border: 1px solid #ddd;
}

.tag-new {
    background: rgba(92,184,122,0.12);
    color: var(--color-primary);
    border: 1px solid rgba(92,184,122,0.3);
}

.comparison-icon {
    font-size: 2.25rem;
    margin-bottom: 0.9rem;
    line-height: 1;
}

.comparison-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}
.comparison-old h3 { color: #666; }

.comparison-quote {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--color-border);
}
.comparison-new .comparison-quote {
    border-color: var(--color-secondary);
    color: var(--color-primary);
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}
.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}
.comparison-new .comparison-list li { color: var(--color-text); }

.list-icon {
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 0.05rem;
}
.list-icon.check { color: var(--color-secondary); }
.list-icon.cross  { color: #d9534f; }

/* VS divider */
.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6rem;
    flex-shrink: 0;
}
.vs-circle {
    width: 44px;
    height: 44px;
    background: var(--color-bg-soft);
    border: 1.5px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
}

/* ============================================================
   13. PROBLEM / NARRATIVE SECTION
   ============================================================ */
.bg-narrative {
    background: var(--color-white);
    overflow-x: hidden;
}

.narrative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}




.narrative-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.narrative-outcomes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.outcome-card {
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1.5px solid;
}

.outcome-over {
    background: #fff5f5;
    border-color: #fecaca;
}
.outcome-under {
    background: #fffbf0;
    border-color: #fde68a;
}

.outcome-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}
.outcome-over .outcome-label   { color: #c0392b; }
.outcome-under .outcome-label  { color: #b8730a; }

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

.narrative-resolution {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}
.narrative-resolution strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Narrative Visual */
.narrative-visual { position: relative; }

.narrative-img-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
    isolation: isolate; /* creates new stacking context, prevents chip overflow escaping parent */
}

.narrative-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: block;
    object-fit: cover;
}

.narrative-overlay-chip {
    position: absolute;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 0.65rem 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    z-index: 5;
    animation: float 5s ease-in-out infinite;
}

.chip-soil {
    top: 12%;
    left: -6%;   /* was -12% */
    animation-delay: 0s;
}
.chip-crop {
    bottom: 14%;
    right: -5%;  /* was -10% */
    animation-delay: 2.2s;
}

.chip-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
}

.chip-metric {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text);
}
.chip-metric.metric-good { color: #1E7A3A; }

/* ============================================================
   14. HOW IT WORKS — REDESIGNED STEPPER
   ============================================================ */
.section-dark {
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(92,184,122,0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(30,77,53,0.12) 0%, transparent 55%);
    pointer-events: none;
}

/* Track wrapper — holds cards and separate arrow indicators between them */
.steps-track {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0.5rem;
    align-items: stretch; /* ensures all cards in a row have the same height */
    z-index: 1;
}

/* 
   The Arrow — now a separate element that sits 
   BETWEEN cards, with no bleed onto the card itself.
*/
.step-arrow {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(92,184,122,0.1) 0%, 
        rgba(92,184,122,0.6) 50%, 
        rgba(92,184,122,0.1) 100%
    );
    margin-top: 51px; /* perfectly aligns with icon centers */
    position: relative;
    opacity: 0.8;
}

/* Arrowhead */
.step-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-top: 2px solid rgba(92,184,122,0.8);
    border-right: 2px solid rgba(92,184,122,0.8);
    transform: rotate(45deg);
    filter: drop-shadow(0 0 5px var(--color-secondary));
}

/* Glow on the arrow stick */
.step-arrow::before {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: 0 0 10px 1px var(--color-secondary);
    opacity: 0.15;
}

/* Remove the old full-background line if any remnants exist */
.steps-connector-line { display: none; }

/* Individual step card */
.step-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 0 0 1.75rem 0;
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    z-index: 1;
}
.step-card::before {
    /* subtle top glow bar */
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(92,184,122,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.step-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(92,184,122,0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(92,184,122,0.15);
}
.step-card:hover::before { opacity: 1; }

/* Card top row: circle + icon side by side */
.step-card-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1.5rem 1.25rem;
}

/* Numbered circle with gradient ring */
.step-num-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(92,184,122,0.18), rgba(30,77,53,0.35));
    border: 1.5px solid rgba(92,184,122,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: var(--ease);
}
.step-num-circle::after {
    /* outer glow ring */
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(92,184,122,0.12);
    transition: var(--ease);
}
.step-card:hover .step-num-circle {
    background: linear-gradient(135deg, rgba(92,184,122,0.28), rgba(30,77,53,0.5));
    border-color: rgba(92,184,122,0.6);
}
.step-card:hover .step-num-circle::after {
    border-color: rgba(92,184,122,0.25);
    inset: -6px;
}

.step-num-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-secondary);
    letter-spacing: 0.02em;
    line-height: 1;
}

/* Emoji icon pill */
.step-icon-pill {
    font-size: 1.65rem;
    line-height: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 0.55rem 0.65rem;
    transition: var(--ease);
    user-select: none;
}
.step-card:hover .step-icon-pill {
    background: rgba(92,184,122,0.1);
    border-color: rgba(92,184,122,0.2);
    transform: scale(1.1) rotate(-4deg);
}

/* Card body */
.step-card-body {
    padding: 0 1.5rem;
}

.step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.step-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* Bottom tag with pulsing dot */
.step-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    background: rgba(92,184,122,0.08);
    border: 1px solid rgba(92,184,122,0.18);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-pill);
}

.step-tag-dot {
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulseDot 2.5s ease-in-out infinite;
}

/* Old classes kept for no-breakage */
.step-connector { display: none; }
.step-number-badge { display: none; }
.step-icon-wrap { display: none; }

/* ============================================================
   15. BENEFITS SECTION
   ============================================================ */
.section-benefits {
    background: var(--color-bg-soft);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1.5px solid var(--color-border-light);
    transition: var(--ease);
    position: relative;
}
.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.benefit-card-highlight {
    border-color: var(--color-primary);
    background: linear-gradient(160deg, #ffffff 60%, #f0f8f2 100%);
    box-shadow: 0 0 0 1px rgba(30,77,53,0.08), var(--shadow-sm);
}

.benefit-highlight-tag {
    position: absolute;
    top: -14px;
    left: 2rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.28rem 0.85rem;
    border-radius: var(--radius-pill);
}

.benefit-icon-row {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.benefit-title {
    font-size: 1.35rem;
    margin-bottom: 0.65rem;
    color: var(--color-text);
}

.benefit-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    list-style: none;
}

.benefit-list li {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.5;
}
.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 800;
    font-size: 0.9rem;
}
.benefit-card-highlight .benefit-list li::before {
    color: var(--color-primary);
}

/* ============================================================
   16. SATELLITE INTELLIGENCE SECTION
   ============================================================ */
.section-intelligence {
    background: var(--color-bg-soft);
}

.intelligence-layout {
    display: grid;
    grid-template-columns: 0.9fr 2.2fr;
    gap: 5rem;
    align-items: start;
}

.intelligence-header {
    position: sticky;
    top: 7rem;
}

.intelligence-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 1.25rem 0 2rem;
}

.intelligence-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.intel-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    border: 1.5px solid var(--color-border-light);
    position: relative;
    overflow: hidden;
    transition: var(--ease);
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 1.25rem;
    align-items: start;
}
.intel-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.intel-card-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 2px 0 0 2px;
}
.accent-green { background: var(--color-secondary); }
.accent-blue  { background: #3B82F6; }
.accent-amber { background: var(--color-accent); }

.intel-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.green-icon { background: rgba(92,184,122,0.12); }
.blue-icon  { background: rgba(59,130,246,0.1); }
.amber-icon { background: rgba(245,166,35,0.12); }

.intel-index-name {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-light);
    padding-top: 0.2rem;
    align-self: center;
    white-space: nowrap;
    min-width: 52px;
}

.intel-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    grid-column: 3;
    grid-row: 1;
}

.intel-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 0.75rem;
    grid-column: 3;
    grid-row: 2;
}

.intel-use-case {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-light);
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border-light);
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-pill);
    grid-column: 3;
    grid-row: 3;
    width: fit-content;
}

/* ============================================================
   17. PLATFORM SHOWCASE SECTION
   ============================================================ */
.section-platform {
    background: var(--color-white);
}

.platform-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.showcase-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--color-border-light);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--ease);
}
.showcase-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.showcase-card-main {
    box-shadow: var(--shadow-lg);
}

.showcase-frame-bar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.1rem;
    background: #f4f4f4;
    border-bottom: 1px solid var(--color-border-light);
}

.frame-dots { display: flex; gap: 0.4rem; align-items: center; }

.frame-label {
    font-size: 0.72rem;
    color: #999;
    font-weight: 500;
    margin-left: 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.showcase-img-wrap {
    position: relative;
    overflow: hidden;
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.showcase-card:hover .showcase-img {
    transform: scale(1.02);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,20,10,0.55) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.showcase-card:hover .showcase-overlay { opacity: 1; }

.showcase-overlay-label {
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.showcase-caption {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--color-border-light);
    background: var(--color-bg-soft);
}

.caption-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 0.1rem;
}

.showcase-caption div {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}
.showcase-caption strong {
    color: var(--color-text);
}

/* Platform Feature Chips */
.platform-feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.platform-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-bg-soft);
    border: 1.5px solid var(--color-border);
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-pill);
    transition: var(--ease);
}
.platform-chip:hover {
    background: var(--color-white);
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.pchip-icon { font-size: 1rem; }

/* ============================================================
   18. CONNECT / SOCIAL SECTION
   ============================================================ */
.section-connect {
    background: var(--color-bg-soft);
}

.connect-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.connect-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 1rem 0 1.75rem;
}

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

.social-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--color-white);
    border: 1.5px solid var(--color-border-light);
    border-radius: var(--radius-md);
    transition: var(--ease);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
}
.social-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.linkedin-icon  { background: #E8F0FE; color: #0077B5; }
.facebook-icon  { background: #EEF2FF; color: #1877F2; }
.instagram-icon { background: #FEF3F5; color: #E4405F; }
.youtube-icon   { background: #FEF2F2; color: #FF0000; }

.social-label { font-size: 0.9rem; font-weight: 600; color: var(--color-text); }

/* WhatsApp CTA card */
.whatsapp-cta-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
}

.whatsapp-card-inner {
    padding: 2.5rem;
}

.whatsapp-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: rgba(37,211,102,0.1);
    border-radius: 50%;
    margin-bottom: 1.25rem;
}

.whatsapp-card-title {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.whatsapp-card-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.whatsapp-response-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--color-text-light);
    margin-top: 0.85rem;
    font-weight: 500;
}

/* ============================================================
   19. FINAL CTA SECTION
   ============================================================ */
.section-final-cta {
    position: relative;
    background: var(--gradient-primary);
    padding: 6rem 0;
    overflow: hidden;
    text-align: center;
}

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

.final-cta-shape-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -200px;
    right: -100px;
}

.final-cta-shape-2 {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    bottom: -120px;
    left: -60px;
}

.final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.final-cta-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    /* filter: brightness(10); */
    opacity: 0.9;
}

.final-cta-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.final-cta-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 2.5rem;
}

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

.final-cta-microcopy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* ============================================================
   20. FOOTER
   ============================================================ */
.footer {
    background: #0B160B;
    color: #8A9E8A;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
    opacity: 0.85;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer-highlight { color: var(--color-secondary); }

.footer-brand-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #6A7E6A;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-social-mini {
    display: flex;
    gap: 0.6rem;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: #8A9E8A;
    font-size: 0.75rem;
    font-weight: 700;
    transition: var(--ease);
    text-transform: lowercase;
}
.footer-social-icon:hover {
    background: rgba(92,184,122,0.15);
    color: var(--color-secondary);
    border-color: rgba(92,184,122,0.25);
}

.footer-col-title {
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    list-style: none;
}

.footer-link-list a {
    font-size: 0.87rem;
    color: #6A7E6A;
    transition: var(--ease);
}
.footer-link-list a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1.25rem;
}

.footer-copy {
    font-size: 0.82rem;
    color: #4A5C4A;
}

.footer-tagline {
    font-size: 0.8rem;
    color: #3A4C3A;
    font-style: italic;
}

.footer-devby {
    font-size: 0.78rem;
    color: #3A4C3A;
    width: 100%;
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    margin-top: 0.25rem;
}

.footer-dev-link {
    color: var(--color-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--ease);
}
.footer-dev-link:hover {
    color: var(--color-white);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================================
   21. RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
    :root { --section-pad: 5rem; }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-badge-row, .hero-value-chips, .hero-cta-group, .hero-trust-note {
        justify-content: center;
    }

    .hero-subtitle { margin: 0 auto 2rem; }

    .hero-visual { max-width: 560px; margin: 0 auto; }

    .hero-floating-card { display: none; }

    .steps-track {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .step-arrow { display: none; }
    .steps-connector-line { display: none; }

    .intelligence-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .intelligence-header {
        position: static;
        text-align: center;
    }
    .intelligence-header .section-eyebrow { display: block; }

    .connect-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .narrative-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .narrative-overlay-chip { display: none; }

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

/* ============================================================
   22. RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
    :root { --section-pad: 4rem; }

    .container { padding: 0 1.25rem; }

    /* Navbar mobile */
    .nav-links  { display: none; }
    .mobile-toggle { display: flex; }

    /* Hero */
    .hero { padding: 7rem 0 4rem; min-height: auto; }
    .hero-heading { font-size: 2.4rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-badge-row { flex-direction: column; align-items: center; gap: 0.5rem; }
    .btn-hero { width: 100%; justify-content: center; font-size: 1rem; }
    .hero-cta-group { flex-direction: column; align-items: stretch; }

    /* Stats */
    .stats-inner { gap: 0; }
    .stat-item { padding: 1rem 1.5rem; min-width: 50%; }
    .stat-divider { display: none; }

    /* Comparison */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .comparison-vs { padding-top: 0; }
    .vs-circle { margin: 0 auto; }

    /* Narrative outcomes */
    .narrative-outcomes { grid-template-columns: 1fr; }

    /* Steps */
    .steps-track { grid-template-columns: 1fr; }
    .steps-connector-line { display: none; }

    /* Benefits */
    .benefits-grid { grid-template-columns: 1fr; }

    /* Intelligence */
    .intel-card {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
    }
    .intel-index-name { grid-column: 2; grid-row: 1; align-self: start; }
    .intel-title    { grid-column: 2; grid-row: 2; }
    .intel-desc     { grid-column: 1 / -1; grid-row: 3; }
    .intel-use-case { grid-column: 1 / -1; grid-row: 4; }

    /* Platform showcase */
    .platform-showcase-grid { grid-template-columns: 1fr; }

    /* Social grid */
    .social-links-grid { grid-template-columns: 1fr; }

    /* Final CTA */
    .section-final-cta { padding: 4rem 0; }
    .final-cta-heading { font-size: 2rem; }
    .final-cta-buttons { flex-direction: column; align-items: stretch; }
    .btn-outline-white { justify-content: center; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.35rem;
    }
}

/* ============================================================
   23. RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
    .hero-heading { font-size: 2rem; }
    .section-title { font-size: 1.75rem; }
    .comparison-card { padding: 1.75rem; }
    .benefit-card   { padding: 1.75rem; }
    .platform-chip  { font-size: 0.78rem; }
    .stat-item      { min-width: 100%; border-bottom: 1px solid var(--color-border-light); }
}
