/* ==========================================================================
   Anbagusvi Technologies — shared design system
   Palette lifted from the RideOn app (lib/constants/colors.dart) so the
   website and product feel like one brand.
   ========================================================================== */

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

:root {
  /* Brand — azure to indigo duotone */
  --primary: #2563EB;
  --primary-glow: #60A5FA;
  --secondary: #6366F1;
  --accent: #0EA5E9;

  /* Semantic */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #F43F5E;

  /* Light neutrals (content sections) */
  --bg: #EDF3FC;
  --surface: #FFFFFF;
  --card: #F3F8FF;
  --border: #D4E3F6;
  --text: #0A2540;
  --text-soft: #5B7794;
  --text-softer: #6B87A2;

  /* Dark neutrals (hero / footer) */
  --bg-dark: #0A0F1A;
  --surface-dark: #141C2B;
  --card-dark: #1B2740;
  --border-dark: #29374F;
  --text-inv: #E7EFFB;
  --text-inv-soft: #93A9C4;

  --grad-primary: linear-gradient(135deg, #3B82F6, #6366F1);
  --grad-accent: linear-gradient(135deg, #38BDF8, #0EA5E9);
  --grad-warm: linear-gradient(135deg, #FBBF24, #F59E0B);

  --shadow-sm: 0 4px 16px -4px rgba(10, 37, 64, 0.08);
  --shadow-md: 0 20px 44px -16px rgba(37, 99, 235, 0.22);
  --shadow-dark: 0 20px 44px -12px rgba(0, 0, 0, 0.45);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --container: 1180px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-accent);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.18);
}

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.08; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 1.15; }
h3 { font-size: 1.2rem; }
p { color: var(--text-soft); }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head p { font-size: 1.05rem; }
.section-head.left { margin-left: 0; text-align: left; }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, opacity .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(37, 99, 235, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -8px rgba(37, 99, 235, 0.65); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-inv);
  border: 1px solid rgba(231, 239, 251, 0.25);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); background: rgba(37, 99, 235, 0.06); }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-disabled { opacity: 0.55; cursor: not-allowed; pointer-events: none; }
.btn-sm { padding: 10px 18px; font-size: 13px; border-radius: 10px; }

/* ── Header ──────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 26, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231, 239, 251, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-inv);
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px -6px rgba(37, 99, 235, 0.7);
  flex-shrink: 0;
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text small { font-size: 10px; font-weight: 600; letter-spacing: 1.4px; color: var(--text-inv-soft); text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-inv-soft);
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--text-inv); background: rgba(255, 255, 255, 0.06); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(231, 239, 251, 0.2);
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-inv);
  position: relative;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle::before { transform: translateY(-6px); }
.nav-toggle::after { transform: translateY(4px); }

/* ── Hero (dark, gradient mesh) ─────────────────────────────────────── */
.hero {
  background: radial-gradient(1100px 560px at 12% -10%, rgba(37, 99, 235, 0.45), transparent 60%),
              radial-gradient(900px 500px at 100% 0%, rgba(99, 102, 241, 0.35), transparent 55%),
              radial-gradient(700px 500px at 50% 100%, rgba(14, 165, 233, 0.18), transparent 60%),
              var(--bg-dark);
  color: var(--text-inv);
  padding: 96px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(231, 239, 251, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 239, 251, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.page-hero {
  padding: 72px 0 64px;
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero p { max-width: 620px; margin: 18px auto 0; font-size: 1.05rem; color: var(--text-inv-soft); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy p.lead {
  font-size: 1.15rem;
  color: var(--text-inv-soft);
  max-width: 540px;
  margin: 20px 0 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-stats div strong { display: block; font-size: 1.4rem; color: var(--text-inv); }
.hero-stats div span { font-size: 12px; color: var(--text-inv-soft); letter-spacing: 0.4px; }

/* Floating orbit graphic in hero */
.hero-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 50%;
}
.orbit-1 { width: 420px; height: 420px; animation: spin 34s linear infinite; }
.orbit-2 { width: 300px; height: 300px; animation: spin 22s linear infinite reverse; }
.orbit-3 { width: 190px; height: 190px; animation: spin 16s linear infinite; }
.orbit-dot {
  position: absolute;
  top: -6px; left: 50%;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--grad-accent);
  box-shadow: 0 0 16px 4px rgba(14, 165, 233, 0.6);
  transform: translateX(-50%);
}
.hero-core {
  width: 128px; height: 128px;
  border-radius: 32px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 30px 60px -12px rgba(37, 99, 235, 0.65);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.hero-core svg { width: 60px; height: 60px; color: #fff; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ── Trust / logo strip ─────────────────────────────────────────────── */
.strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: center;
  align-items: center;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
}
.strip-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* ── Generic sections ────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section.tight { padding: 72px 0; }
.section-alt { background: var(--surface); }

/* ── Cards / grid ────────────────────────────────────────────────────── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(37, 99, 235, 0.35); }

.icon-tile {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.icon-tile svg { width: 24px; height: 24px; }
.tile-blue { background: rgba(37, 99, 235, 0.1); color: var(--primary); }
.tile-indigo { background: rgba(99, 102, 241, 0.1); color: var(--secondary); }
.tile-sky { background: rgba(14, 165, 233, 0.1); color: var(--accent); }
.tile-amber { background: rgba(245, 158, 11, 0.12); color: var(--warning); }
.tile-green { background: rgba(16, 185, 129, 0.12); color: var(--success); }
.tile-rose { background: rgba(244, 63, 94, 0.12); color: var(--error); }

.card h3 { margin-bottom: 10px; }
.card p { font-size: 14.5px; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}
.card-link svg { width: 14px; height: 14px; transition: transform .2s ease; }
.card:hover .card-link svg { transform: translateX(3px); }

.feature-list { display: flex; flex-direction: column; gap: 18px; margin: 28px 0 36px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .f-ico {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-list .f-ico svg { width: 17px; height: 17px; }
.feature-list b { display: block; font-size: 14.5px; color: var(--text); }
.feature-list span { font-size: 13.5px; color: var(--text-soft); }

/* ── RideOn product section ─────────────────────────────────────────── */
.product-section { background: var(--bg-dark); color: var(--text-inv); }
.product-section .eyebrow { color: var(--accent); }
.product-section h2 { color: var(--text-inv); }
.product-section p { color: var(--text-inv-soft); }
.product-grid { display: grid; grid-template-columns: 1fr 0.92fr; gap: 64px; align-items: center; }
.product-grid .feature-list b { color: var(--text-inv); }
.product-grid .feature-list span { color: var(--text-inv-soft); }
.product-grid .feature-list .f-ico { background: rgba(96, 165, 250, 0.15); color: var(--primary-glow); }

.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(231, 239, 251, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-inv-soft);
  font-size: 12.5px;
}
.store-badge svg { width: 22px; height: 22px; color: var(--text-inv); }
.store-badge b { display: block; font-size: 13.5px; color: var(--text-inv); }

/* Phone mockup replicating the RideOn "Command Center" dashboard */
.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: 300px;
  border-radius: 42px;
  padding: 14px;
  background: linear-gradient(160deg, #1B2740, #0A0F1A);
  border: 1px solid rgba(231, 239, 251, 0.12);
  box-shadow: var(--shadow-dark), 0 0 0 1px rgba(255,255,255,.03) inset;
}
.phone-screen {
  background: #0A0F1A;
  border-radius: 30px;
  padding: 22px 18px 26px;
  overflow: hidden;
  position: relative;
}
.phone-notch {
  width: 70px; height: 20px;
  background: #000;
  border-radius: 0 0 14px 14px;
  margin: -22px auto 18px;
}
.phone-title {
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-inv-soft);
  margin-bottom: 18px;
}
.lock-badge {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 0 26px;
}
.lock-badge .ring {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(16, 185, 129, 0.12);
  border: 1.5px solid rgba(16, 185, 129, 0.5);
}
.lock-badge .ring svg { width: 30px; height: 30px; color: var(--success); }
.lock-badge b { font-size: 11px; letter-spacing: 1.6px; color: var(--text-inv); }
.lock-badge span { font-size: 10px; color: var(--text-inv-soft); }

.radar-card {
  background: #141C2B;
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  margin-bottom: 14px;
}
.radar-card .r-label { font-size: 9px; font-weight: 800; letter-spacing: 1.6px; color: var(--text-inv-soft); margin-bottom: 14px; }
.radar {
  width: 120px; height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%);
}
.radar-ring { position: absolute; border: 1px solid rgba(14, 165, 233, 0.25); border-radius: 50%; inset: 0; }
.radar-ring.r2 { inset: 18px; }
.radar-ring.r3 { inset: 36px; }
.radar-sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(14,165,233,0.55), transparent 35%);
  animation: sweep 3.2s linear infinite;
}
.radar-dot { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px 2px rgba(14,165,233,.7); top: 30%; left: 62%; }
@keyframes sweep { to { transform: rotate(360deg); } }

.device-row {
  display: flex; align-items: center; gap: 12px;
  background: #141C2B;
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 18px;
}
.device-row .d-ico { width: 32px; height: 32px; border-radius: 9px; background: rgba(14,165,233,0.15); display: flex; align-items: center; justify-content: center; }
.device-row .d-ico svg { width: 16px; height: 16px; color: var(--accent); }
.device-row .d-txt b { display: block; font-size: 11.5px; color: var(--text-inv); }
.device-row .d-txt span { font-size: 9.5px; color: var(--text-inv-soft); letter-spacing: .5px; }
.device-row .bars { display: flex; gap: 2px; margin-left: auto; align-items: flex-end; }
.device-row .bars i { width: 3px; background: var(--accent); border-radius: 1px; display: block; }
.device-row .bars i:nth-child(1) { height: 6px; }
.device-row .bars i:nth-child(2) { height: 9px; }
.device-row .bars i:nth-child(3) { height: 12px; }
.device-row .bars i:nth-child(4) { height: 15px; opacity: .3; }

.phone-cta {
  background: var(--grad-primary);
  border-radius: 14px;
  text-align: center;
  padding: 15px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: #fff;
  box-shadow: 0 14px 26px -10px rgba(37, 99, 235, 0.7);
}

/* ── Process steps ───────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step .num {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--grad-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  margin-bottom: 16px;
}
.step h3 { font-size: 15px; margin-bottom: 6px; }
.step p { font-size: 13px; }

/* ── CTA banner ──────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 45%),
                     radial-gradient(circle at 85% 80%, rgba(255,255,255,0.14), transparent 40%);
}
.cta-banner * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.88); max-width: 480px; margin: 0 auto 32px; }
.cta-banner .btn-ghost { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); }
.cta-banner .btn-ghost:hover { background: rgba(255,255,255,0.26); }

/* ── Footer ──────────────────────────────────────────────────────────── */
.site-footer { background: var(--bg-dark); color: var(--text-inv-soft); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(231, 239, 251, 0.08);
}
.footer-grid .brand { color: var(--text-inv); margin-bottom: 14px; }
.footer-grid p { font-size: 13.5px; max-width: 300px; }
.footer-col h4 { font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--text-inv); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 13.5px; transition: color .2s ease; }
.footer-col a:hover { color: var(--text-inv); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; font-size: 12.5px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: var(--text-inv-soft); }
.footer-bottom a:hover { color: var(--text-inv); }

/* ── Legal pages ─────────────────────────────────────────────────────── */
.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; padding: 72px 0 110px; }
.legal-toc { position: sticky; top: 100px; }
.legal-toc h4 { font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--text-softer); margin-bottom: 16px; }
.legal-toc ul { display: flex; flex-direction: column; gap: 4px; border-left: 2px solid var(--border); }
.legal-toc a { display: block; padding: 8px 16px; font-size: 13.5px; color: var(--text-soft); border-left: 2px solid transparent; margin-left: -2px; transition: color .2s ease, border-color .2s ease; }
.legal-toc a:hover { color: var(--primary); }
.legal-meta { margin-top: 24px; padding: 16px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; font-size: 12.5px; }
.legal-meta b { color: var(--text); display: block; margin-bottom: 4px; }

.legal-content h2 { font-size: 1.5rem; margin: 44px 0 16px; scroll-margin-top: 100px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.05rem; margin: 24px 0 10px; }
.legal-content p { margin-bottom: 14px; font-size: 15px; }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal-content ul li { font-size: 15px; color: var(--text-soft); margin-bottom: 8px; }
.legal-content strong { color: var(--text); }
.legal-content a { color: var(--primary); font-weight: 600; }
.legal-callout {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14px;
}
.legal-callout p { margin: 0; font-size: 14px; }

/* ── Contact page ────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.form-card, .info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.field input, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--card);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(37,99,235,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 12.5px; color: var(--text-softer); margin-top: 14px; }

.info-card h3 { margin-bottom: 6px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--border); }
.info-item:last-child { border-bottom: none; }
.info-item .i-ico { width: 38px; height: 38px; border-radius: 10px; background: rgba(37,99,235,.1); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-item .i-ico svg { width: 18px; height: 18px; }
.info-item b { display: block; font-size: 13.5px; }
.info-item span, .info-item a { font-size: 13.5px; color: var(--text-soft); }

/* ── Utility ─────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-grid, .product-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 300px; order: -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}

@media (max-width: 760px) {
  .main-nav, .header-actions .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .main-nav {
    display: flex; position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; background: var(--bg-dark);
    padding: 12px 24px 24px; border-bottom: 1px solid rgba(231,239,251,.08);
  }
  .site-header.open .header-actions .btn-primary { display: inline-flex; }
  .grid-4, .grid-3, .grid-2, .form-row, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-banner { padding: 48px 24px; }
  section.section { padding: 64px 0; }
}
