/* ============================================================
   ARRIVIO LANDING — MAP-THEMED LIGHT DESIGN
   ============================================================ */

:root {
    --bg: #fafaf5;
    --bg-warm: #f5f0e8;
    --text: #1c1917;
    --text-muted: #78716c;
    --accent: #e85d04;
    --accent-hover: #d45203;
    --accent-light: #fff7ed;
    --road: #d6d3d1;
    --road-dark: #a8a29e;
    --topo: #e7e5e4;
    --green: #059669;
    --amber: #d97706;
    --red: #dc2626;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.06);
    --shadow-md: 0 4px 20px rgba(28, 25, 23, 0.08);
    --shadow-lg: 0 12px 40px rgba(28, 25, 23, 0.1);
    --font-display: "Space Grotesk", sans-serif;
    --font-body: "Inter", sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* ============================================================
   TOPO & GRID BACKGROUNDS
   ============================================================ */

.topo-bg,
.grid-dots {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.topo-bg {
    opacity: 0.5;
}

.grid-dots {
    opacity: 0.4;
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 24px;
    transition:
        background 0.3s,
        box-shadow 0.3s,
        padding 0.3s;
}

.nav.scrolled {
    background: rgba(250, 250, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--topo);
    padding: 10px 24px;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.nav-cta {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--accent);
    text-decoration: none;
    padding: 8px 18px;
    border: 1.5px solid var(--accent);
    border-radius: 100px;
    transition:
        background 0.2s,
        color 0.2s,
        transform 0.2s;
}

.nav-cta:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-1px);
}

.nav-arrow {
    display: inline-block;
    transition: transform 0.2s;
}

.nav-cta:hover .nav-arrow {
    transform: translateX(3px);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    text-align: center;
}

.hero-route {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.35;
    pointer-events: none;
}

.route-line {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawRoute 3s ease-out 0.5s forwards;
}

@keyframes drawRoute {
    to {
        stroke-dashoffset: 0;
    }
}

.pulse-ring {
    animation: pulseRing 2s ease-out infinite;
    transform-origin: center;
    opacity: 0;
    animation-delay: 3.5s;
}

@keyframes pulseRing {
    0% {
        r: 6;
        opacity: 0.5;
    }
    100% {
        r: 24;
        opacity: 0;
    }
}

.pulse-dot {
    opacity: 0;
    animation: fadeIn 0.3s 3.5s forwards;
}

.end-pulse-ring {
    animation: pulseRing 2s ease-out infinite;
    transform-origin: center;
    opacity: 0;
    animation-delay: 3s;
}

.end-pulse-dot {
    opacity: 0;
    animation: fadeIn 0.3s 3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

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

.hero-headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 24px;
}

.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto 36px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.2s,
        box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(232, 93, 4, 0.2);
}

.btn-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232, 93, 4, 0.3);
}

.btn-cta-lg {
    font-size: 1.15rem;
    padding: 18px 40px;
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.2s;
}

.btn-cta:hover .btn-icon {
    transform: translateX(3px);
}

.hero-note,
.cta-note {
    font-size: 0.82rem;
    color: var(--road-dark);
}

/* HERO MOCKUP */

.hero-mockup {
    position: relative;
    z-index: 1;
    margin-top: 56px;
    max-width: 720px;
    width: 100%;
}

.mockup-browser {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--topo);
}

.mockup-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #fafaf8;
    border-bottom: 1px solid var(--topo);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--road);
}

.mockup-url {
    flex: 1;
    font-size: 0.72rem;
    color: var(--text-muted);
    background: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid var(--topo);
    font-family: "SF Mono", "Fira Code", monospace;
}

.mockup-body {
    position: relative;
    padding: 24px;
    min-height: 200px;
}

.mockup-listing {
    display: flex;
    gap: 20px;
}

.mockup-photo {
    width: 160px;
    height: 120px;
    background: var(--topo);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.mockup-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.mockup-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text);
}

.mockup-address {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mockup-specs {
    display: flex;
    gap: 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mockup-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

.ml {
    height: 8px;
    border-radius: 4px;
    background: var(--topo);
}

/* WIDGET IN MOCKUP */

.mockup-widget {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 210px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.05);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
}

.widget-animate {
  animation: widgetSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) 3.6s forwards;
}

@keyframes widgetSlideUp {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.mw-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-bottom: 1px solid #f0f0f0;
}

.mw-brand {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mw-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.mw-title {
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.mw-min {
  font-size: 0.7rem;
  color: var(--road-dark);
}

.mw-panel {
  padding: 3px 0;
}

.mw-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  font-size: 0.7rem;
}

.mw-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mw-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.mw-name {
  color: var(--text);
  font-weight: 500;
}

.mw-time {
  font-weight: 700;
  font-size: 0.72rem;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   ROUTE DIVIDER
   ============================================================ */

.route-divider {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 60px;
    overflow: hidden;
}

.route-divider svg {
    width: 100%;
    height: 100%;
}

.divider-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    transition: stroke-dashoffset 1.5s ease-out;
}

.route-divider.visible .divider-path {
    stroke-dashoffset: 0;
}

/* ============================================================
   STATS
   ============================================================ */

.stats {
    position: relative;
    z-index: 1;
    padding: 80px 0 100px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.stat-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--topo);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-pin {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 auto 16px;
    position: relative;
}

.stat-pin::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.stat-number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 3.5rem;
    letter-spacing: -0.03em;
    color: var(--text);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number.special {
    color: var(--accent);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stats-copy {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.stats-copy h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.stats-copy p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.stats-copy strong {
    color: var(--accent);
    font-weight: 700;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how-section {
    position: relative;
    z-index: 1;
    padding: 80px 0 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: var(--accent-light);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.route-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    text-align: center;
}

.steps-route {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 0;
    pointer-events: none;
}

.steps-path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    transition: stroke-dashoffset 1.8s ease-out;
}

.how-section.visible .steps-path {
    stroke-dashoffset: 0;
}

.step {
    position: relative;
    z-index: 1;
}

.step-marker {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
    position: relative;
}

.step-marker-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    opacity: 0.2;
}

.step-marker.pin-marker {
    background: none;
    width: 56px;
    height: 56px;
}

.step-marker.pin-marker svg {
    width: 36px;
    height: 36px;
}

.step-marker.pin-marker .step-marker-ring {
    display: none;
}

.step-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ============================================================
   FEATURES
   ============================================================ */

.features-section {
    position: relative;
    z-index: 1;
    padding: 80px 0 100px;
}

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

.feature-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--topo);
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-wide {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    gap: 0 20px;
    align-items: start;
}

.feature-wide .feature-icon {
    grid-row: span 2;
}

.feature-wide .feature-pills {
    grid-column: 1 / -1;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 16px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

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

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.feature-pills span {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    background: var(--bg);
    border: 1px solid var(--topo);
    color: var(--text-muted);
    transition:
        border-color 0.2s,
        color 0.2s;
}

.feature-pills span:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ============================================================
   COVERAGE
   ============================================================ */

.coverage-section {
  position: relative;
  z-index: 1;
  padding: 80px 0 100px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 6px;
  margin-bottom: 24px;
}

.cov-state {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--topo);
  transition: border-color 0.15s, transform 0.15s;
}

.cov-state:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.cov-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cov-state.has-site .cov-dot {
  background: var(--accent);
}

.cov-state.national .cov-dot {
  background: var(--road);
}

.cov-state.national {
  color: var(--text-muted);
}

.coverage-legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.has-dot {
  background: var(--accent);
}

.national-dot {
  background: var(--road);
}

/* ============================================================
   DEMO
   ============================================================ */

.demo-section {
    position: relative;
    z-index: 1;
    padding: 80px 0 100px;
}

.demo-box {
    max-width: 540px;
    margin: 0 auto;
}

.demo-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 2px solid var(--topo);
    border-radius: var(--radius);
    padding: 14px 18px;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
    margin-bottom: 20px;
}

.demo-input-wrap:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.08);
}

.demo-pin-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.demo-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: transparent;
}

.demo-input::placeholder {
    color: var(--road-dark);
}

.demo-widget {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--topo);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-empty {
    font-size: 0.88rem;
    color: var(--road-dark);
    text-align: center;
    padding: 40px 20px;
}

.demo-results {
    width: 100%;
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--topo);
}

.demo-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.demo-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
}

.demo-rows {
    padding: 4px 0;
}

.demo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    transition: background 0.15s;
}

.demo-row:hover {
    background: var(--bg);
}

.demo-row-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-row-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.demo-row-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
}

.demo-row-time {
    font-weight: 700;
    font-size: 0.92rem;
}

.demo-row.demo-stagger {
    opacity: 0;
    transform: translateX(-12px);
    animation: staggerIn 0.4s ease-out forwards;
}

@keyframes staggerIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================================
   CTA
   ============================================================ */

.cta-section {
    position: relative;
    z-index: 1;
    padding: 80px 0 120px;
}

.cta-block {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 64px 40px;
    border: 1px solid var(--topo);
    box-shadow: var(--shadow-md);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.cta-pin-icon {
    margin: 0 auto 24px;
    width: 48px;
    height: 64px;
    animation: pinBob 3s ease-in-out infinite;
}

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

.cta-pin-icon svg {
    width: 100%;
    height: 100%;
}

.cta-headline {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 14px;
}

.cta-sub {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    position: relative;
    z-index: 1;
    padding: 40px 24px;
    border-top: 1px solid var(--topo);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
}

.footer-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-note {
    width: 100%;
    text-align: center;
    font-size: 0.78rem;
    color: var(--road-dark);
    margin-top: 16px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .route-steps {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .steps-route {
        display: none;
    }

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

    .feature-wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .feature-wide .feature-icon {
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .hero-route {
        display: none;
    }

    .mockup-listing {
        flex-direction: column;
    }

    .mockup-photo {
        width: 100%;
        height: 80px;
    }

    .cta-block {
        padding: 48px 24px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}
