/* ============================================================
   Delvioo™ — Main Landing Page CSS
   Clean white design system · Poppins · dark accents
   ============================================================ */

/* ── Fonts ──────────────────────────────────────────────── */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    font-weight: 300;
    background: #ffffff;
    color: #111111;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Design tokens ──────────────────────────────────────── */
:root {
    --bg: #ffffff;
    --bg-card: #f7f7f7;
    --bg-dark: #111111;
    --text: #111111;
    --text-muted: #999999;
    --text-light: #cccccc;
    --border: #ebebeb;
    --radius-card: 24px;
    --radius-btn: 50px;
    --nav-h: 64px;
    --section-pad: clamp(80px, 12vw, 140px);
    --inner-max: 1160px;
    --delvioo-accent: #111111;
}

/* ── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f7f7f7; }
::-webkit-scrollbar-thumb { background: #dddddd; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #bbbbbb; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 60px);
    transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 1px 0 #ebebeb; }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo h1 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}
.nav-logo .big { color: #111111; }
.nav-logo .bite { color: #cccccc; font-weight: 300; }

.nav-badge-delvioo {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #111111;
    color: #ffffff;
    padding: 3px 9px;
    border-radius: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-link {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #999999;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: #111111; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    font-size: 0.82rem;
    font-weight: 700;
    color: #999999;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: var(--radius-btn);
    transition: color 0.2s, background 0.2s;
}
.btn-login:hover { color: #111111; background: #f7f7f7; }

.btn-start {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: #111111;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: var(--radius-btn);
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}
.btn-start:hover { background: #333333; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}
.hamburger:hover { background: #f7f7f7; }
.hamburger span {
    display: block;
    width: 20px; height: 2px;
    background: #111111;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: #ffffff;
    border-bottom: 1px solid #ebebeb;
    padding: 20px clamp(20px, 5vw, 60px) 28px;
    z-index: 850;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #999999;
    padding: 10px 0;
    border-bottom: 1px solid #f7f7f7;
    transition: color 0.2s;
}
.mobile-menu a:hover { color: #111111; }
.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111111;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: var(--radius-btn);
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}
.cta-primary:hover { background: #333333; transform: translateY(-2px); }

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #111111;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: var(--radius-btn);
    border: 1.5px solid #ebebeb;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}
.cta-secondary:hover { background: #f7f7f7; transform: translateY(-2px); }

/* ============================================================
   SHARED SECTION LAYOUT
   ============================================================ */
.section-inner {
    max-width: var(--inner-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #cccccc;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #111111;
    margin-bottom: 24px;
}

.section-desc {
    font-size: 1rem;
    font-weight: 300;
    color: #999999;
    line-height: 1.7;
    max-width: 520px;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.scroll-animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-h) + 60px) clamp(20px, 5vw, 60px) 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 700px 400px at 20% 80%, rgba(0,0,0,0.03) 0%, transparent 70%),
        radial-gradient(ellipse 500px 300px at 80% 20%, rgba(0,0,0,0.02) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #999999;
    background: #f7f7f7;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 40px;
    animation: fadeInDown 0.7s both;
}
.hero-eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #111111;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(3.8rem, 11vw, 9rem);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.05em;
    color: #111111;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s 0.1s both;
}
.hero-title span {
    color: #cccccc;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: #999999;
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 48px;
    animation: fadeInUp 0.8s 0.2s both;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.3s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f7f7f7;
    border-radius: 20px;
    padding: 24px 40px;
    margin-top: 64px;
    animation: fadeInUp 0.8s 0.4s both;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 36px;
}
.hero-stat-value {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #111111;
    line-height: 1;
    margin-bottom: 6px;
}
.hero-stat-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #cccccc;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
}

.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #cccccc;
    animation: fadeInUp 0.8s 0.5s both;
    transition: color 0.2s;
}
.scroll-hint:hover { color: #999999; }
.scroll-hint svg { animation: bounceDown 2s infinite; }

/* ============================================================
   PLATFORM INTRO STRIP
   ============================================================ */
.platform-strip {
    padding: 80px 0;
    background: #f7f7f7;
    margin: 0 40px;
    border-radius: 40px;
}
.platform-strip .section-inner {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}
.platform-strip-left {
    flex: 1;
    min-width: 0;
}
.platform-strip-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.platform-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #111111;
}
.platform-pill-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #111111;
    flex-shrink: 0;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-section {
    padding: var(--section-pad) 0;
}

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

.feature-card {
    background: #f7f7f7;
    border-radius: var(--radius-card);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s, transform 0.7s, background 0.2s;
}
.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.feature-card:hover { background: #f0f0f0; }

.feature-card-big {
    grid-column: span 2;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    background: #111111;
    color: #ffffff;
}
.feature-card-big:hover { background: #1a1a1a; }
.feature-card-big h3 { color: #ffffff; }
.feature-card-big p { color: rgba(255,255,255,0.5); }

.feature-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-card:not(.feature-card-big) .feature-icon {
    background: #ffffff;
}

.feature-icon img {
    width: 24px; height: 24px;
    object-fit: contain;
}
.feature-card-big .feature-icon img {
    filter: invert(1);
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.02em;
}
.feature-card p {
    font-size: 0.88rem;
    color: #999999;
    line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
    padding: var(--section-pad) 0;
    background: #f7f7f7;
    margin: 0 40px;
    border-radius: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 64px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 1px;
    background: #e0e0e0;
    z-index: 0;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}
.step-circle {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.step-number {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #111111;
}
.step-item h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.02em;
}
.step-item p {
    font-size: 0.84rem;
    color: #999999;
    line-height: 1.6;
}

/* ============================================================
   MAPS SECTION
   ============================================================ */
.maps-section {
    padding: var(--section-pad) 0;
}
.maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.maps-left { }
.maps-right { }

.map-mock {
    background: #f7f7f7;
    border-radius: var(--radius-card);
    padding: 32px;
    position: relative;
    min-height: 380px;
    overflow: hidden;
}
.map-mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.map-mock-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #cccccc;
}
.map-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111111;
    background: #ffffff;
    padding: 5px 12px;
    border-radius: 50px;
}
.map-live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 1.5s infinite;
}
.map-canvas {
    background: #e8e8e8;
    border-radius: 16px;
    height: 240px;
    position: relative;
    overflow: hidden;
}
.map-grid-line {
    position: absolute;
    background: rgba(255,255,255,0.6);
}
.map-grid-line.h { height: 1px; left: 0; right: 0; }
.map-grid-line.v { width: 1px; top: 0; bottom: 0; }
.map-route {
    position: absolute;
    top: 50%; left: 15%;
    right: 15%;
    height: 2px;
    background: #111111;
    transform: translateY(-50%);
}
.map-route::before, .map-route::after {
    content: '';
    position: absolute;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #111111;
    top: 50%;
    transform: translateY(-50%);
}
.map-route::before { left: 0; }
.map-route::after { right: 0; }
.map-truck {
    position: absolute;
    top: 50%; left: 45%;
    transform: translate(-50%, -50%);
    width: 28px; height: 28px;
    background: #111111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: truckMove 4s ease-in-out infinite alternate;
}
.map-truck::after {
    content: '🚛';
    font-size: 13px;
}
.map-order-pins {
    position: absolute;
    inset: 0;
}
.map-pin {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(17,17,17,0.3);
    border: 2px solid rgba(17,17,17,0.5);
}

.map-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}
.map-stat {
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 16px;
    text-align: center;
}
.map-stat-val {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.03em;
    display: block;
    margin-bottom: 4px;
}
.map-stat-lbl {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #cccccc;
}

.maps-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}
.maps-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.maps-feature-check {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.maps-feature-item h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 4px;
}
.maps-feature-item p {
    font-size: 0.84rem;
    color: #999999;
    line-height: 1.6;
}

/* ============================================================
   TRANSPORT AUCTION
   ============================================================ */
.auction-section {
    padding: var(--section-pad) 0;
    background: #f7f7f7;
    margin: 0 40px;
    border-radius: 40px;
}

.auction-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.auction-mock {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.auction-mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.auction-mock-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999999;
}
.auction-live-count {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #111111;
    background: #ffffff;
    padding: 4px 12px;
    border-radius: 50px;
}

.bid-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.2s;
}
.bid-card:hover { transform: translateY(-2px); }
.bid-card.top-bid { border: 1.5px solid #111111; }

.bid-rank {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: #111111;
    flex-shrink: 0;
}
.bid-card.top-bid .bid-rank {
    background: #111111;
    color: #ffffff;
}
.bid-driver {
    flex: 1;
    min-width: 0;
}
.bid-driver-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #111111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bid-driver-meta {
    font-size: 0.74rem;
    color: #aaaaaa;
    margin-top: 2px;
}
.bid-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.03em;
    white-space: nowrap;
}
.bid-eta {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #aaaaaa;
    white-space: nowrap;
}

.auction-cta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}
.btn-accept {
    flex: 1;
    text-align: center;
    background: #111111;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px;
    border-radius: 50px;
    transition: background 0.2s;
}
.btn-accept:hover { background: #333333; }
.btn-decline {
    flex: 1;
    text-align: center;
    background: #f7f7f7;
    color: #999999;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px;
    border-radius: 50px;
    transition: background 0.2s;
}
.btn-decline:hover { background: #ebebeb; }

/* ============================================================
   CULLYAI SECTION
   ============================================================ */
.cullyai-section {
    padding: var(--section-pad) 0;
}
.cullyai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cullyai-card-big {
    background: #111111;
    border-radius: var(--radius-card);
    padding: 48px 44px;
    position: relative;
    overflow: hidden;
}
.cullyai-card-big::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}
.cullyai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 50px;
    margin-bottom: 28px;
}
.cullyai-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #ffffff;
    animation: pulse 2s infinite;
}
.cullyai-card-big .section-title {
    color: #ffffff;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 20px;
}
.cullyai-card-big .section-desc {
    color: rgba(255,255,255,0.45);
    margin-bottom: 32px;
}

.cullyai-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cullyai-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255,255,255,0.05);
    border-radius: 14px;
}
.cullyai-feature-icon {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}
.cullyai-feature-text h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    margin-bottom: 4px;
}
.cullyai-feature-text p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
}

.cullyai-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cullyai-stat-card {
    background: #f7f7f7;
    border-radius: 20px;
    padding: 28px 32px;
}
.cullyai-stat-card h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #cccccc;
    margin-bottom: 12px;
}
.cullyai-stat-val {
    font-size: 2.4rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 8px;
}
.cullyai-stat-sub {
    font-size: 0.84rem;
    color: #999999;
    line-height: 1.5;
}

/* ============================================================
   GPS / TRACKING
   ============================================================ */
.gps-section {
    padding: var(--section-pad) 0;
    background: #f7f7f7;
    margin: 0 40px;
    border-radius: 40px;
}
.gps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.gps-track-mock {
    background: #ffffff;
    border-radius: var(--radius-card);
    padding: 32px;
}
.gps-mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.gps-order-id {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #cccccc;
}
.gps-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111111;
}
.gps-status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 1.5s infinite;
}
.gps-map-area {
    background: #e8e8e8;
    border-radius: 16px;
    height: 200px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}
.gps-path {
    position: absolute;
    top: 50%;
    left: 10%; right: 10%;
    height: 2px;
    background: #111111;
    transform: translateY(-50%);
}
.gps-path::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #111111;
    font-size: 10px;
}
.gps-path::after {
    content: '●';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #111111;
    font-size: 10px;
}
.gps-truck-icon {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 36px; height: 36px;
    background: #111111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    animation: truckMove 4s ease-in-out infinite alternate;
}
.gps-info-row {
    display: flex;
    gap: 12px;
}
.gps-info-pill {
    flex: 1;
    background: #f7f7f7;
    border-radius: 12px;
    padding: 12px 14px;
    text-align: center;
}
.gps-info-val {
    font-size: 1rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 3px;
}
.gps-info-lbl {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #cccccc;
}

.gps-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 8px;
}
.gps-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.gps-feature-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #111111;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.gps-feature-item h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 4px;
}
.gps-feature-item p {
    font-size: 0.84rem;
    color: #999999;
    line-height: 1.6;
}

/* ============================================================
   WAITING TIME / DETENTION
   ============================================================ */
.detention-section {
    padding: var(--section-pad) 0;
}
.detention-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.detention-mock {
    background: #111111;
    border-radius: var(--radius-card);
    padding: 40px 36px;
    color: #ffffff;
}
.detention-mock-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.detention-mock-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}
.detention-timer-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    padding: 5px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.detention-timer-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #ef4444;
    animation: pulse 1.2s infinite;
}
.detention-time-display {
    font-size: 3.6rem;
    font-weight: 700;
    letter-spacing: -0.06em;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}
.detention-time-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 32px;
}
.detention-billing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 12px;
}
.detention-billing-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.04em;
}
.detention-billing-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
}
.detention-billing-value.accruing {
    color: #fbbf24;
}

.detention-right { }
.detention-right .section-desc { margin-bottom: 36px; }

.detention-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 8px;
}
.detention-feat {
    background: #f7f7f7;
    border-radius: 18px;
    padding: 22px 20px;
}
.detention-feat-icon {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.detention-feat h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 6px;
}
.detention-feat p {
    font-size: 0.8rem;
    color: #999999;
    line-height: 1.55;
}

/* ============================================================
   CO2 / COMPLIANCE
   ============================================================ */
.compliance-section {
    padding: var(--section-pad) 0;
    background: #f7f7f7;
    margin: 0 40px;
    border-radius: 40px;
}
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 64px;
}
.compliance-card {
    background: #ffffff;
    border-radius: var(--radius-card);
    padding: 36px 32px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s, transform 0.7s;
}
.compliance-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.compliance-card:nth-child(1) { transition-delay: 0.05s; }
.compliance-card:nth-child(2) { transition-delay: 0.12s; }
.compliance-card:nth-child(3) { transition-delay: 0.19s; }

.compliance-card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}
.compliance-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
}
.compliance-card p {
    font-size: 0.85rem;
    color: #999999;
    line-height: 1.6;
}
.compliance-card-tag {
    display: inline-block;
    background: #f7f7f7;
    color: #aaaaaa;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    margin-top: 16px;
}

/* ============================================================
   VEHICLE MANAGEMENT
   ============================================================ */
.vehicles-section {
    padding: var(--section-pad) 0;
}
.vehicles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.vehicles-right { }

.vehicle-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.vehicle-card {
    background: #f7f7f7;
    border-radius: 18px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: background 0.2s;
}
.vehicle-card:hover { background: #efefef; }
.vehicle-card.active-vehicle {
    background: #111111;
}
.vehicle-card-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}
.vehicle-card-info { flex: 1; min-width: 0; }
.vehicle-card-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 3px;
}
.vehicle-card.active-vehicle .vehicle-card-name { color: #ffffff; }
.vehicle-card-meta {
    font-size: 0.75rem;
    color: #aaaaaa;
}
.vehicle-card.active-vehicle .vehicle-card-meta { color: rgba(255,255,255,0.4); }
.vehicle-card-badge {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
}
.vehicle-badge-active {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
}
.vehicle-badge-dot {
    background: #f7f7f7;
    color: #cccccc;
}

.vehicles-feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
}
.vehicles-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.vehicles-feat-icon {
    width: 44px; height: 44px;
    background: #f7f7f7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.vehicles-feature-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 4px;
}
.vehicles-feature-item p {
    font-size: 0.83rem;
    color: #999999;
    line-height: 1.55;
}

/* ============================================================
   DOT / FMCSA VERIFICATION
   ============================================================ */
.verify-section {
    padding: var(--section-pad) 0;
    background: #111111;
    margin: 0 40px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}
.verify-section::before {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
}
.verify-section .section-inner {
    position: relative;
    z-index: 1;
}
.verify-section .section-eyebrow { color: rgba(255,255,255,0.25); }
.verify-section .section-title { color: #ffffff; }
.verify-section .section-desc { color: rgba(255,255,255,0.45); }

.verify-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 64px;
}
.verify-step {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
}
.verify-step.visible {
    opacity: 1;
    transform: translateY(0);
}
.verify-step:nth-child(1) { transition-delay: 0.05s; }
.verify-step:nth-child(2) { transition-delay: 0.1s; }
.verify-step:nth-child(3) { transition-delay: 0.15s; }
.verify-step:nth-child(4) { transition-delay: 0.2s; }
.verify-step:nth-child(5) { transition-delay: 0.25s; }

.verify-step-num {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em;
}
.verify-step h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
    line-height: 1.3;
}
.verify-step p {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.5;
}

.verify-note {
    margin-top: 40px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.25);
    font-style: italic;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section {
    padding: var(--section-pad) 0;
}
.cta-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 0 clamp(20px, 5vw, 60px);
}
.cta-title {
    margin-bottom: 20px;
}
.cta-pair {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #f7f7f7;
    padding: 64px 0 32px;
}
.footer-inner {
    max-width: var(--inner-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand h2 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    display: flex;
    gap: 2px;
}
.footer-brand h2 span:first-child { color: #111111; }
.footer-brand h2 span:last-child { color: #cccccc; font-weight: 300; }
.footer-tagline {
    font-size: 0.85rem;
    color: #aaaaaa;
    line-height: 1.7;
}
.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #aaaaaa;
    margin-bottom: 20px;
}
.footer-links-list li + li { margin-top: 10px; }
.footer-links-list a {
    font-size: 0.88rem;
    color: #999999;
    transition: color 0.2s;
}
.footer-links-list a:hover { color: #111111; }
.footer-divider {
    height: 1px;
    background: #e8e8e8;
    margin-bottom: 28px;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy {
    font-size: 0.8rem;
    color: #aaaaaa;
}
.footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
}
.footer-legal a {
    font-size: 0.8rem;
    color: #aaaaaa;
    transition: color 0.2s;
}
.footer-legal a:hover { color: #111111; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.85); }
}
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}
@keyframes truckMove {
    0%   { left: 20%; }
    100% { left: 75%; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card-big { grid-column: span 2; }
    .verify-steps { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .platform-strip { margin: 0 20px; }
    .platform-strip .section-inner { flex-direction: column; gap: 40px; }
    .how-section { margin: 0 20px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .auction-section { margin: 0 20px; }
    .auction-grid { grid-template-columns: 1fr; gap: 48px; }
    .maps-grid { grid-template-columns: 1fr; gap: 48px; }
    .cullyai-grid { grid-template-columns: 1fr; gap: 48px; }
    .gps-section { margin: 0 20px; }
    .gps-grid { grid-template-columns: 1fr; gap: 48px; }
    .detention-grid { grid-template-columns: 1fr; gap: 48px; }
    .compliance-section { margin: 0 20px; }
    .compliance-grid { grid-template-columns: repeat(2, 1fr); }
    .vehicles-grid { grid-template-columns: 1fr; gap: 48px; }
    .verify-section { margin: 0 20px; }
    .verify-steps { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --section-pad: 64px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .btn-login { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card-big { flex-direction: column; grid-column: span 1; }
    .steps-grid { grid-template-columns: 1fr; }
    .verify-steps { grid-template-columns: 1fr 1fr; }
    .hero-stats { padding: 20px 24px; }
    .hero-stat { padding: 0 20px; }
    .detention-feature-grid { grid-template-columns: 1fr; }
    .compliance-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .hero-stats { flex-direction: column; gap: 16px; padding: 24px; }
    .hero-stat-divider { display: none; }
    .hero-stat { padding: 0; }
    .verify-steps { grid-template-columns: 1fr; }
    .cta-pair { flex-direction: column; align-items: stretch; }
    .cta-pair a { text-align: center; justify-content: center; }
    .map-stats { grid-template-columns: 1fr 1fr; }
}
