/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
    --navy-deepest: #090e1a;
    --navy-deep: #0b1225;
    --navy-mid: #0d1b3e;
    --navy-surface: #111827;
    --navy-card: #0f1b30;
    --blue-primary: #1d8eff;
    --blue-bright: #38caff;
    --blue-glow: rgba(29, 142, 255, 0.35);
    --blue-glow-soft: rgba(29, 142, 255, 0.12);
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-80: rgba(255, 255, 255, 0.8);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-55: rgba(255, 255, 255, 0.55);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-45: rgba(255, 255, 255, 0.45);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-08: rgba(255, 255, 255, 0.08);
    --white-04: rgba(255, 255, 255, 0.04);
    --border-subtle: rgba(255, 255, 255, 0.07);
    --border-blue: rgba(29, 142, 255, 0.4);
    --font-display: 'DM Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --grad-blue: linear-gradient(135deg, #1d8eff 0%, #38caff 100%);
    --grad-blue-soft: linear-gradient(135deg, rgba(29, 142, 255, 0.15) 0%, rgba(56, 202, 255, 0.08) 100%);
    --grad-hero: linear-gradient(160deg, #090e1a 0%, #0d1b3e 60%, #090e1a 100%);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: var(--font-body);
    background-color: var(--navy-card);
    color: var(--white-90);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    display: block;
    max-width: 100%;
}
ul {
    list-style: none;
}
button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 9999;
}

/* Gradient text utility */
.grad-text {
    background: var(--navy-deepest);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section padding */
.section {
    padding: 120px 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 {
    transition-delay: 0.1s;
}
.reveal-delay-2 {
    transition-delay: 0.2s;
}
.reveal-delay-3 {
    transition-delay: 0.3s;
}
.reveal-delay-4 {
    transition-delay: 0.4s;
}
.reveal-delay-5 {
    transition-delay: 0.5s;
}
.reveal-delay-6 {
    transition-delay: 0.6s;
}

/* ============================================================
   NAVIGATION — FLOATING
============================================================ */
#nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 48px);
    max-width: 1200px;
    transition:
        top var(--transition),
        box-shadow var(--transition);
}

/* Inner pill */
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 20px 0 16px;
    background: rgba(9, 14, 26, 0.72);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    box-shadow:
        0 4px 32px rgba(0, 0, 0, 0.35),
        0 0 0 0.5px rgba(255, 255, 255, 0.04) inset;
    transition:
        background var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

#nav.scrolled .nav-inner {
    background: rgba(9, 14, 26, 0.2);
    border-color: rgba(255, 255, 255, 0.13);
    box-shadow:
        0 8px 48px rgba(0, 0, 0, 0.55),
        0 0 0 0.5px rgba(255, 255, 255, 0.06) inset;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nav-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    transition:
        color 0.18s,
        background 0.18s;
    white-space: nowrap;
}
.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}
.nav-chevron {
    font-size: 0.65rem;
    opacity: 0.55;
    transition: transform 0.2s;
}
.nav-item:hover .nav-chevron {
    transform: rotate(180deg);
}

/* ── DROPDOWN ── */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
    z-index: 200;
    min-width: 260px;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-inner {
    background: rgba(9, 14, 28, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 8px;
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 0 0.5px rgba(255, 255, 255, 0.04) inset;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Arrow pointer */
.nav-dropdown-inner::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: rgba(9, 14, 28, 0.97);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-dd-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background 0.15s;
    cursor: pointer;
}
.nav-dd-item:hover {
    background: rgba(29, 142, 255, 0.1);
}
.nav-dd-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
    color: #fff;
    width: 1.1rem;
    text-align: center;
}
.nav-dd-icon i {
    color: #fff;
}
.nav-dd-item span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.nav-dd-item strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}
.nav-dd-item small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.42);
    font-weight: 400;
    line-height: 1.3;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.btn-ghost {
    padding: 9px 20px;
    border: 1px solid var(--white-20);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white-80);
    white-space: nowrap;
    transition:
        border-color var(--transition),
        color var(--transition),
        background var(--transition);
}
.btn-ghost:hover {
    border-color: var(--blue-primary);
    color: var(--white);
    background: var(--blue-glow-soft);
}
.btn-primary {
    padding: 9px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    background: var(--grad-blue);
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition:
        opacity var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
    box-shadow: 0 0 20px rgba(29, 142, 255, 0.3);
}
.btn-primary:hover {
    opacity: 0.92;
    box-shadow: 0 0 32px rgba(29, 142, 255, 0.5);
    transform: translateY(-1px);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    cursor: pointer;
}
.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white-70);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================================
   HERO SECTION
============================================================ */
#hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/JetRunway.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.1;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

/* Radial glow behind hero content */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(128, 174, 221, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 40px;
    padding-top: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border: 1px solid var(--navy-card);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--blue-bright);
    margin-bottom: 28px;
    box-shadow: 0 0 20px rgba(29, 142, 255, 0.15);
}
.hero-badge::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--navy-mid);
    box-shadow: 0 0 8px var(--blue-bright);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin-bottom: 24px;
}
.hero-h1 .grad-text {
    display: block;
}

.sub-h1 {
    display: block;
}

.hero-typewriter-wrap {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    font-weight: 400;
    color: #334155;
    margin-bottom: 40px;
    min-height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.hero-typewriter-label {
    color: #eeeeee;
}
.hero-typewriter-text {
    color: var(--blue-bright);
    font-weight: 600;
    font-family: var(--font-display);
}
.cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background: var(--blue-bright);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: blink 0.85s step-end infinite;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}
.btn-hero-primary {
    padding: 16px 36px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    background: var(--grad-blue);
    letter-spacing: 0.01em;
    box-shadow: 0 4px 40px rgba(29, 142, 255, 0.45);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
    font-family: var(--font-display);
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 60px rgba(29, 142, 255, 0.65);
}
.btn-hero-ghost {
    padding: 15px 32px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(37, 99, 235, 0.3);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white-80);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition:
        border-color var(--transition),
        background var(--transition),
        transform var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
}
.btn-hero-ghost:hover {
    border-color: var(--blue-primary);
    background: rgba(29, 142, 255, 0.1);
    transform: translateY(-2px);
}
.btn-play-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* Stats bar */
.hero-stats-bar {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    z-index: 2;
    background: var(--navy-mid);
    backdrop-filter: none;
    border-top: 2px;
    padding: 28px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 20px 20px;
    position: relative;
    background: var(--navy-mid);
    border-radius: 8px;
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 1.5px;
    background: var(--border-blue);
}
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    background: var(--blue-bright);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--white-90);
    letter-spacing: 0.02em;
}

/* ── Diagonal section divider ── */
.diagonal-divider {
    position: absolute;
    bottom: -1px; /* -1px closes the 1px gap that can appear */
    left: 0;
    width: 100%;
    height: 90px;
    background: var(--navy-mid); /* must match the #products section background */
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 3; /* sits above hero canvas and stats bar (z-index 2) */
    pointer-events: none;
}

/* ============================================================
   PRODUCTS SECTION
============================================================ */
#products {
    background: linear-gradient(160deg, #f7f7f4 0%, #eeeeee 60%, #e0e0ff 100%);
    position: relative;
    overflow: hidden;
}
#products::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(29, 142, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--blue-primary);
    margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--grad-blue);
    border-radius: 2px;
    flex-shrink: 0;
}
.section-label::before {
    order: -1;
}
.text-center.section-label {
    justify-content: center;
}
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 16px;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--navy-surface);
    max-width: 800px;
    line-height: 1.7;
}

.products-header {
    margin-bottom: 64px;
}
#products .section-heading {
    color: #0c1f3f;
}
#products .section-sub {
    color: #2e4a7a;
}

.product-cards {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    align-items: stretch;
}
.bento-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.bento-right .product-card {
    flex: 1;
}

.product-card {
    background: #06090f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}
.product-card::after {
    display: none;
}
.product-card:hover {
    border-color: rgba(29, 142, 255, 0.22);
    box-shadow:
        0 12px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(29, 142, 255, 0.1);
    transform: translateY(-2px);
}

/* Bento hero — left column */
.bento-hero {
    justify-content: flex-start;
    gap: 0;
}
.bento-hero::before {
    display: none;
}

.bv-tankering img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.bv-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.bv-warfighter img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    inset: 0;
}
/* Bento cells — right column */
.bento-cell::before {
    display: none;
}
.bento-cell .product-features-list {
    margin-top: 20px;
}
.bento-cell .feature-item-icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
}

/* ── BENTO VISUAL SYSTEM ── */
.bento-visual {
    position: relative;
    flex: 1;
    min-height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #040710;
}
.bento-cell .bento-visual {
    min-height: 160px;
}
.bv-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.bv-tankering .bv-glow {
    background: radial-gradient(circle, rgba(29, 142, 255, 0.16) 0%, transparent 65%);
    top: -60px;
    left: -60px;
}
.bv-mobile .bv-glow {
    background: radial-gradient(circle, rgba(56, 202, 255, 0.13) 0%, transparent 65%);
    bottom: -80px;
    right: -80px;
}
.bv-warfighter .bv-glow {
    background: radial-gradient(circle, rgba(255, 100, 80, 0.14) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Fuel chart — tankering card */
.bv-fuel-chart {
    position: relative;
    z-index: 1;
    width: 72%;
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 28px 0;
}
.bv-chart-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.bv-airport {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.3);
    width: 36px;
    flex-shrink: 0;
}
.bv-price-bar {
    height: 26px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.bv-price-bar.bv-best {
    background: rgba(29, 142, 255, 0.13);
    border-color: rgba(29, 142, 255, 0.28);
    color: #38caff;
}
.bv-savings-callout {
    position: absolute;
    bottom: 20px;
    left: 20px;
    text-align: left;
    z-index: 2;
}
.bv-savings-fig {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1;
}
.bv-savings-txt {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    font-family: var(--font-display);
    margin-top: 2px;
}

/* Phone mini — mobile card */
.bv-phone-mini {
    position: relative;
    z-index: 1;
    width: 78%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.bv-phone-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.bv-ph-logo {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #1d8eff, #38caff);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-display);
    flex-shrink: 0;
}
.bv-ph-route {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
}
.bv-phone-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 7px;
    font-family: var(--font-display);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
}
.bv-phone-row.bv-phone-best {
    background: rgba(29, 142, 255, 0.09);
    border-color: rgba(29, 142, 255, 0.22);
}
.bv-phone-price {
    color: #38caff;
    font-weight: 700;
}
.bv-phone-price small {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
}
.bv-savings-mini {
    font-family: var(--font-display);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.25);
    text-align: right;
    padding-top: 2px;
}
.bv-savings-mini strong {
    color: #0dd37c;
}

/* Globe — warfighter card */
.bv-globe {
    position: relative;
    z-index: 1;
    width: 120px;
    height: 120px;
}
.bv-globe-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.bv-ring1 {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 100, 80, 0.18);
}
.bv-ring2 {
    width: 68%;
    height: 68%;
    border: 1px solid rgba(255, 100, 80, 0.28);
}
.bv-ring3 {
    width: 38%;
    height: 38%;
    border: 1px solid rgba(255, 100, 80, 0.4);
    background: rgba(255, 80, 60, 0.06);
}
.bv-globe-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 130, 100, 0.85);
    box-shadow: 0 0 10px rgba(255, 80, 60, 0.6);
    transform: translate(-50%, -50%);
}
.bv-dot-pulse {
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%,
    100% {
        box-shadow: 0 0 8px rgba(255, 80, 60, 0.5);
    }
    50% {
        box-shadow:
            0 0 20px rgba(255, 80, 60, 0.9),
            0 0 40px rgba(255, 80, 60, 0.3);
    }
}
.bv-mission-badge {
    position: absolute;
    bottom: 16px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(29, 142, 255, 0.1);
    border: 1px solid rgba(29, 142, 255, 0.9);
    border-radius: 6px;
    padding: 4px 10px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(29, 142, 255, 0.9);
    z-index: 2;
}

/* ── BENTO CONTENT (bottom text strip) ── */
.bento-content {
    padding: 22px 26px 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.bento-tag {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}
.bento-tag i {
    font-size: 14px;
    flex-shrink: 0;
}
.bento-h3 {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #fff;
    line-height: 1.25;
}
.bento-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}
.bento-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}
.bento-pills {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.bento-pills span:not(.bento-arrow) {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--blue-bright);
    background: var(--blue-glow-soft);
    border: 1px solid var(--border-blue);
    border-radius: 10px;
    padding: 5px 12px;
}
.bento-arrow {
    color: ffffff;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
}
.bento-cta {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: var(--blue-primary);
    border: 1px solid rgba(29, 142, 255, 0.3);
    border-radius: 6px;
    padding: 5px 12px;
    transition:
        background 0.15s,
        border-color 0.15s,
        color 0.15s;
    white-space: nowrap;
    display: inline-block;
    margin-top: 2px;
    align-self: flex-start;
}
.bento-cta:hover {
    background: rgba(29, 142, 255, 0.12);
    border-color: rgba(29, 142, 255, 0.55);
    color: #38caff;
}

/* Legacy card label/cta classes (kept for compatibility) */
.product-card-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-primary);
    margin-bottom: 16px;
}
.product-card-icon {
    font-size: 1.4rem;
}
.product-card-h3 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
}
.product-card-tagline {
    font-size: 0.9rem;
    color: var(--blue-bright);
    font-weight: 600;
    margin-bottom: 20px;
}
.product-card-desc {
    font-size: 0.95rem;
    color: var(--white-60);
    line-height: 1.7;
    margin-bottom: 28px;
}
.product-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--blue-primary);
    letter-spacing: 0.02em;
    transition:
        gap var(--transition),
        color var(--transition);
}
.product-card-cta:hover {
    gap: 12px;
    color: var(--blue-bright);
}

.product-features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.feature-item-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--blue-glow-soft);
    border: 1px solid var(--border-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-top: 1px;
}
.feature-item-text strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white-90);
    margin-bottom: 2px;
}
.feature-item-text span {
    font-size: 0.82rem;
    color: var(--white-50);
    line-height: 1.5;
}

/* Workflow pill row */
.workflow-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.workflow-pill {
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--blue-glow-soft);
    border: 1px solid var(--border-blue);
    color: var(--blue-bright);
    letter-spacing: 0.04em;
}
.workflow-arrow {
    color: var(--white-30);
    font-size: 0.75rem;
}

/* ============================================================
   FEATURES GRID
============================================================ */
#features {
    background: linear-gradient(180deg, var(--navy-deepest) 0%, var(--navy-mid) 50%, var(--navy-deepest) 100%);
    position: relative;
}
#features::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-blue), transparent);
}

.features-header {
    text-align: center;
    margin-bottom: 72px;
}
.features-header .section-label {
    justify-content: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feat-card {
    background: var(--white-04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition:
        border-color var(--transition),
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}
.feat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-blue-soft);
    opacity: 0;
    transition: opacity var(--transition);
}
.feat-card:hover {
    border-color: var(--border-blue);
    background: rgba(29, 142, 255, 0.05);
    transform: translateY(-4px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(29, 142, 255, 0.1);
}
.feat-card:hover::before {
    opacity: 1;
}

.feat-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--grad-blue-soft);
    border: 1px solid var(--border-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    font-size: 1.4rem;
    transition: box-shadow var(--transition);
}
.feat-card:hover .feat-icon-wrap {
    box-shadow: 0 0 24px rgba(29, 142, 255, 0.3);
}
.feat-icon-wrap i {
    color: #fff;
}

.feat-h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: normal;
}
.feat-p {
    font-size: 0.875rem;
    color: var(--white-55);
    line-height: 1.65;
    position: relative;
}

/* ── FEAT BENTO GRID ── */
.feat-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
}
.feat-bhero {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.feat-bcell {
    background: #06090f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}
.feat-bcell:hover {
    border-color: rgba(29, 142, 255, 0.22);
    box-shadow:
        0 12px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(29, 142, 255, 0.1);
    transform: translateY(-2px);
}

/* Visual zone */
.feat-bv {
    position: relative;
    flex: 1;
    min-height: 140px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #040710;
}
.feat-bhero .feat-bv {
    min-height: 300px;
}

/* Per-card background tints */
.feat-bv-tank {
    background: linear-gradient(160deg, #040d1c 0%, #040710 100%);
}
.feat-bv-fbo {
    background: linear-gradient(160deg, #040c18 0%, #040710 100%);
}
.feat-bv-scan {
    background: linear-gradient(160deg, #07101a 0%, #040710 100%);
}
.feat-bv-tech {
    background: linear-gradient(160deg, #050e10 0%, #040710 100%);
}
.feat-bv-int {
    background: linear-gradient(160deg, #06080f 0%, #040710 100%);
}
.feat-bv-desk {
    background: linear-gradient(160deg, #07080f 0%, #040710 100%);
}

/* Glow blobs */
.feat-bv-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.feat-bv-tank .feat-bv-glow {
    background: radial-gradient(circle, rgba(29, 142, 255, 0.14) 0%, transparent 65%);
    top: -60px;
    left: -40px;
}
.feat-bv-fbo .feat-bv-glow {
    background: radial-gradient(circle, rgba(56, 202, 255, 0.12) 0%, transparent 65%);
    bottom: -60px;
    right: -60px;
}
.feat-bv-scan .feat-bv-glow {
    background: radial-gradient(circle, rgba(0, 210, 180, 0.12) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.feat-bv-tech .feat-bv-glow {
    background: radial-gradient(circle, rgba(180, 130, 255, 0.12) 0%, transparent 65%);
    top: -40px;
    right: -40px;
}
.feat-bv-int .feat-bv-glow {
    background: radial-gradient(circle, rgba(29, 142, 255, 0.1) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.feat-bv-desk .feat-bv-glow {
    background: radial-gradient(circle, rgba(255, 170, 0, 0.1) 0%, transparent 65%);
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

/* ── HERO visual: savings stat + bar chart ── */
.feat-bv-hero-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 36px;
    width: 100%;
}
.feat-bv-big-stat {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #0dd37c;
    letter-spacing: -0.04em;
    line-height: 1;
}
.feat-bv-stat-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(13, 211, 124, 0.5);
    margin-top: 4px;
    margin-bottom: 28px;
}
.feat-bv-bars {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.feat-bv-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.feat-bv-apt {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.28);
    width: 36px;
    flex-shrink: 0;
}
.feat-bv-bar {
    height: 26px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
}
.feat-bv-bar.feat-bv-bar-best {
    background: rgba(29, 142, 255, 0.12);
    border-color: rgba(29, 142, 255, 0.28);
    color: #38caff;
}

/* ── FBO Fee visual: big number + chips ── */
.feat-bv-stat-center {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 16px;
}
.feat-bv-mid-num {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 3.5vw, 3.2rem);
    font-weight: 800;
    color: #38caff;
    letter-spacing: -0.04em;
    line-height: 1;
}
.feat-bv-plus {
    font-size: 0.55em;
    vertical-align: top;
    margin-top: 4px;
    display: inline-block;
}
.feat-bv-mid-label {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(56, 202, 255, 0.45);
    margin-top: 3px;
}
.feat-bv-chips {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    padding: 0 16px;
}
.feat-bv-chips span {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    padding: 3px 8px;
}

/* ── Invoice Scan visual ── */
.feat-bv-scan-ring {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 210, 180, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 0 24px rgba(0, 210, 180, 0.12);
}
.feat-bv-scan-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: #0dd37c;
    background: rgba(13, 211, 124, 0.1);
    border: 1px solid rgba(13, 211, 124, 0.25);
    border-radius: 5px;
    padding: 3px 9px;
}

/* ── Tech Stop route visual ── */
.feat-bv-route-line {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0;
}
.feat-bv-rnode {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    line-height: 1.2;
}
.feat-bv-rnode-stop {
    font-size: 8px;
    color: rgba(180, 130, 255, 0.9);
    background: rgba(180, 130, 255, 0.1);
    border: 1px solid rgba(180, 130, 255, 0.25);
    border-radius: 5px;
    padding: 4px 8px;
}
.feat-bv-rseg {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    min-width: 20px;
}

/* ── Integrations visual ── */
.feat-bv-int-badges {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    padding: 0 20px;
}
.feat-bv-int-badges span {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(29, 142, 255, 0.8);
    background: rgba(29, 142, 255, 0.08);
    border: 1px solid rgba(29, 142, 255, 0.2);
    border-radius: 6px;
    padding: 4px 10px;
}

/* ── Fuel Desk workflow visual ── */
.feat-bv-flow {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 16px;
}
.feat-bv-step {
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    padding: 5px 10px;
}
.feat-bv-step.feat-bv-step-hi {
    color: rgba(255, 170, 0, 0.9);
    background: rgba(255, 170, 0, 0.08);
    border-color: rgba(255, 170, 0, 0.22);
}
.feat-bv-arrow {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
}

/* ── CONTENT STRIP ── */
.feat-bc {
    padding: 20px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.feat-bc-icon {
    font-size: 1.15rem;
    margin-bottom: 2px;
}
.feat-bc-h4 {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.feat-bc-p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.6;
}

/* Responsive: single column on mobile */
@media (max-width: 900px) {
    .feat-bento {
        grid-template-columns: 1fr;
    }
    .feat-bhero {
        grid-column: 1;
        grid-row: auto;
    }
}
@media (min-width: 901px) and (max-width: 1100px) {
    .feat-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    .feat-bhero {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
}

/* ── UI WINDOW MOCKUP (bequant-style embedded UI) ── */
.feat-ui-win {
    position: relative;
    z-index: 1;
    width: 84%;
    background: #0b1323;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.04);
}
.feat-bhero .feat-ui-win {
    width: 78%;
    max-width: 440px;
}

/* Titlebar with traffic-light dots */
.feat-ui-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    background: #0d1628;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.feat-ui-dots {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}
.feat-ui-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: block;
}
.feat-ui-dots span:nth-child(1) {
    background: #ff5f57;
}
.feat-ui-dots span:nth-child(2) {
    background: #febc2e;
}
.feat-ui-dots span:nth-child(3) {
    background: #28c840;
}

.feat-ui-addr {
    font-family: var(--font-display);
    font-size: 8px;
    color: rgba(255, 255, 255, 0.28);
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    padding: 2px 8px;
    flex: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feat-ui-body {
    padding: 10px;
}

/* ── Optimizer table (hero card) ── */
.feat-ui-thead {
    display: grid;
    grid-template-columns: 1.8fr 1fr 0.7fr 0.8fr;
    padding: 3px 6px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 3px;
}
.feat-ui-thead span {
    font-family: var(--font-display);
    font-size: 7px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.22);
}
.feat-ui-trow {
    display: grid;
    grid-template-columns: 1.8fr 1fr 0.7fr 0.8fr;
    padding: 5px 6px;
    border-radius: 4px;
    border: 1px solid transparent;
    align-items: center;
    margin-bottom: 2px;
}
.feat-ui-trow span {
    font-family: var(--font-display);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.feat-ui-trow-hi {
    background: rgba(29, 142, 255, 0.07);
    border-color: rgba(29, 142, 255, 0.15);
}
.feat-ui-trow-hi span {
    color: rgba(255, 255, 255, 0.7);
}
.feat-ui-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 6px 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 4px;
    font-family: var(--font-display);
    font-size: 8px;
    color: rgba(255, 255, 255, 0.28);
}
.feat-ui-total {
    font-size: 13px !important;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.c-blue {
    color: #38caff !important;
    font-weight: 700;
}
.c-green {
    color: #0dd37c !important;
    font-weight: 700;
}

/* ── FBO Fee list ── */
.feat-ui-fbo-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.feat-ui-fbo-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    align-items: center;
    padding: 5px 7px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-display);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
}
.feat-ui-fbo-row-best {
    background: rgba(29, 142, 255, 0.07);
    border-color: rgba(29, 142, 255, 0.18);
}
.feat-ui-fbo-name {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    font-size: 8px;
}
.feat-ui-fee-val {
    color: #38caff;
    font-weight: 700;
}

/* ── Invoice audit rows ── */
.feat-ui-invoice {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.feat-ui-inv-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 7px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    font-family: var(--font-display);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.45);
}
.feat-ui-inv-ok {
    color: #0dd37c;
    font-weight: 700;
}
.feat-ui-inv-err {
    background: rgba(255, 80, 60, 0.07);
    border-color: rgba(255, 80, 60, 0.2);
}
.feat-ui-inv-flag {
    color: #ff7b72;
    font-size: 8px;
    font-weight: 700;
}

/* ── Tech stop route legs ── */
.feat-ui-route {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.feat-ui-leg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 7px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-display);
    font-size: 9px;
}
.feat-ui-leg-airports {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 700;
    letter-spacing: 0.04em;
}
.feat-ui-leg-stop {
    background: rgba(180, 130, 255, 0.07);
    border-color: rgba(180, 130, 255, 0.22);
}
.feat-ui-stop-badge {
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(190, 150, 255, 0.9);
    background: rgba(180, 130, 255, 0.12);
    border: 1px solid rgba(180, 130, 255, 0.25);
    border-radius: 3px;
    padding: 2px 6px;
}
.feat-ui-weather {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.28);
}

/* ── Integrations grid ── */
.feat-ui-int-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}
.feat-ui-int-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-display);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
}
.feat-ui-int-status {
    color: #0dd37c;
    font-weight: 700;
    font-size: 10px;
}

/* ── Fuel desk workflow ── */
.feat-ui-workflow {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.feat-ui-wf-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-display);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.45);
}
.feat-ui-wf-count {
    font-weight: 700;
    font-size: 11px;
    color: rgba(29, 142, 255, 0.8);
}
.feat-ui-wf-done {
    background: rgba(13, 211, 124, 0.07);
    border-color: rgba(13, 211, 124, 0.16);
    color: rgba(255, 255, 255, 0.6);
}
.feat-ui-wf-done .feat-ui-wf-count {
    color: #0dd37c;
}

/* ============================================================
   WHO USES FUELERLINX
============================================================ */
#users {
    background: var(--navy-deepest);
    position: relative;
}

.users-header {
    text-align: left;
    margin-bottom: 64px;
}

.users-header .section-sub {
    color: var(--white-90);
}

.users-header .section-heading {
    color: var(--white-90);
}

.persona-track-wrap {
    position: relative;
}
.persona-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 8px 0 24px;
}
.persona-track::-webkit-scrollbar {
    display: none;
}
.persona-card {
    position: relative;
    width: 350px;
    min-width: 300px;
    flex-shrink: 0;
    height: 440px;
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.persona-card.is-expanded {
    width: 750px;
}
/* Mesh-gradient wrapper — replaces stock <img> */
.persona-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}
.persona-card:hover .persona-card-bg {
    transform: scale(1.04);
}
/* Photo base layer — sits beneath the animated blobs */
.persona-card-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 1;
}
/* Blurred blob container — inset:-8% hides blur edge artefacts */
.pcmesh {
    display: none;
}
/* Individual colour blobs — DoD dark/authoritative palette */
.pcblob {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
    animation-timing-function: ease-in-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}
.pcblob.pb1 {
    width: 270px;
    height: 270px;
    top: -15%;
    left: 5%;
    background: rgba(29, 142, 255, 0.55);
    animation-name: pcm-a;
    animation-duration: 11s;
}
.pcblob.pb2 {
    width: 190px;
    height: 190px;
    top: 25%;
    left: 52%;
    background: rgba(56, 202, 255, 0.35);
    animation-name: pcm-b;
    animation-duration: 8s;
}
.pcblob.pb3 {
    width: 310px;
    height: 310px;
    top: 52%;
    left: -12%;
    background: rgba(5, 10, 24, 0.95);
    animation-name: pcm-c;
    animation-duration: 13s;
}
.pcblob.pb4 {
    width: 210px;
    height: 210px;
    top: 48%;
    left: 42%;
    background: rgba(20, 60, 120, 0.5);
    animation-name: pcm-d;
    animation-duration: 9s;
}
@keyframes pcm-a {
    to {
        transform: translate(60px, 70px);
    }
}
@keyframes pcm-b {
    to {
        transform: translate(-50px, 50px);
    }
}
@keyframes pcm-c {
    to {
        transform: translate(50px, -60px);
    }
}
@keyframes pcm-d {
    to {
        transform: translate(-60px, -50px);
    }
}
/* Subtle noise grain over the gradient */
.pcnoise {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}
.persona-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 9, 22, 0.9) 0%, rgba(4, 9, 22, 0.38) 45%, transparent 70%);
    z-index: 1;
}
.persona-expand-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    border: none;
    color: #07101f;
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.2s ease;
    padding: 0;
}
.persona-expand-btn:hover {
    background: #fff;
}
.persona-card.is-expanded .persona-expand-btn {
    transform: rotate(45deg);
}

.persona-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 5px 12px 5px 8px;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    z-index: 2;
}
.persona-card-tag-icon {
    font-size: 0.85rem;
    line-height: 1;
}
.persona-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 22px 28px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}
.persona-card.is-expanded .persona-card-body {
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
}
.persona-card-text {
    flex: 0 0 auto;
    min-width: 0;
}
.persona-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}
.persona-card-title em {
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}
.persona-card-sub {
    font-size: 0.73rem;
    color: var(--white-90);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.persona-card-features {
    list-style: none;
    margin: 0;
    padding: 0 0 0 18px;
    flex: 1 1 auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease 0.15s;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.persona-card.is-expanded .persona-card-features {
    opacity: 1;
    pointer-events: auto;
}
.persona-card-features li {
    font-size: 0.71rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
    padding: 3px 0 3px 14px;
    position: relative;
}
.persona-card-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(29, 142, 255, 0.75);
    font-size: 0.6rem;
    top: 5px;
}
.persona-nav {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 4px;
}
.persona-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    background: var(--white-04);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background var(--transition),
        border-color var(--transition);
    line-height: 1;
}
.persona-nav-btn:hover {
    background: var(--white-08);
    border-color: var(--border-blue);
}

/* ============================================================
   DEMO REQUEST
============================================================ */
#demo {
    background: linear-gradient(135deg, #090e1a 0%, #0d1b3e 40%, #091629 70%, #090e1a 100%);
    position: relative;
    overflow: hidden;
}
#demo::before {
    content: '';
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(29, 142, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.demo-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.demo-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 16px;
}
.demo-sub {
    font-size: 1.05rem;
    color: var(--white-60);
    margin-bottom: 52px;
    line-height: 1.7;
}

.demo-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}
.form-group.full {
    grid-column: 1 / -1;
}
.form-label {
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--white-50);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.form-input,
.form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--white-90);
    width: 100%;
    transition:
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
    outline: none;
    appearance: none;
}
.form-input::placeholder {
    color: var(--white-30);
}
.form-input:focus,
.form-select:focus {
    border-color: var(--blue-primary);
    background: rgba(29, 142, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(29, 142, 255, 0.12);
}
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}
.form-select option {
    background: var(--navy-mid);
}

.btn-submit {
    grid-column: 1 / -1;
    padding: 17px 40px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    background: var(--grad-blue);
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 4px 40px rgba(29, 142, 255, 0.4);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
    margin-top: 8px;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 60px rgba(29, 142, 255, 0.6);
}

.demo-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.demo-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: var(--white-40);
}
.demo-trust-icon {
    font-size: 0.85rem;
    color: #fff;
}
.demo-trust-icon i {
    color: #fff;
}

/* ============================================================
   FOOTER
============================================================ */
#footer {
    background: var(--navy-deepest);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 72px;
}

.footer-brand .nav-logo {
    font-size: 1.3rem;
    margin-bottom: 16px;
    display: block;
}
.footer-brand p {
    font-size: 0.875rem;
    color: var(--white-45);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 24px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.social-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--white-04);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--white-50);
    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
}
.social-btn:hover {
    background: var(--blue-glow-soft);
    border-color: var(--border-blue);
    color: var(--blue-bright);
}

.footer-col h5 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-70);
    margin-bottom: 20px;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col a {
    font-size: 0.875rem;
    color: var(--white-45);
    transition: color var(--transition);
}
.footer-col a:hover {
    color: var(--blue-bright);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy {
    font-size: 0.8rem;
    color: var(--white-30);
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 0.8rem;
    color: var(--white-30);
    transition: color var(--transition);
}
.footer-legal a:hover {
    color: var(--white-60);
}

/* ============================================================
   DIVIDER LINE
============================================================ */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-blue) 50%, transparent 100%);
    opacity: 0.5;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .product-cards {
        grid-template-columns: 1fr;
    }
    .product-card {
        padding: 0;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item:nth-child(3)::before,
    .stat-item:nth-child(1)::before {
        display: none;
    }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-top: 1px solid var(--border-subtle);
        padding-top: 20px;
    }
}

@media (max-width: 1060px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    .nav-mobile-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    .container,
    .container-wide {
        padding: 0 20px;
    }

    #nav {
        top: 10px;
        width: calc(100% - 24px);
    }
    .nav-inner {
        height: 58px;
        padding: 0 14px 0 12px;
        border-radius: 12px;
    }

    .hero-content {
        padding: 0 20px;
        padding-top: 60px;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-hero-primary,
    .btn-hero-ghost {
        text-align: center;
        justify-content: center;
    }
    .hero-stats-bar {
        padding: 20px 20px;
        position: relative;
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-h1 {
        font-size: 2rem;
    }

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

    .demo-form {
        grid-template-columns: 1fr;
    }
    .form-group.full {
        grid-column: 1;
    }
    .btn-submit {
        grid-column: 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-card-h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .stat-item + .stat-item::before {
        display: none;
    }

    .dod-bg-paths {
        display: none;
    }

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

/* ============================================================
   IMAGE BREAK SECTIONS
============================================================ */

/* 1. Hero background photo */
#hero {
    background-image: linear-gradient(160deg, rgba(9, 14, 26, 0.78) 0%, rgba(13, 27, 62, 0.72) 60%, rgba(43, 84, 179, 0.88) 100%);
    background-size: cover;
    background-position: center 40%;
}

/* 2. Full-bleed cinematic strip — between products & features */
.photo-strip {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image:
        linear-gradient(160deg, rgba(9, 14, 26, 0.93) 0%, rgba(13, 27, 62, 0.88) 50%, rgba(9, 14, 26, 0.93) 100%),
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}
.photo-strip-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
    max-width: 860px;
}
.photo-strip-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--blue-bright);
    margin-bottom: 20px;
}
.photo-strip-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}
.photo-strip-sub {
    font-size: 1.05rem;
    color: var(--white-70);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 36px;
}
.photo-strip-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.photo-strip-stat {
    text-align: center;
}
.photo-strip-stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    background: var(--grad-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}
.photo-strip-stat-label {
    font-size: 0.78rem;
    color: var(--white-60);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* 3. Spotlight split section — between features & users */
.spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    overflow: hidden;
}
.spotlight-image {
    position: relative;
    background: linear-gradient(135deg, #060d1c 0%, #0a1525 50%, #071020 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.spotlight-image::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 142, 255, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.spotlight-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 2;
}

/* Phone mockup */
.phone-mockup {
    position: relative;
    z-index: 2;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone-frame {
    width: 248px;
    background: #0d0d12;
    border-radius: 44px;
    padding: 14px 10px;
    box-shadow:
        0 0 0 1.5px rgba(255, 255, 255, 0.14),
        0 0 0 3px rgba(255, 255, 255, 0.04),
        0 32px 80px rgba(0, 0, 0, 0.7),
        0 8px 32px rgba(29, 142, 255, 0.12);
    position: relative;
}
.phone-dynamic-island {
    width: 80px;
    height: 26px;
    background: #000;
    border-radius: 20px;
    margin: 0 auto 10px;
}
.phone-screen {
    background: #07111e;
    border-radius: 32px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}
.app-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px 4px;
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-display);
    letter-spacing: 0.03em;
}
.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.app-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.app-logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #1d8eff, #38caff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-display);
    flex-shrink: 0;
}
.app-logo-name {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}
.app-logo-sub {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-display);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.app-bell {
    font-size: 14px;
    opacity: 0.6;
}
.app-route-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(29, 142, 255, 0.08);
    border-bottom: 1px solid rgba(29, 142, 255, 0.12);
}
.app-route-code {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
}
.app-route-arrow {
    font-size: 11px;
    color: #38caff;
    opacity: 0.8;
}
.app-section-label-sm {
    font-family: var(--font-display);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    padding: 8px 14px 4px;
}
.app-fbo-list {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
    gap: 4px;
}
.app-fbo-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.app-fbo-best {
    background: rgba(29, 142, 255, 0.1);
    border-color: rgba(29, 142, 255, 0.25);
}
.app-fbo-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.app-fbo-name {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    color: #fff;
}
.app-fbo-airport {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--font-display);
    letter-spacing: 0.04em;
}
.app-fbo-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}
.app-fbo-price {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: #38caff;
}
.app-fbo-gal {
    font-size: 8px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 1px;
}
.app-fbo-badge {
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1d8eff;
    background: rgba(29, 142, 255, 0.15);
    border: 1px solid rgba(29, 142, 255, 0.3);
    border-radius: 4px;
    padding: 1px 5px;
    font-family: var(--font-display);
}
.app-savings-card {
    margin: 10px 10px 0;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(14, 165, 106, 0.15), rgba(13, 211, 124, 0.08));
    border: 1px solid rgba(14, 165, 106, 0.25);
    border-radius: 10px;
    text-align: center;
}
.app-savings-label {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-display);
    margin-bottom: 2px;
}
.app-savings-amount {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: #0dd37c;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.app-savings-sub {
    font-size: 8px;
    color: rgba(13, 211, 124, 0.6);
    font-family: var(--font-display);
}
.app-bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 10px 0 14px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.app-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 7px;
    font-weight: 500;
    font-family: var(--font-display);
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.03em;
    cursor: pointer;
}
.app-nav-btn.active {
    color: #38caff;
}
.app-nav-icon {
    font-size: 14px;
}
.spotlight-content {
    background: #0b1428;
    display: flex;
    align-items: center;
    padding: 80px 72px;
}
.spotlight-content-inner {
    max-width: 480px;
}
.spotlight-content .section-label {
    justify-content: flex-start;
    margin-bottom: 20px;
}
.spotlight-h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 20px;
}
.spotlight-body {
    font-size: 1rem;
    color: var(--white-70);
    line-height: 1.75;
    margin-bottom: 32px;
}
.spotlight-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}
.spotlight-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--white-80);
}
.spotlight-list-item::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--grad-blue-soft);
    border: 1px solid var(--border-blue);
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%231D8EFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
@media (max-width: 900px) {
    .spotlight {
        grid-template-columns: 1fr;
    }
    .spotlight-image {
        min-height: 420px;
    }
    .phone-frame {
        width: 220px;
    }
    .spotlight-content {
        padding: 48px 32px;
    }
    .photo-strip {
        height: auto;
        padding: 80px 24px;
    }
    .photo-strip-stats {
        gap: 32px;
    }
}

/* ============================================================
   MISC UTILITIES
============================================================ */
.text-center {
    text-align: center;
}
.white-50 {
    color: var(--white-50);
}

/* Glow line decorations */
.glow-line {
    width: 80px;
    height: 2px;
    background: var(--grad-blue);
    border-radius: 2px;
    margin: 20px auto 0;
    box-shadow: 0 0 12px rgba(29, 142, 255, 0.5);
}

/* ============================================================
   VENDOR & INTEGRATION LOGOS MARQUEE
============================================================ */
.vendors-strip {
    background: var(--blue-bright);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 32px 0;
    overflow: hidden;
}
.vendors-strip-label {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'DM-Sans', sans-serif;
    letter-spacing: 0.13em;
    /* text-transform: uppercase; */
    color: var(--navy-deep);
    margin-bottom: 22px;
}
.vendors-marquee-outer {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.vendors-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: vendors-scroll 40s linear infinite;
}
/* .vendors-marquee-track:hover {
    animation-play-state: paused;
}
@keyframes vendors-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
} */
.vendor-name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-deep);
    white-space: nowrap;
    padding: 0 28px;
    letter-spacing: 0.01em;
    transition: color 0.25s ease;
    cursor: default;
}
.vendor-name:hover {
    color: rgba(255, 255, 255, 0.7);
}
.vendor-dot {
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.vendor-item {
    display: inline-flex;
    align-items: center;
    padding: 0 28px;
    cursor: default;
}

.vendor-logo {
    height: 3rem; /* adjust to taste — 24–32px works well */
    width: auto;
    max-width: 120px;
    color: #ffffff;
}

.vendor-item:hover .vendor-logo {
    filter: brightness(0) invert(1); /* flips to white on hover — 
                                        matches current hover behavior */
    opacity: 1;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
#testimonials {
    background: linear-gradient(180deg, var(--navy-card) 0%, var(--navy-surface) 100%);
}
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}
.testimonials-header .section-sub {
    max-width: 560px;
    margin: 16px auto 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--navy-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
    transition:
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -18px;
    left: 22px;
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 800;
    color: rgba(29, 142, 255, 0.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.testimonial-card:hover {
    border-color: var(--border-blue);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(29, 142, 255, 0.1);
}
.testimonial-stars {
    color: #f5a623;
    font-size: 0.85rem;
    letter-spacing: 3px;
}
.testimonial-body {
    font-size: 0.95rem;
    color: var(--white-70);
    line-height: 1.8;
    flex: 1;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(29, 142, 255, 0.35);
}
.testimonial-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white-90);
}
.testimonial-title {
    font-size: 0.73rem;
    color: var(--white-40);
    margin-top: 3px;
    line-height: 1.4;
}

#testimonials .section-label {
    justify-content: center;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }
}
@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card:last-child {
        grid-column: auto;
        max-width: none;
    }
    .testimonial-card {
        padding: 28px 24px;
    }
}

/* ============================================================
   TESTIMONIALS V2 — UNIQUE INTERACTIVE (centered quote + avatar switcher)
============================================================ */
#testimonials-v2 {
    background: linear-gradient(180deg, var(--navy-surface) 0%, var(--navy-deep) 100%);
}
.tv2-header {
    text-align: center;
    margin-bottom: 56px;
}
.tv2-header .section-sub {
    max-width: 560px;
    margin: 16px auto 0;
}
#testimonials-v2 .section-label {
    justify-content: center;
}
.tv2-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 36px 24px 64px;
}
.tv2-quote-wrap {
    position: relative;
    padding: 0 40px;
    max-width: 700px;
    width: 100%;
    text-align: center;
}
.tv2-deco-open,
.tv2-deco-close {
    position: absolute;
    font-family: var(--font-display);
    font-size: 7rem;
    font-weight: 800;
    color: rgba(29, 142, 255, 0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.tv2-deco-open {
    top: -44px;
    left: 0;
}
.tv2-deco-close {
    bottom: -60px;
    right: 0;
}
.tv2-quote {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.2vw, 1.6rem);
    font-weight: 300;
    color: var(--white-90);
    line-height: 1.75;
    transition:
        opacity 0.3s ease,
        filter 0.3s ease,
        transform 0.3s ease;
}
.tv2-quote.tv2-out {
    opacity: 0;
    filter: blur(5px);
    transform: scale(0.98);
}
.tv2-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    margin-top: 8px;
}
.tv2-role {
    font-size: 0.68rem;
    color: var(--blue-bright);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}
.tv2-role.tv2-out {
    opacity: 0;
    transform: translateY(6px);
}
.tv2-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.tv2-btn {
    display: flex;
    align-items: center;
    border: none;
    cursor: pointer;
    border-radius: 9999px;
    padding: 3px;
    background: transparent;
    outline: none;
    transition:
        background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.tv2-btn:focus-visible {
    box-shadow: 0 0 0 2px var(--blue-primary);
}
.tv2-btn:hover:not(.tv2-btn--active) {
    background: var(--white-08);
    padding: 6px 14px 6px 6px;
}
.tv2-btn--active {
    background: var(--grad-blue);
    padding: 6px 14px 6px 6px;
    box-shadow: 0 4px 20px var(--blue-glow);
}
.tv2-btn-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--grad-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}
.tv2-btn--active .tv2-btn-avatar {
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.28);
}
.tv2-btn-name-wrap {
    display: grid;
    grid-template-columns: 0fr;
    overflow: hidden;
    opacity: 0;
    margin-left: 0;
    transition:
        grid-template-columns 0.42s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.32s ease,
        margin-left 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.tv2-btn:hover .tv2-btn-name-wrap,
.tv2-btn--active .tv2-btn-name-wrap {
    grid-template-columns: 1fr;
    opacity: 1;
    margin-left: 8px;
}
.tv2-btn-name {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    min-width: 0;
}
.tv2-btn:not(.tv2-btn--active) .tv2-btn-name {
    color: var(--white-90);
}

@media (max-width: 768px) {
    .tv2-widget {
        padding: 56px 16px 48px;
        gap: 36px;
    }
    .tv2-quote-wrap {
        padding: 0 24px;
    }
    .tv2-deco-open {
        font-size: 5rem;
        top: -32px;
        left: 0;
    }
    .tv2-deco-close {
        font-size: 5rem;
        bottom: -44px;
        right: 0;
    }
}
@media (max-width: 480px) {
    .tv2-btn:hover:not(.tv2-btn--active) {
        padding: 3px;
        background: transparent;
    }
    .tv2-btn:hover .tv2-btn-name-wrap {
        grid-template-columns: 0fr;
        opacity: 0;
        margin-left: 0;
    }
}

/* ============================================================
   INTEGRATIONS GRID
============================================================ */
#integrations {
    background: linear-gradient(160deg, #f7f7f4 0%, #eeeeee 60%, #e0e0ff 100%);
}

.integrations-header {
    text-align: left;
    margin-bottom: 64px;
}

.integrations-header .section-heading {
    color: var(--navy-deepest);
}

.integrations-header .section-sub {
    max-width: 800px;
    margin: 16px 0;
    text-align: left;
}

.int-category {
    margin-bottom: 44px;
}
.int-category-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy-deepest);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
}
.int-category-label i {
    color: var(--blue-bright);
    font-size: 1rem;
}
.int-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 4fr));
    gap: 12px;
}
.int-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--navy-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    transition:
        border-color var(--transition),
        background var(--transition),
        transform var(--transition);
    cursor: default;
}
.int-card:hover {
    border-color: var(--border-blue);
    background: rgba(29, 142, 255, 0.04);
    transform: translateY(-2px);
}
.int-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.int-icon-blue {
    background: rgba(29, 142, 255, 0.12);
    color: var(--blue-bright);
    border: 1px solid rgba(29, 142, 255, 0.2);
}
.int-icon-amber {
    background: rgba(245, 166, 35, 0.1);
    color: #f5a623;
    border: 1px solid rgba(245, 166, 35, 0.2);
}
.int-icon-green {
    background: rgba(13, 211, 124, 0.1);
    color: #0dd37c;
    border: 1px solid rgba(13, 211, 124, 0.2);
}
.int-card-body {
    flex: 1;
    min-width: 0;
}
.int-card-name {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white-90);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.int-card-desc {
    font-size: 0.72rem;
    color: var(--white-40);
    margin-top: 3px;
    line-height: 1.4;
}
.int-badge {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #0dd37c;
    background: rgba(13, 211, 124, 0.1);
    border: 1px solid rgba(13, 211, 124, 0.25);
    border-radius: 100px;
    padding: 3px 9px;
    flex-shrink: 0;
}
.int-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
}
.int-footer-note {
    font-size: 0.9rem;
    color: var(--navy-deepest);
}

@media (max-width: 900px) {
    .int-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 540px) {
    .int-cards {
        grid-template-columns: 1fr;
    }
    .int-footer {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   DOD / WARFIGHTER SECTION
============================================================ */
.dod-section {
    background: linear-gradient(160deg, #f7f7f4 0%, #eeeeee 60%, #e0e0ff 100%);
    position: relative;
    overflow: hidden;
}
.dod-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 72% 50%, rgba(29, 142, 255, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 80%, rgba(13, 211, 124, 0.05) 0%, transparent 45%);
    pointer-events: none;
}
.dod-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(29, 142, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29, 142, 255, 0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}
.dod-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.dod-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}
.dod-shield-badge {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(29, 142, 255, 0.1);
    border: 1px solid rgba(29, 142, 255, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-bright);
    font-size: 1.15rem;
    box-shadow: 0 0 24px rgba(29, 142, 255, 0.18);
    flex-shrink: 0;
}
.dod-heading {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--navy-deepest);
    line-height: 1.2;
    margin-bottom: 20px;
}
.dod-sub {
    font-size: 1rem;
    color: var(--navy-surface);
    line-height: 1.78;
    margin-bottom: 36px;
    max-width: 500px;
}
.dod-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 44px;
}
.dod-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--navy-surface);
    line-height: 1.55;
}
.dod-features li strong {
    color: var(--navy-surface);
    font-weight: 800;
}
.dod-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(3, 171, 201, 0.4);
    border: 1px solid rgb(5, 199, 212);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.dod-check i {
    font-size: 1rem;
    color: var(--blue-primary);
}

/* Animated Background Paths Panel */
.dod-bg-paths {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 520px;
    background: linear-gradient(145deg, #060e1e 0%, #09183a 45%, #060c1c 100%);
    border: 1px solid rgba(29, 142, 255, 0.14);
    box-shadow:
        0 0 0 1px rgba(29, 142, 255, 0.05),
        0 32px 80px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(29, 142, 255, 0.08);
}
.dod-bg-paths > svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.dod-paths-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    pointer-events: none;
    background: linear-gradient(to top, rgba(6, 14, 30, 0.7) 0%, transparent 45%);
}
.dod-paths-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(29, 142, 255, 0.1);
    border: 1px solid rgba(29, 142, 255, 0.3);
    border-radius: 20px;
    padding: 8px 18px;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--blue-bright);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.dod-paths-badge i {
    font-size: 0.82rem;
}
/* dod-flow is handled by requestAnimationFrame in main.js */
/* legacy panel kept in case needed */
.dod-panel {
    background: rgba(4, 9, 20, 0.85);
    border: 1px solid rgba(29, 142, 255, 0.18);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(29, 142, 255, 0.06),
        0 32px 80px rgba(0, 0, 0, 0.55),
        0 0 60px rgba(29, 142, 255, 0.07);
}
.dod-panel-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 13px 18px;
    background: rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid rgba(29, 142, 255, 0.1);
}
.dod-panel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dod-dot-red {
    background: #ff5f57;
}
.dod-dot-amber {
    background: #febc2e;
}
.dod-dot-green {
    background: #28c840;
}
.dod-panel-title {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.28);
    margin-left: 8px;
    text-transform: uppercase;
}
.dod-panel-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.dod-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(13, 211, 124, 0.05);
    border: 1px solid rgba(13, 211, 124, 0.14);
    border-radius: var(--radius-sm);
}
.dod-status-label {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    color: rgba(255, 255, 255, 0.32);
    text-transform: uppercase;
}
.dod-status-active {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #0dd37c;
    display: flex;
    align-items: center;
    gap: 6px;
}
.dod-status-active i {
    font-size: 0.48rem;
    animation: dod-pulse 2s ease infinite;
}
@keyframes dod-pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.25;
    }
}
.dod-spec-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.dod-spec-label {
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue-bright);
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(29, 142, 255, 0.1);
    margin-bottom: 2px;
}
.dod-spec-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-family: var(--font-display);
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.45;
}
.dod-spec-check {
    color: #0dd37c;
    font-size: 0.62rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.dod-spec-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.dod-spec-key {
    font-family: var(--font-display);
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.4);
}
.dod-spec-val {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white-90);
}
.dod-spec-badge {
    font-family: var(--font-display);
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    color: var(--blue-bright);
    background: rgba(29, 142, 255, 0.1);
    border: 1px solid rgba(29, 142, 255, 0.2);
    border-radius: 4px;
    padding: 2px 8px;
    text-transform: uppercase;
}

@media (max-width: 960px) {
    .dod-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .dod-sub {
        max-width: none;
    }
}
@media (max-width: 640px) {
    .dod-heading {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        display: none;
    }

    .hero-stats-bar {
        display: block;
    }

    .hero-h1 {
        font-size: 2.2rem; /* Scales down text size (approx 35px) */
        line-height: 1.2; /* Keeps the line spacing tight and readable */
    }

    .vendors-strip-label {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .vendors-marquee-outer {
        display: none;
    }
}

/* ============================================================
   SUSTAINABILITY / SAF SECTION
============================================================ */
.grad-text-green {
    background: linear-gradient(135deg, #0dd37c 0%, #38ffb0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.saf-section {
    background: var(--navy-mid);
    position: relative;
    overflow: hidden;
}
/* .saf-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 211, 124, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.saf-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(13, 211, 124, 0.07) 0%, transparent 70%);
    pointer-events: none;
} */
.saf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.saf-image-wrap {
    position: relative;
    overflow: hidden;
}
.saf-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.saf-content {
    background: var(--navy-mid);
    display: flex;
    align-items: center;
    padding: 80px 72px;
}
.saf-content-inner {
    max-width: 480px;
}
.saf-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}
.saf-leaf-badge {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(13, 211, 124, 0.15);
    border: 1px solid rgba(13, 211, 124, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0dd37c;
    font-size: 1rem;
    flex-shrink: 0;
}
.saf-heading {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}
.saf-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}
.saf-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 44px;
}
.saf-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}
.saf-features li strong {
    color: var(--white-90);
    font-weight: 600;
}
.saf-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(13, 211, 124, 0.15);
    border: 1px solid rgba(13, 211, 124, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.saf-check i {
    font-size: 0.58rem;
    color: #0dd37c;
}

/* SAF Panel */
.saf-panel {
    background: rgba(4, 12, 8, 0.9);
    border: 1px solid rgba(13, 211, 124, 0.18);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(13, 211, 124, 0.06);
}
.saf-panel-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(13, 211, 124, 0.05);
    border-bottom: 1px solid rgba(13, 211, 124, 0.1);
}
.saf-panel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.saf-dot-green {
    background: #0dd37c;
}
.saf-dot-amber {
    background: #febc2e;
}
.saf-dot-dark {
    background: rgba(255, 255, 255, 0.15);
}
.saf-panel-title {
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: rgba(13, 211, 124, 0.6);
    text-transform: uppercase;
    margin-left: 6px;
}
.saf-panel-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.saf-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(13, 211, 124, 0.07);
    border-radius: var(--radius-sm);
}
.saf-status-label {
    font-family: var(--font-display);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}
.saf-status-active {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    color: #0dd37c;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 6px;
}
.saf-status-active i {
    font-size: 0.48rem;
    animation: saf-pulse 2.4s ease infinite;
}
@keyframes saf-pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
}
.saf-spec-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.saf-spec-label {
    font-family: var(--font-display);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    color: rgba(13, 211, 124, 0.5);
    text-transform: uppercase;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(13, 211, 124, 0.1);
    margin-bottom: 2px;
}
.saf-spec-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.45;
}
.saf-spec-check {
    color: #0dd37c;
    font-size: 0.62rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.saf-spec-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.saf-spec-key {
    font-family: var(--font-display);
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.4);
}
.saf-spec-val {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--white-90);
}
.saf-spec-badge-green {
    font-family: var(--font-display);
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #0dd37c;
    background: rgba(13, 211, 124, 0.12);
    border: 1px solid rgba(13, 211, 124, 0.3);
    border-radius: 4px;
    padding: 2px 7px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .saf-grid {
        grid-template-columns: 1fr;
    }
    .saf-image-wrap {
        min-height: 420px;
    }
    .saf-content {
        padding: 48px 32px;
    }
    .saf-content-inner {
        max-width: none;
    }
}
@media (max-width: 640px) {
    .saf-heading {
        font-size: 1.7rem;
    }
}
