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

:root {
  --red:    #E53935;
  --red2:   #B71C1C;
  --red3:   #FF5252;
  --dark:   #080810;
  --dark2:  #0f0f1a;
  --dark3:  #13131f;
  --card:   #16162a;
  --border: rgba(255,255,255,0.07);
  --border2:rgba(229,57,53,0.25);
  --muted:  rgba(255,255,255,0.45);
  --text:   #F0F0FF;
  --glow:   rgba(229,57,53,0.4);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--dark); color: var(--text); line-height: 1.6; overflow-x: hidden; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--red2); border-radius: 3px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; height: 68px;
  background: rgba(8,8,16,0.8);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--red), #7B1FA2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: 0 0 16px var(--glow);
}
.nav-name { font-weight: 800; font-size: 1rem; color: var(--text); letter-spacing: .02em; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .875rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.btn-download {
  display: flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  border-radius: 10px; padding: 9px 20px;
  font-size: .875rem; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 20px rgba(229,57,53,.4);
  transition: all .2s;
}
.btn-download:hover { background: #F44336; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(229,57,53,.55); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 6% 60px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 65% 45%, rgba(229,57,53,.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 60%, rgba(123,31,162,.1) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .04;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; display: flex; align-items: center;
  gap: 60px; width: 100%; max-width: 1200px; margin: 0 auto;
}
.hero-content { flex: 1; min-width: 0; }
.hero-visual { flex-shrink: 0; width: 300px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(229,57,53,.12); border: 1px solid rgba(229,57,53,.3);
  border-radius: 50px; padding: 6px 16px;
  font-size: .78rem; font-weight: 700; color: #FF8A80;
  margin-bottom: 28px; letter-spacing: .04em; text-transform: uppercase;
}
.pulse { width: 7px; height: 7px; background: var(--red3); border-radius: 50%; flex-shrink: 0; animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,82,82,.7); } 60% { box-shadow: 0 0 0 8px rgba(255,82,82,0); } }

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem); font-weight: 900;
  line-height: 1.08; letter-spacing: -.04em; margin-bottom: 22px;
}
h1 .red { color: var(--red3); }
h1 .grad { background: linear-gradient(90deg, var(--red3), #FF80AB); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.hero-desc { font-size: 1.1rem; color: var(--muted); line-height: 1.7; max-width: 500px; margin-bottom: 36px; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--red), #D81B60);
  color: #fff; border-radius: 14px; padding: 15px 30px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  box-shadow: 0 8px 32px rgba(229,57,53,.45);
  transition: all .25s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(229,57,53,.6); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px; padding: 15px 30px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  transition: all .25s; backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.25); }

.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: .82rem; color: var(--muted); }
.trust-icon { color: var(--red3); font-size: 1rem; }

/* ─── PHONE MOCKUP ─── */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone {
  width: 224px; height: 460px;
  background: #0C1220;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.04), inset 0 1px 0 rgba(255,255,255,.06);
  position: relative; overflow: hidden;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0px) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } }

.phone-screen {
  position: absolute; inset: 9px;
  background: #050A18; border-radius: 32px; overflow: hidden;
  display: flex; flex-direction: column;
}
.phone-island {
  width: 72px; height: 20px; background: #0C1220;
  border-radius: 0 0 12px 12px; margin: 0 auto;
  flex-shrink: 0; position: relative; z-index: 2;
}
.phone-hud {
  margin: 6px 8px 0;
  background: rgba(12,20,34,0.95);
  border: 0.7px solid rgba(229,57,53,.35);
  border-radius: 14px;
  display: flex; align-items: stretch;
  overflow: hidden; flex-shrink: 0;
}
.phone-hud-bar { width: 4px; background: var(--red); flex-shrink: 0; }
.phone-hud-body { padding: 7px 9px; flex: 1; }
.phone-hud-title { font-size: .5rem; font-weight: 900; color: #FF8A80; letter-spacing: .02em; }
.phone-hud-sub { font-size: .44rem; color: rgba(255,255,255,.5); margin-top: 1px; }
.phone-hud-dist { font-size: .55rem; font-weight: 800; color: var(--red3); margin-left: auto; padding: 0 8px; display: flex; align-items: center; transition: color .3s; }
.phone-radar-dist { font-size: .58rem; font-weight: 900; color: #fff; flex-shrink: 0; transition: color .3s; }

.phone-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px 4px; flex-shrink: 0;
}
.phone-app-name { font-size: .58rem; font-weight: 900; color: #fff; letter-spacing: .02em; }
.phone-online {
  display: flex; align-items: center; gap: 4px;
  background: rgba(27,94,32,.85); border-radius: 20px;
  padding: 3px 8px;
}
.phone-online-dot { width: 5px; height: 5px; background: #69F0AE; border-radius: 50%; animation: pulse-g 1.8s infinite; }
.phone-online-text { font-size: .42rem; font-weight: 700; color: #fff; }

.phone-speed-block {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 4px 14px 0; flex: 1;
}
.phone-speed-num {
  font-size: 4.8rem; font-weight: 900; line-height: 1; color: #fff;
  letter-spacing: -.06em; transition: color .3s;
}
.phone-speed-unit { font-size: .55rem; font-weight: 700; color: rgba(255,255,255,.45); margin-top: 4px; }
.phone-limit-wrap { display: flex; flex-direction: column; align-items: center; margin-top: 8px; }
.phone-limit-circle {
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 4px solid #D32F2F;
  display: flex; align-items: center; justify-content: center;
}
.phone-limit-num { font-size: .9rem; font-weight: 900; color: #D32F2F; }
.phone-limit-label { font-size: .38rem; color: rgba(255,255,255,.5); font-weight: 700; margin-top: 3px; text-transform: uppercase; }

.phone-radar-card {
  margin: 4px 8px;
  background: rgba(229,57,53,.12); border: 0.7px solid rgba(229,57,53,.3);
  border-radius: 12px; padding: 8px 10px;
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.phone-radar-icon { font-size: 1rem; flex-shrink: 0; }
.phone-radar-info { flex: 1; min-width: 0; }
.phone-radar-type { font-size: .48rem; font-weight: 800; color: #FF8A80; text-transform: uppercase; letter-spacing: .04em; }
.phone-radar-road { font-size: .43rem; color: rgba(255,255,255,.45); margin-top: 1px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.phone-radar-dist { font-size: .58rem; font-weight: 900; color: #fff; flex-shrink: 0; }

.phone-types { margin: 4px 8px 0; display: flex; flex-direction: column; gap: 3px; flex-shrink: 0; }
.phone-type-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 8px; border-radius: 8px;
  background: rgba(255,255,255,.03);
}
.phone-type-left { display: flex; align-items: center; gap: 5px; }
.phone-type-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.phone-type-name { font-size: .4rem; font-weight: 600; color: rgba(255,255,255,.65); }
.phone-type-count { font-size: .44rem; font-weight: 800; color: rgba(255,255,255,.9); }

.phone-nav {
  margin: 4px 8px 6px;
  background: #0C1422; border-radius: 20px;
  border: 0.5px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: space-around;
  padding: 8px 4px; flex-shrink: 0;
}
.phone-nav-item { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 0 4px; }
.phone-nav-icon { font-size: .85rem; line-height: 1; }
.phone-nav-label { font-size: .35rem; font-weight: 600; color: rgba(255,255,255,.35); }
.phone-nav-item.active .phone-nav-label { color: rgba(255,255,255,.9); }
.phone-nav-item.active .phone-nav-icon { filter: brightness(1.4); }
.phone-nav-indicator { width: 28px; height: 28px; background: rgba(229,57,53,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; }

.phone-glow {
  position: absolute; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(229,57,53,.2) 0%, transparent 70%);
  border-radius: 50%; top: 40%; left: 50%; transform: translate(-50%,-50%);
  filter: blur(30px); pointer-events: none;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 20px; text-align: center;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background .3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(229,57,53,.05); }
.stat-item::before {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--red); transition: width .3s;
}
.stat-item:hover::before { width: 60%; }
.stat-num {
  font-size: 2.4rem; font-weight: 900; color: var(--red3);
  line-height: 1; font-variant-numeric: tabular-nums;
  text-shadow: 0 0 30px rgba(255,82,82,.3);
}
.stat-label { font-size: .78rem; color: var(--muted); margin-top: 6px; font-weight: 500; letter-spacing: .02em; }
.stat-online-dot { display: inline-block; width: 7px; height: 7px; background: #4CAF50; border-radius: 50%; margin-right: 5px; animation: pulse-g 1.8s infinite; vertical-align: middle; }
@keyframes pulse-g { 0%,100% { box-shadow: 0 0 0 0 rgba(76,175,80,.7); } 60% { box-shadow: 0 0 0 6px rgba(76,175,80,0); } }

/* ─── SECTIONS ─── */
section { padding: 100px 6%; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--red3); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px;
}
.section-eyebrow::before { content:''; width: 24px; height: 2px; background: var(--red3); border-radius: 1px; }

h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  letter-spacing: -.03em; line-height: 1.1; margin-bottom: 16px;
}
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 520px; margin-bottom: 56px; line-height: 1.7; }

/* ─── FEATURES ─── */
#features { background: var(--dark2); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border-radius: 20px; overflow: hidden;
}
.feature-card {
  background: var(--card); padding: 36px 32px;
  transition: background .25s; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(229,57,53,.06) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.feature-card:hover { background: #1c1c30; }
.feature-card:hover::before { opacity: 1; }
.feature-icon-wrap {
  width: 52px; height: 52px; border-radius: 16px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  position: relative;
}
.fi-red   { background: linear-gradient(135deg, rgba(229,57,53,.25), rgba(229,57,53,.08)); box-shadow: 0 0 20px rgba(229,57,53,.15); }
.fi-orange{ background: linear-gradient(135deg, rgba(255,152,0,.25), rgba(255,152,0,.08)); }
.fi-blue  { background: linear-gradient(135deg, rgba(33,150,243,.25), rgba(33,150,243,.08)); }
.fi-purple{ background: linear-gradient(135deg, rgba(156,39,176,.25), rgba(156,39,176,.08)); }
.fi-green { background: linear-gradient(135deg, rgba(76,175,80,.25), rgba(76,175,80,.08)); }
.fi-cyan  { background: linear-gradient(135deg, rgba(0,188,212,.25), rgba(0,188,212,.08)); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: .9rem; line-height: 1.7; }
.feature-card--wide { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 24px; }
.feature-card--wide .feature-icon-wrap { flex-shrink: 0; }
.feature-card--wide p { max-width: 680px; }

/* ─── MAP ─── */
#map-section { background: var(--dark); }
.map-wrap { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.map-wrap::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, transparent 80%, var(--dark) 100%);
}
#radar-map { width: 100%; height: 520px; }
.map-legend {
  display: flex; gap: 24px; flex-wrap: wrap; margin-top: 20px;
  padding: 16px 20px; background: var(--card); border-radius: 12px;
  border: 1px solid var(--border);
}
.legend-item { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); font-weight: 500; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ─── COUNTRIES ─── */
#countries { background: var(--dark3); }
.countries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.country-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s;
  cursor: default;
}
.country-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.country-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.country-card:hover::after { transform: scaleX(1); }
.country-flag { font-size: 2.5rem; margin-bottom: 14px; display: block; }
.country-count { font-size: 2.2rem; font-weight: 900; color: var(--text); line-height: 1; margin-bottom: 4px; }
.country-name { font-size: .82rem; color: var(--muted); font-weight: 500; }

/* ─── HOW TO ─── */
#how-to { background: var(--dark2); }
.steps-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-wrap::before {
  content: ''; position: absolute; top: 24px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px; background: linear-gradient(90deg, var(--red), rgba(229,57,53,.2));
  z-index: 0;
}
.step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #D81B60);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px var(--dark2), 0 0 0 7px rgba(229,57,53,.3);
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .875rem; line-height: 1.7; }

/* ─── FAQ ─── */
#faq { background: var(--dark); }
.faq-list { display: grid; gap: 12px; max-width: 760px; }
details {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; transition: border-color .2s;
}
details[open] { border-color: var(--border2); }
summary {
  padding: 20px 24px; font-weight: 700; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; font-size: .95rem; user-select: none;
}
summary::-webkit-details-marker { display: none; }
.faq-icon { color: var(--red3); font-size: 1.3rem; transition: transform .3s; flex-shrink: 0; }
details[open] .faq-icon { transform: rotate(45deg); }
.faq-body { padding: 0 24px 20px; color: var(--muted); font-size: .92rem; line-height: 1.75; }

/* ─── SUPPORT ─── */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.support-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 32px 28px; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .25s, transform .25s;
}
.support-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.support-icon { font-size: 2rem; }
.support-card h3 { font-size: 1.05rem; font-weight: 700; }
.support-card p { color: var(--muted); font-size: .9rem; line-height: 1.7; flex: 1; }
.support-link { color: var(--red3); font-size: .85rem; font-weight: 700; }

/* ─── ROUTE SEARCH ─── */
#route-search { background: var(--dark2); }
.route-inputs { display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap; }
.route-field { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 8px; }
.route-label { font-size: .75rem; font-weight: 700; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.route-input-outer {
  position: relative; display: flex; align-items: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 0 16px; gap: 10px; transition: border-color .2s;
}
.route-input-outer:focus-within { border-color: rgba(229,57,53,.5); box-shadow: 0 0 0 3px rgba(229,57,53,.08); }
.route-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.route-dot--green { background: #4CAF50; box-shadow: 0 0 8px rgba(76,175,80,.5); }
.route-dot--red   { background: var(--red); box-shadow: 0 0 8px rgba(229,57,53,.5); }
.route-input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--text); font-family: inherit; font-size: .95rem; padding: 14px 0; min-width: 0;
}
.route-input::placeholder { color: var(--muted); }
.route-suggestions {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: #1a1a2e; border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; z-index: 300; list-style: none; padding: 4px 0;
  box-shadow: 0 16px 40px rgba(0,0,0,.6);
}
.route-suggestions:empty { display: none; }
.route-sugg-item {
  padding: 11px 16px; cursor: pointer; font-size: .875rem; color: var(--muted);
  transition: background .15s, color .15s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.route-sugg-item:hover { background: rgba(229,57,53,.1); color: var(--text); }
.route-swap {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--card); border: 1px solid var(--border); color: var(--muted);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s; touch-action: manipulation; align-self: flex-end;
}
.route-swap:hover { background: rgba(229,57,53,.1); color: var(--red3); border-color: var(--border2); }
.route-search-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--red), #D81B60);
  color: #fff; border: none; border-radius: 14px; padding: 14px 28px;
  font-family: inherit; font-size: .95rem; font-weight: 700; cursor: pointer;
  box-shadow: 0 6px 24px rgba(229,57,53,.4); transition: all .25s;
  touch-action: manipulation; white-space: nowrap; flex-shrink: 0; align-self: flex-end;
}
.route-search-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 32px rgba(229,57,53,.55); }
.route-search-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.route-status {
  margin-top: 24px; padding: 16px 20px; border-radius: 14px;
  font-size: .9rem; text-align: center; font-weight: 500;
}
.route-status--loading { background: var(--card); border: 1px solid var(--border); color: var(--muted); }
.route-status--error { background: rgba(229,57,53,.08); border: 1px solid rgba(229,57,53,.3); color: #FF8A80; }
.route-results { margin-top: 32px; }
.route-summary { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.route-chip {
  display: flex; align-items: center; gap: 7px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 50px; padding: 8px 16px; font-size: .85rem; font-weight: 600;
}
.route-chip--alert { border-color: var(--border2); background: rgba(229,57,53,.08); color: #FF8A80; }
.route-chip--ok { border-color: rgba(76,175,80,.3); background: rgba(76,175,80,.08); color: #A5D6A7; }
.route-map-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.5); margin-bottom: 16px; }
#route-map { width: 100%; height: 420px; }
.route-radar-list { display: flex; flex-direction: column; gap: 8px; }
.route-empty { text-align: center; padding: 40px; color: var(--muted); font-size: .95rem; }
.route-radar-item {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 14px 18px; display: flex; align-items: center; gap: 14px; transition: border-color .2s;
}
.route-radar-item:hover { border-color: var(--border2); }
.rri-num {
  width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
  background: rgba(229,57,53,.12); border: 1px solid rgba(229,57,53,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 900; color: var(--red3);
}
.rri-color { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; border: 2px solid rgba(255,255,255,.15); }
.rri-info { flex: 1; min-width: 0; }
.rri-type { font-size: .9rem; font-weight: 700; margin-bottom: 2px; }
.rri-addr { font-size: .78rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rri-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; flex-shrink: 0; }
.rri-limit {
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff; border: 3px solid #D32F2F;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 900; color: #D32F2F; line-height: 1;
}
.rri-dist { font-size: .73rem; color: var(--muted); font-weight: 600; white-space: nowrap; }

/* ─── CTA ─── */
.cta-section {
  padding: 120px 6%; text-align: center; position: relative; overflow: hidden;
  background: var(--dark2);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(229,57,53,.12) 0%, transparent 70%);
}
.cta-inner { position: relative; max-width: 600px; margin: 0 auto; }
.cta-badge {
  display: inline-block; background: rgba(76,175,80,.15); border: 1px solid rgba(76,175,80,.3);
  color: #A5D6A7; border-radius: 50px; padding: 5px 16px;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 20px;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: var(--muted); font-size: 1.05rem; margin-bottom: 40px; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark); border-top: 1px solid var(--border);
  padding: 40px 6%; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-dot { width: 24px; height: 24px; background: linear-gradient(135deg, var(--red), #7B1FA2); border-radius: 7px; }
.footer-logo-name { font-weight: 800; font-size: .9rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--muted); font-size: .8rem; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── PERFORMANCE ─── */
*, *::before, *::after { -webkit-tap-highlight-color: transparent; }
a, button { touch-action: manipulation; }
.phone { will-change: transform; }
.reveal { will-change: opacity, transform; }
.reveal.visible { will-change: auto; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-visual { width: 240px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-desc { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { order: -1; width: 200px; }
  .phone { width: 190px; height: 380px; }
  .nav-links { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .steps-wrap { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-wrap::before { display: none; }
  .support-grid { grid-template-columns: 1fr; }
  nav { backdrop-filter: blur(8px) saturate(120%); }
  .btn-ghost { backdrop-filter: none; }
  .btn-primary, .btn-ghost { min-height: 48px; }
  .btn-download { min-height: 44px; }
  .route-inputs { flex-direction: column; align-items: stretch; }
  .route-swap { align-self: center; }
  .route-search-btn { width: 100%; justify-content: center; }
  #route-map { height: 300px; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--wide { grid-column: 1; flex-direction: column; gap: 16px; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-wrap { grid-template-columns: 1fr; }
}
