/* =========================================================
   CarDealer — modern static site
   ========================================================= */

:root {
  /* palette */
  --bg:        #0b1020;
  --bg-2:      #0e1428;
  --surface:   #ffffff;
  --surface-2: #f6f8fc;
  --ink:       #0d1424;
  --ink-2:     #48546b;
  --ink-3:     #7c879b;
  --line:      #e6eaf2;

  --brand:     #2f6bff;
  --brand-2:   #17c3e6;
  --brand-ink: #1c4fd6;
  --accent:    #ffb020;

  --grad: linear-gradient(120deg, #2f6bff 0%, #17c3e6 100%);
  --grad-soft: linear-gradient(120deg, rgba(47,107,255,.14), rgba(23,195,230,.14));

  --radius:   18px;
  --radius-lg: 26px;
  --shadow:   0 18px 50px -22px rgba(20, 40, 90, .35);
  --shadow-lg: 0 40px 90px -35px rgba(20, 40, 90, .55);

  --container: 1160px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --display: 'Sora', var(--font);
}

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

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

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 780px; }

/* ---------- buttons ---------- */
.btn {
  --pad-y: 14px; --pad-x: 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display);
  font-weight: 600; font-size: 15.5px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { flex: none; }
.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(47,107,255,.7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(47,107,255,.8); }
.btn--ghost {
  background: rgba(255,255,255,.04);
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-ink); transform: translateY(-2px); }
.btn--lg  { --pad-y: 17px; --pad-x: 30px; font-size: 16.5px; }
.btn--sm  { --pad-y: 10px; --pad-x: 18px; font-size: 14.5px; }
.btn--block { width: 100%; }

/* ---------- generic section ---------- */
.section { padding: clamp(64px, 9vw, 118px) 0; }
.section--alt { background: var(--surface-2); }

.section__head { max-width: 720px; margin: 0 auto clamp(38px, 5vw, 62px); text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600; font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-ink);
  background: var(--grad-soft);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow--light { color: #bfe4ff; background: rgba(255,255,255,.1); }
.section__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.1; letter-spacing: -.02em;
}
.section__sub { margin-top: 16px; color: var(--ink-2); font-size: 18px; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11,16,32,.0);
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav.is-stuck {
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -24px rgba(20,40,90,.5);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 20px; color: #fff; letter-spacing: -.02em; }
.nav.is-stuck .brand { color: var(--ink); }
.brand__mark {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--grad); color: #fff;
  box-shadow: 0 10px 22px -10px rgba(47,107,255,.8);
}
.brand__name span { color: var(--brand-2); }
.nav.is-stuck .brand__name span { color: var(--brand); }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links > a { font-weight: 500; font-size: 15.5px; color: rgba(255,255,255,.82); transition: color .2s; }
.nav__links > a:hover { color: #fff; }
.nav.is-stuck .nav__links > a { color: var(--ink-2); }
.nav.is-stuck .nav__links > a:hover { color: var(--brand-ink); }
.nav__cta { color: #fff !important; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .25s; }
.nav.is-stuck .nav__toggle span { background: var(--ink); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 75% -10%, #17305e 0%, transparent 60%), var(--bg);
  color: #fff;
  padding: clamp(48px, 8vw, 96px) 0 clamp(80px, 10vw, 130px);
  margin-top: -74px; padding-top: calc(74px + clamp(48px, 8vw, 96px));
  overflow: hidden;
}
.hero__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 15% 20%, rgba(47,107,255,.35), transparent 65%),
    radial-gradient(500px 320px at 90% 80%, rgba(23,195,230,.28), transparent 65%);
  filter: blur(6px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 500;
  color: #d5e2ff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  padding: 8px 15px; border-radius: 999px;
  margin-bottom: 24px;
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: #35e08e; box-shadow: 0 0 0 4px rgba(53,224,142,.22); }

.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 5.6vw, 62px);
  line-height: 1.06; letter-spacing: -.03em;
}
.grad {
  background: linear-gradient(100deg, #8fb4ff, #4fe0ff 55%, #7af5c4);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { margin-top: 22px; font-size: 19px; color: #c4cfe4; max-width: 560px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.05); }
.hero .btn--ghost:hover { border-color: rgba(255,255,255,.6); color: #fff; }

.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; }
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; color: #b7c3db; }
.hero__trust svg { color: #4fe0ff; }

/* hero visual mock */
.hero__visual { position: relative; }
.mock {
  background: #0f1830;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.04) inset;
  overflow: hidden;
  transform: perspective(1400px) rotateY(-9deg) rotateX(3deg);
  transition: transform .5s ease;
}
.hero__visual:hover .mock { transform: perspective(1400px) rotateY(-4deg) rotateX(1deg); }
.mock__bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.07); }
.mock__bar > span { width: 11px; height: 11px; border-radius: 50%; background: #35405f; }
.mock__bar > span:nth-child(1){ background:#ff5f57;} .mock__bar > span:nth-child(2){ background:#febc2e;} .mock__bar > span:nth-child(3){ background:#28c840;}
.mock__url { margin-left: 12px; font-size: 12px; color: #8fa0c4; background: rgba(255,255,255,.05); padding: 5px 12px; border-radius: 7px; }

.mock__body { display: grid; grid-template-columns: 74px 1fr; min-height: 320px; }
.mock__side { padding: 18px 12px; border-right: 1px solid rgba(255,255,255,.06); display: flex; flex-direction: column; gap: 12px; }
.mock__logo { height: 28px; border-radius: 8px; background: var(--grad); }
.mock__navitem { height: 10px; border-radius: 5px; background: rgba(255,255,255,.08); }
.mock__navitem.is-active { background: rgba(79,224,255,.5); }

.mock__main { padding: 18px; }
.mock__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.mock__stat { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 12px; }
.mock__stat b { display: block; font-family: var(--display); font-size: 20px; color: #fff; }
.mock__stat span { font-size: 11px; color: #8fa0c4; }
.mock__cars { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mock__car { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 10px; }
.mock__thumb { height: 54px; border-radius: 8px; background: linear-gradient(120deg, #223257, #2c4a7a); margin-bottom: 10px; }
.mock__line { height: 8px; border-radius: 4px; background: rgba(255,255,255,.14); }
.mock__line.sm { width: 60%; margin-top: 6px; background: rgba(255,255,255,.08); }
.mock__price { height: 12px; width: 44%; border-radius: 4px; background: rgba(79,224,255,.55); margin-top: 10px; }

.float {
  position: absolute;
  display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border-radius: 14px;
  padding: 12px 15px;
  box-shadow: var(--shadow-lg);
  animation: floaty 4.5s ease-in-out infinite;
}
.float svg { color: var(--brand); }
.float b { display: block; font-family: var(--display); font-size: 14px; }
.float span { font-size: 12px; color: var(--ink-3); }
.float--contract { top: 12%; left: -34px; }
.float--ad { bottom: 10%; right: -26px; animation-delay: -2.2s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* =========================================================
   TRUST BAR
   ========================================================= */
.trustbar { background: var(--bg); padding: 26px 0 40px; }
.trustbar__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.trustbar__label { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: #6c7a99; }
.trustbar__logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; }
.trustbar__logos span {
  font-family: var(--display); font-weight: 700; font-size: 19px;
  color: rgba(255,255,255,.42); letter-spacing: -.01em;
  transition: color .2s;
}
.trustbar__logos span:hover { color: rgba(255,255,255,.75); }

/* =========================================================
   GRID + CARDS
   ========================================================= */
.grid { display: grid; gap: 22px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--grad-soft); color: var(--brand-ink);
  margin-bottom: 18px;
}
.card h3 { font-family: var(--display); font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.card p { margin-top: 10px; color: var(--ink-2); font-size: 15.5px; }

.ticks { list-style: none; margin-top: 16px; display: grid; gap: 9px; }
.ticks li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--ink-2); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--grad-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f6bff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* =========================================================
   STATS
   ========================================================= */
.stats { background: var(--bg); color: #fff; padding: clamp(56px, 8vw, 96px) 0; position: relative; }
.stats::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 300px at 50% 0%, rgba(47,107,255,.25), transparent 70%);
  pointer-events: none;
}
.stats__grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat__num { font-family: var(--display); font-weight: 800; font-size: clamp(34px, 5vw, 54px); line-height: 1; letter-spacing: -.03em;
  background: linear-gradient(100deg, #ffffff, #9fc2ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { margin-top: 12px; color: #a9b6d3; font-size: 15px; }

/* =========================================================
   STEPS
   ========================================================= */
.steps { display: flex; align-items: stretch; justify-content: center; gap: 8px; flex-wrap: wrap; }
.step {
  flex: 1 1 240px; max-width: 320px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px; text-align: center;
  box-shadow: var(--shadow);
}
.step__num {
  width: 46px; height: 46px; margin: 0 auto 16px;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 20px; color: #fff;
  background: var(--grad); border-radius: 14px;
  box-shadow: 0 12px 26px -12px rgba(47,107,255,.8);
}
.step h3 { font-family: var(--display); font-size: 19px; }
.step p { margin-top: 10px; color: var(--ink-2); font-size: 15px; }
.step__arrow { align-self: center; font-size: 26px; color: var(--brand); font-weight: 700; }

/* =========================================================
   PRICING
   ========================================================= */
.pricing { align-items: stretch; margin-top: 8px; }
.price {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price--featured {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    var(--grad) border-box;
  box-shadow: var(--shadow-lg);
}
.price__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; background: var(--grad);
  padding: 7px 16px; border-radius: 999px;
  box-shadow: 0 10px 22px -10px rgba(47,107,255,.8);
}
.price__head h3 { font-family: var(--display); font-size: 22px; font-weight: 700; }
.price__head p { margin-top: 6px; color: var(--ink-2); font-size: 14.5px; min-height: 42px; }
.price__amount { margin: 18px 0 4px; font-family: var(--display); font-weight: 500; font-size: 17px; color: var(--ink-2); }
.price__val { font-weight: 800; font-size: 40px; color: var(--ink); letter-spacing: -.03em; }
.price__per { display: block; font-size: 14px; color: var(--ink-3); margin-top: 2px; }
.price__list { list-style: none; margin: 22px 0; display: grid; gap: 12px; flex: 1; }
.price__list li { position: relative; padding-left: 28px; font-size: 15px; color: var(--ink-2); }
.price__list li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--grad-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f6bff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.price__note { margin-top: 14px; font-size: 12.5px; color: var(--ink-3); line-height: 1.5; }

/* base tarif + optional add-ons layout */
.pricing2 { display: grid; grid-template-columns: 1fr 1.05fr; gap: 22px; align-items: start; }
.pricing2__base { position: sticky; top: 96px; }
.price__hl { margin: 6px 0 2px; font-weight: 600; font-size: 14.5px; color: var(--brand-ink); }
.pricing2__addons { display: grid; gap: 18px; }
.addons__label { font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); padding: 2px; }
.addons__label span { text-transform: none; letter-spacing: 0; font-weight: 500; color: var(--ink-3); }
.price--addon { background: var(--surface-2); border: 1px dashed #cdd6e6; box-shadow: none; }
.price--addon:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.price--addon .price__val { font-size: 34px; }
.price__tag {
  display: inline-flex; align-items: center; gap: 6px; width: fit-content;
  font-family: var(--display); font-size: 11.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--ink-3); background: #fff; border: 1px solid var(--line);
  padding: 5px 11px; border-radius: 999px; margin-bottom: 14px;
}
.price__tag::before { content: "+"; font-weight: 800; color: var(--brand); font-size: 14px; line-height: 1; }
@media (max-width: 1000px) {
  .pricing2 { grid-template-columns: 1fr; }
  .pricing2__base { position: static; }
}

/* =========================================================
   QUOTES
   ========================================================= */
.quote {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 16px;
}
.quote__stars { color: var(--accent); letter-spacing: 3px; font-size: 16px; }
.quote blockquote { font-size: 16.5px; color: var(--ink); line-height: 1.6; }
.quote figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  font-family: var(--display); font-weight: 700; color: #fff;
  background: var(--grad);
}
.quote figcaption b { display: block; font-size: 15px; }
.quote figcaption span { font-size: 13px; color: var(--ink-3); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { display: grid; gap: 12px; }
.faq__item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 4px 22px;
  transition: box-shadow .2s, border-color .2s;
}
.faq__item[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq__item summary {
  list-style: none; cursor: pointer;
  font-family: var(--display); font-weight: 600; font-size: 17px;
  padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-size: 24px; font-weight: 400; color: var(--brand); transition: transform .25s; flex: none;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 20px; color: var(--ink-2); font-size: 15.5px; }

/* =========================================================
   CTA / CONTACT
   ========================================================= */
.cta {
  background: radial-gradient(900px 500px at 20% 0%, #1a3a72 0%, transparent 55%), var(--bg);
  color: #fff;
  padding: clamp(64px, 9vw, 110px) 0;
}
.cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.cta__copy h2 { font-family: var(--display); font-weight: 800; font-size: clamp(28px, 4vw, 42px); line-height: 1.08; letter-spacing: -.02em; }
.cta__copy p { margin-top: 16px; color: #c4cfe4; font-size: 18px; max-width: 480px; }
.cta__perks { list-style: none; margin-top: 26px; display: grid; gap: 12px; }
.cta__perks li { display: flex; align-items: center; gap: 10px; color: #dbe4f5; font-size: 16px; }
.cta__perks svg { color: #4fe0ff; flex: none; }

/* form */
.form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
}
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label { display: block; font-size: 14px; font-weight: 500; color: #cfd9ee; margin-bottom: 14px; }
.form input, .form textarea {
  width: 100%; margin-top: 7px;
  font-family: var(--font); font-size: 15.5px; color: #fff;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.form input::placeholder, .form textarea::placeholder { color: #7e8bab; }
.form input:focus, .form textarea:focus {
  outline: none; border-color: var(--brand-2);
  background: rgba(255,255,255,.09);
  box-shadow: 0 0 0 4px rgba(23,195,230,.18);
}
.form textarea { resize: vertical; }
.form .btn { margin-top: 6px; }
.form__hint { margin-top: 14px; font-size: 12.5px; color: #8b98b8; line-height: 1.5; text-align: center; }
.form__success {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 14px 16px;
  background: rgba(53,224,142,.12); border: 1px solid rgba(53,224,142,.4);
  border-radius: 12px; color: #b8f5d6; font-size: 14.5px;
}
.form__success svg { color: #35e08e; flex: none; }
.form input:invalid:not(:placeholder-shown) { border-color: #ff7a7a; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: #080c18; color: #97a4c2; padding: 60px 0 30px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
.brand--footer { color: #fff; font-size: 19px; margin-bottom: 14px; }
.footer__brand p { font-size: 14.5px; max-width: 300px; line-height: 1.6; }
.footer__col h4 { font-family: var(--display); color: #fff; font-size: 15px; margin-bottom: 14px; }
.footer__col a { display: block; font-size: 14.5px; padding: 5px 0; color: #97a4c2; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  margin-top: 44px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13.5px; color: #6d7a99;
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  .grid--4 { grid-template-columns: 1fr 1fr; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 520px; }
  .float--contract { left: 0; }
  .float--ad { right: 0; }
  .cta__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(14px);
    padding: 16px 24px 24px;
    box-shadow: 0 20px 40px -20px rgba(20,40,90,.4);
    transform: translateY(-140%); opacity: 0; pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links > a { color: var(--ink-2); padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .nav__links > a:last-child { border-bottom: 0; }
  .nav__cta { color: #fff !important; margin-top: 8px; }

  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; width: 100%; }
  .step__arrow { transform: rotate(90deg); }
  .form__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 26px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 420px) {
  .container { padding-inline: 18px; }
  .stats__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}
