/* ══════════════════════════════════════════════════════════════
   RUTARA · Landing Page Styles
   ══════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --bg:          #091e38;
  --surface:     #12355B;
  --surface2:    #0f2d4f;
  --border:      #1c4270;
  --accent:      #00A676;
  --accent-dim:  rgba(0, 166, 118, 0.12);
  --accent-glow: rgba(0, 166, 118, 0.28);
  --text:        #FFFFFF;
  --muted:       rgba(255, 255, 255, 0.48);
  --green:       #00A676;
  --red:         #ef4444;
  --blue:        #4a9eff;
  --orange:      #f59e0b;
  --heading:     'Barlow Condensed', sans-serif;
  --body:        'Inter', sans-serif;
  --radius:      14px;
  --radius-sm:   8px;
  --max-w:       1160px;
  --transition:  0.2s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--body); cursor: pointer; }
ul { list-style: none; }
textarea, input, select {
  font-family: var(--body);
  font-size: 14px;
  color: var(--text);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  width: 100%;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
textarea:focus, input:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
select option { background: var(--surface2); }
textarea { resize: vertical; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  font-size: 14px;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn--primary:hover {
  background: #fb923c;
  box-shadow: 0 6px 28px rgba(249,115,22,0.45);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 11px 22px;
  font-size: 14px;
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--nav {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(249,115,22,0.3);
  padding: 8px 18px;
  font-size: 13px;
}
.btn--nav:hover { background: var(--accent); color: #fff; }
.btn--lg { padding: 14px 28px; font-size: 15px; }
.btn--full { width: 100%; justify-content: center; }

/* ── Section common ─────────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-h2 {
  font-family: var(--heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-sub { margin: 0 auto; }

/* ── Reveal animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--rv-delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══ NAV ════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(6, 6, 11, 0.88);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.logo-img { width: 32px; height: 32px; border-radius: 8px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 16px 24px 20px;
  background: rgba(13,13,22,0.98);
  border-bottom: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nm-link {
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

/* ══ HERO ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 68px;
}

/* Animated background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* SVG route lines */
.route-line {
  stroke: var(--accent);
  stroke-width: 1.2;
  fill: none;
  opacity: 0.2;
  stroke-dasharray: var(--dash, 1400);
  stroke-dashoffset: var(--dash, 1400);
  animation: drawRoute var(--dur, 3s) ease-out forwards var(--delay, 0s);
}
.route-line--dim { opacity: 0.1; }

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

/* City nodes */
.city-node { animation: nodeAppear 0.5s ease-out both; animation-delay: var(--d, 0s); }
@keyframes nodeAppear { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }

.node-ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1;
  opacity: 0.4;
  animation: nodePulse 3s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
.node-dot { fill: var(--accent); opacity: 0.8; }

@keyframes nodePulse {
  0%, 100% { r: 6px; opacity: 0.4; }
  50% { r: 12px; opacity: 0.1; }
}

/* Truck dots */
.truck-dot { fill: var(--accent); }
.truck-dot--sm { opacity: 0.7; }

/* Ambient orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,166,118,0.14) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(18,53,91,0.5) 0%, transparent 70%);
  bottom: 0;
  left: 10%;
  animation: orbFloat 15s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.97); }
}

/* Hero content */
.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 60px;
}
.hero-content { display: flex; flex-direction: column; gap: 24px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.3s;
}
.eyebrow-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-h1 {
  font-family: var(--heading);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.5px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.5s;
}
.h1-accent {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.7s;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.9s;
}
.hero-proof {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1.1s;
}
.proof-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--muted);
}

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

/* Dashboard mockup */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}
.mockup-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(249,115,22,0.08);
}
.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface2);
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}
.mockup-traffic { display: flex; gap: 6px; }
.mockup-traffic span { width: 11px; height: 11px; border-radius: 50%; }
.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 12px;
  font-family: monospace;
}
.mockup-body { display: flex; }
.mockup-sidebar {
  width: 44px;
  background: var(--surface2);
  border-right: 1px solid var(--border);
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ms-logo {
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
  padding: 0 4px;
}
.ms-item {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
}
.ms-item--active { background: var(--accent-dim); }

.mockup-main { flex: 1; padding: 14px; }
.mockup-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.mh-title { font-family: var(--heading); font-size: 15px; font-weight: 700; }
.mh-date { font-size: 11px; color: var(--muted); }

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.mstat {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
}
.mstat-val { font-family: var(--heading); font-size: 15px; font-weight: 800; }
.mstat-val.green { color: var(--green); }
.mstat-val.red { color: var(--red); }
.mstat-val.orange { color: var(--accent); }
.mstat-label { font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

.mockup-divider { height: 1px; background: var(--border); margin-bottom: 10px; }

.mockup-table-mini { font-size: 11px; }
.mtm-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  padding: 5px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: center;
}
.mtm-head { color: var(--muted); font-size: 9px; letter-spacing: 0.5px; text-transform: uppercase; }
.mtm-code { font-family: monospace; font-weight: 700; color: var(--accent); }
.mtm-name { color: var(--muted); }
.badge-mini {
  display: inline-flex;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 700;
}
.badge-mini.green { background: rgba(16,185,129,0.15); color: var(--green); }
.badge-mini.orange { background: var(--accent-dim); color: var(--accent); }
.badge-mini.blue { background: rgba(59,130,246,0.15); color: var(--blue); }

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  white-space: nowrap;
  animation: floatBob 6s ease-in-out infinite;
}
.float-card--a { bottom: -20px; left: -24px; animation-delay: 0s; }
.float-card--b { top: -14px; right: -24px; animation-delay: 3s; }
@keyframes floatBob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.fc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.fc-dot--green { background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2s infinite; }
.fc-dot--orange { background: var(--accent); box-shadow: 0 0 8px var(--accent); animation: pulse 2s infinite 0.5s; }
.fc-text { display: flex; flex-direction: column; }
.fc-text strong { font-size: 12px; font-weight: 600; }
.fc-text span { font-size: 11px; color: var(--muted); }
.fc-money { color: var(--green) !important; font-weight: 700 !important; }

/* Scroll hint */
.scroll-hint {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-bottom: 28px;
  animation: fadeUp 1s ease forwards 1.5s;
  opacity: 0;
}
.sh-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
.scroll-hint span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══ TICKER ═════════════════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.ticker-track {
  display: inline-flex;
  gap: 24px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.ticker-track span { flex-shrink: 0; }
.t-sep { color: var(--accent); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══ STATS ══════════════════════════════════════════════════ */
.stats-section { padding: 80px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  background: var(--surface);
  padding: 40px 32px;
  text-align: center;
}
.stat-number {
  font-family: var(--heading);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ══ FEATURES ═══════════════════════════════════════════════ */
.features-section { padding: 80px 0 100px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.feat-card:hover::before { transform: scaleX(1); }
.feat-card:hover {
  border-color: rgba(249,115,22,0.3);
  box-shadow: 0 8px 40px rgba(249,115,22,0.1);
  transform: translateY(-4px);
}
.feat-icon { font-size: 32px; margin-bottom: 16px; }
.feat-card h3 { font-family: var(--heading); font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.feat-list { display: flex; flex-direction: column; gap: 6px; }
.feat-list li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}
.feat-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
}

/* ══ HOW IT WORKS ════════════════════════════════════════════ */
.how-section { padding: 80px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.step-number {
  font-family: var(--heading);
  font-size: 64px;
  font-weight: 900;
  color: rgba(249,115,22,0.15);
  line-height: 1;
}
.step-body h3 { font-family: var(--heading); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.step-body p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.step-arrow {
  position: absolute;
  top: 24px;
  right: -24px;
  font-size: 24px;
  color: var(--border);
  font-weight: 300;
}
.step-arrow.last { display: none; }

/* ══ VALUE / TERMINAL ════════════════════════════════════════ */
.value-section { padding: 100px 0; }
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.value-sub { font-size: 16px; color: var(--muted); margin-bottom: 32px; line-height: 1.7; }
.value-checks { display: flex; flex-direction: column; gap: 16px; }
.value-checks li { display: flex; gap: 14px; align-items: flex-start; font-size: 14px; }
.vck {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16,185,129,0.15);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.value-checks strong { color: var(--text); }

/* Terminal */
.terminal {
  background: #071628;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  font-family: 'Menlo', 'Consolas', monospace;
  font-size: 13px;
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
}
.tb-dots { display: flex; gap: 6px; }
.tb-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--border);
}
.tb-title { font-size: 11px; color: var(--muted); }
.terminal-body { padding: 20px 20px 24px; line-height: 2; }
.tl { display: block; }
.tl-prompt { color: var(--accent); margin-right: 6px; }
.tl-green { color: var(--green); }
.tl-orange { color: var(--accent); }
.tl-muted { color: rgba(255,255,255,0.3); }
.tl-cursor {
  display: inline-block;
  color: var(--accent);
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ══ CONTACT ═════════════════════════════════════════════════ */
.contact-section {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info p { font-size: 16px; color: var(--muted); margin-bottom: 32px; line-height: 1.7; }
.ci-items { display: flex; flex-direction: column; gap: 20px; }
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
}
.ci-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.ci-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.ci-item a { color: var(--accent); font-weight: 500; }
.ci-item a:hover { text-decoration: underline; }

.contact-form-wrap {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field:last-of-type { margin-bottom: 20px; }
.form-field label { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.5px; }
.form-legal { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }
.form-success {
  display: none;
  align-items: center;
  gap: 14px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 16px;
  font-size: 14px;
}
.form-success.show { display: flex; }
.fs-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(16,185,129,0.2);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.form-success p { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ══ FOOTER ══════════════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-tag { font-size: 14px; color: var(--muted); max-width: 280px; line-height: 1.6; }
.footer-nav { display: flex; gap: 48px; }
.fn-col { display: flex; flex-direction: column; gap: 10px; }
.fn-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); margin-bottom: 4px; }
.fn-col a { font-size: 14px; color: var(--muted); transition: color var(--transition); }
.fn-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

/* ══ RESPONSIVE ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding-top: 60px; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .float-card--a { left: -10px; }
  .float-card--b { right: -10px; }
  .value-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { flex-direction: column; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn--nav { display: none; }
  .nav-burger { display: flex; }

  .hero-h1 { font-size: 42px; }
  .hero-sub { font-size: 15px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .steps-track { grid-template-columns: 1fr; gap: 40px; }
  .step-arrow { display: none; }

  .form-row-2 { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 24px; }

  .footer-nav { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .float-card { display: none; }

  .mockup-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn--lg { width: 100%; justify-content: center; }
}
