/* ==========================================================================
   AVMLeads — AVMSmiles brand system
   Palette, type and components derived from the AVMSmiles brand kit:
     Primary red      #DF2028 / #D71920
     Brand indigo     #362997
     Tints            #EEF0FF  #E4E7FF
     Neutrals         #454545  #4A4A4A  #F2F2F2
     Type             Oxygen (display) + Hind (text)
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Brand */
  --red: #df2028;
  --red-deep: #d71920;
  --red-soft: #ff5c64;
  --indigo: #362997;
  --indigo-deep: #241b6b;
  --indigo-night: #171045;
  --indigo-tint: #eef0ff;
  --indigo-tint-2: #e4e7ff;

  /* Neutrals */
  --ink: #1f2937;
  --ink-2: #454545;
  --ink-3: #6b6b6b;
  --ink-4: #9a9a9a;
  --line: #e6e6ef;
  --surface: #ffffff;
  --surface-2: #f7f7fb;
  --surface-3: #f2f2f2;

  /* Semantic */
  --ok: #1d9a6c;
  --err: #d71920;

  /* Type */
  --font-display: "Oxygen", "Segoe UI", system-ui, sans-serif;
  --font-text: "Hind", "Segoe UI", system-ui, sans-serif;

  /* Shape */
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --shell: 1160px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(23, 16, 69, .06), 0 2px 8px rgba(23, 16, 69, .05);
  --shadow: 0 4px 12px rgba(23, 16, 69, .07), 0 12px 32px rgba(23, 16, 69, .08);
  --shadow-lg: 0 24px 70px rgba(23, 16, 69, .28);
  --shadow-red: 0 10px 26px rgba(223, 32, 40, .28);
  --shadow-indigo: 0 10px 26px rgba(54, 41, 151, .26);

  --header-h: 68px;
  --ease: cubic-bezier(.2, .7, .3, 1);
}

@media (min-width: 640px) { :root { --header-h: 76px; } }

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--surface-2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--indigo-deep);
  line-height: 1.15;
  letter-spacing: -.015em;
  margin: 0;
}

p { margin: 0; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 6px;
}

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: 20px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 300;
  background: var(--red); color: #fff; padding: 10px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700; text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- 3. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 0; border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700; font-size: 14.5px; line-height: 1;
  padding: 14px 26px; text-decoration: none;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn svg { flex: none; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--red-deep); box-shadow: 0 14px 34px rgba(223, 32, 40, .34); }

.btn-indigo { background: var(--indigo); color: #fff; box-shadow: var(--shadow-indigo); }
.btn-indigo:hover { background: var(--indigo-deep); }

.btn-ghost {
  background: transparent; color: var(--indigo);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover { background: var(--indigo-tint); box-shadow: inset 0 0 0 1.5px var(--indigo-tint-2); }

.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 13.5px; border-radius: var(--radius-sm); }

/* ---------- 4. Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.site-header.is-stuck {
  border-color: var(--line);
  box-shadow: 0 6px 28px rgba(23, 16, 69, .08);
}
.site-header .shell { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand-logo { height: 46px; width: auto; }
@media (min-width: 640px) { .brand-logo { height: 58px; } }

/* ---------- 5. Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  padding: calc(var(--header-h) + 52px) 0 68px;
  background:
    radial-gradient(1100px 620px at 82% 8%, rgba(223, 32, 40, .34), transparent 62%),
    radial-gradient(900px 560px at 6% 92%, rgba(84, 68, 214, .5), transparent 60%),
    linear-gradient(158deg, var(--indigo) 0%, var(--indigo-deep) 52%, var(--indigo-night) 100%);
}
@media (min-width: 1024px) {
  .hero { padding: calc(var(--header-h) + 56px) 0 76px; }
}

/* soft grain so the large flat gradient does not band */
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: .30; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.orb { position: absolute; border-radius: 50%; filter: blur(72px); pointer-events: none; }
.orb-1 { width: 380px; height: 380px; top: -110px; right: -80px; background: rgba(223, 32, 40, .38); }
.orb-2 { width: 320px; height: 320px; bottom: -130px; left: -90px; background: rgba(120, 105, 255, .42); }

.hero-grid {
  position: relative; z-index: 2;
  display: grid; gap: 44px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) 452px; gap: 56px; }
}
@media (min-width: 1280px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) 476px; gap: 68px; }
}

/* Founder */
.founder { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.founder-photo {
  position: relative; flex: none;
  width: 84px; height: 84px; border-radius: 50%;
  overflow: hidden; background: rgba(255, 255, 255, .1);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .26), 0 16px 36px rgba(0, 0, 0, .34);
}
@media (min-width: 640px) { .founder-photo { width: 98px; height: 98px; } }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px; padding: 5px 13px; margin-bottom: 8px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .04em;
  color: rgba(255, 255, 255, .95);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--red-soft);
  box-shadow: 0 0 0 4px rgba(255, 92, 100, .22);
}
.founder-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: #fff; line-height: 1.25; }
@media (min-width: 640px) { .founder-name { font-size: 19px; } }
.founder-role { font-size: 13px; color: rgba(255, 255, 255, .64); margin-top: 2px; }

.hero h1 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(32px, 6.4vw, 50px);
  letter-spacing: -.025em; line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 2px 18px rgba(23, 16, 69, .35);
}
/* Yellow at the baseline rising into brand red. Clipped to the glyphs, with a
   drop-shadow (not text-shadow — that would paint through the transparent fill)
   so the red end still separates from the indigo behind it. */
.hero h1 .accent {
  display: block;
  font-weight: 700;
  letter-spacing: -.015em;
  /* The gradient only paints inside the box, so descenders (j, y) hanging
     below a tight line-height come out sliced. Loosen the leading and pad the
     box past the baseline, then pull the extra space back with margins. */
  line-height: 1.22;
  padding-block: .04em .16em;
  margin-top: .04em;
  margin-bottom: -.16em;
  color: #ffc24b;                       /* fallback if background-clip is unsupported */
  background-image: linear-gradient(to top, #ffd166 0%, #ffc24b 28%, #f7852a 62%, #df2028 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 10px rgba(23, 16, 69, .55));
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1 .accent { -webkit-text-fill-color: #ffc24b; }
}

.hero-lede {
  font-size: 14.5px; line-height: 1.85;
  color: rgba(255, 255, 255, .82);
  max-width: 62ch;
}
@media (min-width: 640px) { .hero-lede { font-size: 15.5px; } }

.pull-quote {
  margin: 22px 0 0;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-left: 3px solid var(--red-soft);
  border-radius: var(--radius);
  padding: 15px 18px;
  font-size: 14.5px; font-style: italic; font-weight: 500;
  color: rgba(255, 255, 255, .9); line-height: 1.6;
}
.pull-quote .mark { font-style: normal; color: var(--red-soft); font-size: 21px; line-height: 0; }

.hero-cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 1024px) { .hero-cta { display: none; } }

/* Trust strip */
.trust {
  list-style: none; margin: 34px 0 0; padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.trust-item .n {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 19px; color: #fff; line-height: 1.1;
}
@media (min-width: 640px) { .trust-item .n { font-size: 23px; } }
.trust-item .l {
  display: block;
  font-size: 11.5px; line-height: 1.35; margin-top: 3px;
  color: rgba(255, 255, 255, .58); letter-spacing: .02em;
}

/* ---------- 6. Form card ---------- */
.form-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero .form-card { display: none; }
@media (min-width: 1024px) { .hero .form-card { display: block; } }

.form-card__head {
  padding: 18px 26px;
  background: linear-gradient(100deg, var(--indigo) 0%, #4b3ac2 100%);
  color: #fff;
}
.form-card__head h2 { color: #fff; font-size: 17px; }
.form-card__head p { font-size: 12.5px; color: rgba(255, 255, 255, .72); margin-top: 3px; }
.form-card__body { padding: 24px 26px 26px; }

/* Stepper */
.stepper { display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.stepper__item { display: flex; align-items: center; }
.stepper__badge {
  width: 28px; height: 28px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  background: var(--surface-3); color: var(--ink-4);
  transition: all .3s var(--ease);
}
.stepper__bar {
  flex: none; width: 56px; height: 2px; margin: 0 8px; border-radius: 2px;
  background: var(--line); overflow: hidden;
}
.stepper__bar span {
  display: block; height: 100%; width: 0;
  background: var(--red); transition: width .4s var(--ease);
}
.stepper__bar.is-filled span { width: 100%; }
.stepper__item.is-active .stepper__badge {
  background: var(--indigo); color: #fff;
  box-shadow: 0 0 0 4px rgba(54, 41, 151, .14);
}
.stepper__item.is-done .stepper__badge { background: var(--red); color: #fff; }

/* Step panes */
.step-title {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-4);
  text-align: center; margin-bottom: 14px;
}
.step[hidden] { display: none; }
.step { animation: fade-up .34s var(--ease) both; }

/* Fields */
.field { margin-bottom: 13px; text-align: left; }
.field > label, .field .field-label {
  display: flex; align-items: baseline; justify-content: space-between; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--ink-2); margin-bottom: 6px;
}
.field .req { color: var(--red); margin-left: 2px; }
.field .hint {
  font-weight: 400; text-transform: none; letter-spacing: 0;
  font-size: 11.5px; color: var(--ink-4);
}

.control {
  width: 100%; height: 46px;
  padding: 0 14px;
  font-size: 14.5px; color: var(--ink);
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}
.control::placeholder { color: #b9b9c6; }
.control:hover { border-color: #d2d2e2; }
.control:focus {
  background: var(--surface);
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(54, 41, 151, .12);
}
select.control {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23362997' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 17px;
}

/* Phone group */
.phone {
  display: flex; align-items: stretch; height: 46px;
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.phone:focus-within {
  background: var(--surface);
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(54, 41, 151, .12);
}
.phone__dial { position: relative; width: 98px; flex: none; border-right: 1.5px solid var(--line); background: var(--indigo-tint); }
.phone__dial select {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: pointer; z-index: 2; border: 0;
}
.phone__dial-face {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: space-between; padding: 0 11px; pointer-events: none;
}
.phone__dial-face .flag { width: 19px; height: auto; border-radius: 2px; }
.phone__dial-face .code { font-size: 13.5px; font-weight: 600; color: var(--indigo-deep); }
.phone__dial-face .caret { width: 13px; height: 13px; color: var(--indigo); opacity: .65; }
.phone__num {
  flex: 1; min-width: 0; border: 0; background: transparent;
  padding: 0 14px; font-size: 14.5px; color: var(--ink); outline: none;
}
.phone__num::placeholder { color: #b9b9c6; }

/* Validation states */
.field.has-error .control,
.field.has-error .phone { border-color: var(--err); background: #fff6f6; }
.field.has-error .control:focus,
.field.has-error .phone:focus-within { box-shadow: 0 0 0 4px rgba(215, 25, 32, .12); }
.field.is-valid .control { border-color: rgba(29, 154, 108, .5); }

.err {
  display: none; align-items: center; gap: 5px;
  margin-top: 5px; font-size: 12px; font-weight: 500; color: var(--err);
}
.field.has-error .err { display: flex; }
.err::before {
  content: "!"; flex: none;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--err); color: #fff;
  font-size: 10px; font-weight: 700; line-height: 14px; text-align: center;
}

/* Option chips */
.chip-help { font-size: 12.5px; color: var(--ink-3); text-align: center; margin-bottom: 12px; }
.chip-help b { color: var(--indigo); }
.chip-help .count { color: var(--red); font-weight: 700; margin-left: 5px; }

.chips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; margin-bottom: 6px; }
@media (min-width: 400px) { .chips { grid-template-columns: repeat(3, 1fr); } }

.chip {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 56px; padding: 8px 7px;
  font-size: 11.5px; font-weight: 600; line-height: 1.25;
  color: var(--ink-2);
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  transition: all .18s var(--ease);
}
.chip:hover:not(:disabled) { border-color: rgba(223, 32, 40, .45); background: #fff; transform: translateY(-1px); }
.chip[aria-pressed="true"] {
  border-color: var(--red); background: rgba(223, 32, 40, .07);
  color: var(--red-deep); box-shadow: 0 4px 14px rgba(223, 32, 40, .14);
}
.chip:disabled { opacity: .38; cursor: not-allowed; }

.form-actions { display: flex; gap: 10px; margin-top: 18px; }
.form-actions .btn { flex: 1; }
.form-actions .btn-ghost { flex: 0 0 34%; }

.form-note { margin-top: 12px; font-size: 11.5px; color: var(--ink-4); text-align: center; line-height: 1.5; }

/* Alert */
.form-alert {
  display: none; gap: 8px; align-items: flex-start;
  margin-top: 14px; padding: 11px 14px;
  background: #fff2f2; border: 1px solid rgba(215, 25, 32, .25);
  border-radius: var(--radius-sm);
  font-size: 12.5px; color: var(--err);
}
.form-alert.is-shown { display: flex; }

/* Success */
.success { text-align: center; padding: 6px 0 2px; animation: fade-up .34s var(--ease) both; }
.success__icon {
  width: 62px; height: 62px; margin: 0 auto 14px;
  border-radius: 50%; display: grid; place-items: center;
  background: rgba(29, 154, 108, .1); color: var(--ok);
}
.success h3 { font-size: 20px; margin-bottom: 5px; }
.success > p { font-size: 13.5px; color: var(--ink-3); }
/* Two stacked actions on the thank-you screen: go to the B2B site, or file
   another application. */
.success .btn + .btn { margin-top: 10px; }

.summary {
  margin: 18px 0; padding: 16px;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius); text-align: left;
}
.summary dl { margin: 0; }
.summary__title {
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-4); margin-bottom: 10px;
}
.summary__row {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 7px 0; border-top: 1px solid var(--line);
}
.summary__row:first-of-type { border-top: 0; }
.summary__row dt { font-size: 12px; color: var(--ink-3); flex: none; }
.summary__row dd {
  margin: 0; font-size: 13px; font-weight: 600;
  color: var(--indigo-deep); text-align: right; word-break: break-word;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 5px; justify-content: flex-end; }
.tag {
  background: var(--indigo-tint); color: var(--indigo);
  border-radius: 999px; padding: 2px 9px; font-size: 11px; font-weight: 600;
}

/* Standalone (mobile) form section */
.section-form { padding: 56px 0; background: var(--surface-2); scroll-margin-top: var(--header-h); }
@media (min-width: 1024px) { .section-form { display: none; } }
.section-form .form-card { max-width: 460px; margin-inline: auto; }

/* ---------- 7. Content sections ---------- */
.section { padding: 64px 0; }
.section--white { background: var(--surface); border-top: 1px solid var(--line); }
.section--tint { background: var(--surface-2); border-top: 1px solid var(--line); }

.section-head { text-align: center; max-width: 620px; margin: 0 auto 38px; }
.section-head h2 { font-size: clamp(23px, 4vw, 30px); margin-bottom: 8px; }
.section-head p { font-size: 14.5px; color: var(--ink-3); }
.kicker {
  display: inline-block; margin-bottom: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red);
}

.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  position: relative; overflow: hidden;
  padding: 24px 18px 22px; text-align: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.step-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--accent, var(--indigo));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-card:hover::before { transform: scaleX(1); }
.step-card__icon {
  width: 50px; height: 50px; margin: 0 auto 13px;
  border-radius: 16px; display: grid; place-items: center;
  background: var(--accent-soft, var(--indigo-tint));
  color: var(--accent, var(--indigo));
}
.step-card__n {
  font-family: var(--font-display); font-size: 10.5px; font-weight: 700;
  letter-spacing: .18em; color: var(--accent, var(--indigo)); margin-bottom: 6px;
}
.step-card__t { font-family: var(--font-display); font-size: 14.5px; font-weight: 700; color: var(--indigo-deep); line-height: 1.35; }
.step-card__d { font-size: 12.5px; color: var(--ink-3); margin-top: 6px; line-height: 1.5; }

.section-cta { text-align: center; margin-top: 36px; }

/* Brands */
/* Flex, not grid: with three cards in a two-column grid the last one is stranded
   in column 1. Wrapping + centring keeps the orphan row centred. */
.brands {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 16px; max-width: 780px; margin-inline: auto;
}
.brands > * { flex: 1 1 210px; max-width: 248px; }
.brand-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 24px 14px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.brand-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.brand-card__logo { height: 54px; width: 100%; display: grid; place-items: center; }
.brand-card__logo img { max-height: 54px; max-width: 100%; object-fit: contain; }
.brand-card__name { font-size: 12.5px; font-weight: 600; color: var(--ink-2); }

/* ---------- 8. Footer ---------- */
.site-footer { background: var(--indigo-night); color: #fff; }
.site-footer .shell { padding-block: 44px 34px; }
/* Logo removed — the tagline is the only thing here now, so keep it centred
   at every width instead of splitting the row. */
.footer-top {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  text-align: center; padding-bottom: 26px;
}
.footer-tag { font-size: 13px; color: rgba(255, 255, 255, .55); max-width: 42ch; }
.footer-bottom {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 22px;
  text-align: center;
}
@media (min-width: 720px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { font-size: 12.5px; color: rgba(255, 255, 255, .45); }
.footer-bottom .fine { font-size: 11.5px; color: rgba(255, 255, 255, .3); letter-spacing: .02em; }

/* ---------- 9. Mobile sticky CTA ---------- */
.sticky-cta {
  position: fixed; inset: auto 0 0 0; z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  transform: translateY(120%);
  transition: transform .28s var(--ease);
}
.sticky-cta.is-shown { transform: translateY(0); }
@media (min-width: 1024px) { .sticky-cta { display: none; } }

/* ---------- 10. Motion ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
