/* ==========================================================================
   VendingConnect — design system
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Core palette */
  --ink:        #0B0F1A;
  --ink-2:      #131A2B;
  --ink-3:      #1E2740;
  --paper:      #FBF9F6;
  --paper-2:    #F2EEE8;
  --white:      #FFFFFF;

  --accent:     #FF5C35;
  --accent-dk:  #E8431C;
  --accent-lt:  #FFE9E2;
  --teal:       #0D9488;
  --teal-lt:    #D7F2EE;

  --text:       #10151F;
  --muted:      #59637A;
  --muted-lt:   #8C95A8;
  --line:       #E4DFD7;
  --line-dk:    rgba(255,255,255,.12);

  /* Type */
  --display: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Space */
  --wrap: 1160px;
  --r-sm: 8px;
  --r: 14px;
  --r-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(16,21,31,.06), 0 2px 8px rgba(16,21,31,.05);
  --shadow: 0 4px 12px rgba(16,21,31,.07), 0 12px 32px rgba(16,21,31,.07);
  --shadow-lg: 0 8px 24px rgba(16,21,31,.10), 0 24px 64px rgba(16,21,31,.12);
}

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

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

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
img { height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  color: var(--text);
}

h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.75rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.38rem); }
h4 { font-size: 1.02rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-dk); text-decoration: none; }
a:hover { text-decoration: underline; }

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

section { padding: 84px 0; }
@media (max-width: 720px) { section { padding: 56px 0; } }

.lede { font-size: 1.16rem; color: var(--muted); line-height: 1.6; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-64 { max-width: 640px; }
.max-72 { max-width: 720px; }

/* --------------------------------------------------------- eyebrow / label */
.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow--light { color: #FF8B6B; }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 28px;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .14s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 0 var(--accent-dk), 0 8px 22px rgba(255,92,53,.28);
}
.btn--primary:hover { background: var(--accent-dk); box-shadow: 0 2px 0 #C2350F, 0 12px 30px rgba(255,92,53,.36); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-3); }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--muted-lt); background: rgba(0,0,0,.02); }

.btn--ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.22); }
.btn--ghost-light:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.4); }

.btn--lg { padding: 19px 34px; font-size: 1.06rem; }
.btn--sm { padding: 11px 18px; font-size: .92rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-row--center { justify-content: center; }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251,249,246,.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none !important; flex-shrink: 0; }
.logo__mark { width: 30px; height: 30px; flex-shrink: 0; }
.logo__text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.24rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.logo__text em { font-style: normal; color: var(--accent); }

.nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;          /* never let a two-word label wrap the header */
}
.nav a:hover { color: var(--text); text-decoration: none; }
.nav a.is-active { color: var(--text); font-weight: 600; }

.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone {
  font-family: var(--display);
  font-weight: 600;
  font-size: .97rem;
  color: var(--ink);
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 7px;
}
.header-phone:hover { color: var(--accent-dk); }
/* Between the mobile menu and full desktop there isn't room for nav + phone + CTA.
   The phone still appears in the hero, the contact page and the footer. */
@media (max-width: 1210px) { .header-phone { display: none; } }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  width: 42px; height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 940px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.is-open .nav {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
    margin: 0;
    box-shadow: var(--shadow);
  }
  .site-header.is-open .nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
  .site-header.is-open .header-cta { display: flex; flex-direction: column; align-items: stretch; padding: 16px 24px 22px; background: var(--paper); position: absolute; top: 100%; left:0; right:0; }
}

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 88px 0 96px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 25%, transparent 75%);
}
.hero::after {
  content: '';
  position: absolute;
  top: -280px; right: -180px;
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(255,92,53,.22) 0%, rgba(255,92,53,0) 62%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: #FF7A57; }
.hero__lede { font-size: 1.2rem; color: rgba(255,255,255,.72); max-width: 33em; }

/* Desktop: copy stacked in the left column, form pinned right.
   Mobile: headline, then the form, then the supporting copy — so paid traffic
   hits the form after one short scroll instead of six. */
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "intro   form"
    "support form";
  gap: 0 56px;
  align-items: start;
}
.hero__intro   { grid-area: intro; }
.hero__support { grid-area: support; }
.hero__form    { grid-area: form; }

@media (max-width: 980px) {
  .hero { padding: 48px 0 56px; }
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "intro" "form" "support";
    gap: 32px;
  }
  .hero__lede { font-size: 1.06rem; }
  .hero h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
}

.hero__points { list-style: none; padding: 0; margin: 28px 0 32px; display: grid; gap: 12px; }
.hero__points li {
  display: flex; align-items: flex-start; gap: 11px;
  color: rgba(255,255,255,.86); font-size: 1.02rem;
}
.hero__points svg { flex-shrink: 0; margin-top: 4px; }

/* --------------------------------------------------------------- trustbar */
.trustbar {
  background: var(--ink-2);
  border-top: 1px solid var(--line-dk);
  padding: 0;
}
.trustbar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.trustbar__item { padding: 26px 20px; text-align: center; border-right: 1px solid var(--line-dk); }
.trustbar__item:last-child { border-right: 0; }
.trustbar__n {
  font-family: var(--display); font-weight: 700; font-size: 1.6rem;
  color: #fff; letter-spacing: -.02em; display: block; line-height: 1.2;
}
.trustbar__l { font-size: .84rem; color: rgba(255,255,255,.55); letter-spacing: .02em; }
@media (max-width: 760px) {
  .trustbar__inner { grid-template-columns: repeat(2, 1fr); }
  .trustbar__item:nth-child(2) { border-right: 0; }
  .trustbar__item:nth-child(1), .trustbar__item:nth-child(2) { border-bottom: 1px solid var(--line-dk); }
}

/* ------------------------------------------------------------------ form */
.form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.6);
  /* forms sit inside dark hero sections — never inherit their light text colour */
  color: var(--text);
}
.form-card h3, .form-card h4, .form-card label { color: var(--text); }
/* High specificity: dark-section rules like `.page-head p` must not reach inside a form card. */
.form-card p { color: var(--muted); }
.form-card p.form-legal { color: var(--muted-lt); }
.form-card__head { margin-bottom: 22px; }
.form-card__head h3 { margin-bottom: 4px; font-size: 1.32rem; }
.form-card__head p { font-size: .93rem; color: var(--muted); margin: 0; }

.field { margin-bottom: 16px; }
.field:last-of-type { margin-bottom: 0; }
.field > label,
.field-label {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
  margin-bottom: 7px;
}
.field-hint { font-size: .82rem; color: var(--muted-lt); font-weight: 400; }

.input, select.input, textarea.input {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--text);
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
  appearance: none;
  -webkit-appearance: none;
}
.input:focus, select.input:focus, textarea.input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,92,53,.15);
}
.input::placeholder { color: var(--muted-lt); }
textarea.input { min-height: 110px; resize: vertical; line-height: 1.55; }

select.input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2359637A' d='M1.4 0 6 4.6 10.6 0 12 1.4 6 7.4 0 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

/* chip radios / checkboxes */
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-size: .92rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s ease;
  background: var(--white);
  color: var(--text);
  user-select: none;
}
.chip span:hover { border-color: var(--muted-lt); }
.chip input:checked + span {
  border-color: var(--accent);
  background: var(--accent-lt);
  color: var(--accent-dk);
  font-weight: 600;
}
.chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(255,92,53,.2); }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-legal { font-size: .78rem; color: var(--muted-lt); line-height: 1.5; margin: 14px 0 0; }
.form-legal a { color: var(--muted); text-decoration: underline; }

/* multi-step */
.step { display: none; }
.step.is-active { display: block; animation: stepIn .28s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.step-bar { display: flex; gap: 6px; margin-bottom: 22px; }
.step-bar i {
  flex: 1; height: 4px; border-radius: 4px; background: var(--line); transition: background .3s ease;
}
.step-bar i.done { background: var(--accent); }
.step-nav { display: flex; gap: 10px; margin-top: 20px; }
.step-nav .btn { flex: 1; }
.step-back {
  background: none; border: 0; color: var(--muted); font-family: var(--body); font-size: .9rem;
  cursor: pointer; padding: 8px 0; text-decoration: underline;
}

/* ----------------------------------------------------------------- cards */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card--hover:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .97rem; margin-bottom: 0; }

.card__icon {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: var(--accent-lt);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card__icon--teal { background: var(--teal-lt); }

/* steps / how it works */
.steps { counter-reset: s; display: grid; gap: 26px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 20px; } }
.step-item { position: relative; padding-top: 20px; border-top: 2px solid var(--line); }
.step-item::before {
  counter-increment: s;
  content: '0' counter(s);
  font-family: var(--display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.step-item h3 { font-size: 1.22rem; margin-bottom: 8px; }
.step-item p { color: var(--muted); font-size: .97rem; margin: 0; }

/* split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 34px; } }
.split--rev .split__media { order: -1; }
@media (max-width: 900px) { .split--rev .split__media { order: 0; } }

.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; color: var(--text); font-size: 1rem; }
.checklist svg { flex-shrink: 0; margin-top: 4px; }
.checklist--light li { color: rgba(255,255,255,.85); }

/* section tones */
.tone-paper2 { background: var(--paper-2); }
.tone-white { background: var(--white); }
.tone-ink { background: var(--ink); color: #fff; }
.tone-ink h1, .tone-ink h2, .tone-ink h3, .tone-ink h4 { color: #fff; }
.tone-ink .lede, .tone-ink p { color: rgba(255,255,255,.68); }
.tone-ink .card { background: var(--ink-2); border-color: var(--line-dk); }
.tone-ink .card p { color: rgba(255,255,255,.62); }
.tone-ink .step-item { border-top-color: var(--line-dk); }

/* ------------------------------------------------------------------- faq */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq summary {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.06rem;
  padding: 20px 44px 20px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  position: absolute; right: 6px; top: 50%;
  width: 11px; height: 11px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq details[open] summary { color: var(--accent-dk); }
.faq .faq__a { padding: 0 30px 22px 0; color: var(--muted); font-size: 1rem; }
.faq .faq__a p:last-child { margin-bottom: 0; }

/* -------------------------------------------------------------- callout */
.callout {
  background: linear-gradient(135deg, var(--ink) 0%, #1B2440 100%);
  border-radius: var(--r-lg);
  padding: 54px 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.callout::after {
  content: '';
  position: absolute; right: -120px; bottom: -160px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,92,53,.26) 0%, transparent 65%);
}
.callout > * { position: relative; z-index: 2; }
.callout h2 { color: #fff; }
.callout p { color: rgba(255,255,255,.72); }
@media (max-width: 620px) { .callout { padding: 36px 26px; } }

/* -------------------------------------------------------------- pricing */
.price-card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 34px;
  box-shadow: var(--shadow);
}
.price-card__amt {
  font-family: var(--display); font-weight: 700;
  font-size: 3.2rem; letter-spacing: -.04em; line-height: 1;
  color: var(--ink);
}
.price-card__amt span { font-size: 1.05rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-badge {
  display: inline-block; background: var(--teal-lt); color: #0A6B62;
  font-family: var(--display); font-weight: 600; font-size: .8rem;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px; margin-bottom: 16px;
}

/* --------------------------------------------------------------- tables */
.tbl { width: 100%; border-collapse: collapse; font-size: .97rem; }
.tbl th, .tbl td { text-align: left; padding: 15px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.tbl th { font-family: var(--display); font-weight: 600; font-size: .88rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.tbl tr:last-child td { border-bottom: 0; }
.tbl-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--r); background: var(--white); }

/* -------------------------------------------------------- city page bits */
.city-links { display: flex; flex-wrap: wrap; gap: 8px; }
.city-links a {
  display: inline-block; padding: 8px 14px; border-radius: 100px;
  border: 1px solid var(--line); background: var(--white);
  font-size: .9rem; color: var(--muted); text-decoration: none;
  transition: all .15s ease;
}
.city-links a:hover { border-color: var(--accent); color: var(--accent-dk); background: var(--accent-lt); text-decoration: none; }

/* ------------------------------------------------------------- reviews */
.review {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); padding: 26px;
}
.review__stars { color: #F5A623; letter-spacing: 2px; font-size: 1rem; margin-bottom: 12px; }
.review__body { font-size: 1rem; color: var(--text); margin-bottom: 16px; }
.review__who { font-size: .88rem; color: var(--muted); font-weight: 500; }
.review--empty { border-style: dashed; background: transparent; }
.review--empty .review__body { color: var(--muted-lt); font-style: italic; }

/* -------------------------------------------------------------- footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 64px 0 30px; font-size: .94rem; }
.site-footer a { color: rgba(255,255,255,.6); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__grid h4 {
  color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 16px; font-weight: 600;
}
.footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer .logo__text { color: #fff; }
.footer__bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-dk);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: .86rem; color: rgba(255,255,255,.45);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }

/* ------------------------------------------------------------ utilities */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.9); font-size: .86rem; font-weight: 500;
  padding: 7px 15px; border-radius: 100px; margin-bottom: 22px;
}
.pill--light { background: var(--accent-lt); border-color: transparent; color: var(--accent-dk); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: #3DDC84; box-shadow: 0 0 0 3px rgba(61,220,132,.22); }

.mt-0 { margin-top: 0; } .mt-1 { margin-top: 10px; } .mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 32px; } .mt-4 { margin-top: 48px; }
.mb-3 { margin-bottom: 32px; } .mb-4 { margin-bottom: 48px; }

.page-head { background: var(--ink-2); color: #fff; padding: 64px 0 60px; position: relative; overflow: hidden; }
.page-head::after {
  content: ''; position: absolute; top: -200px; right: -100px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(255,92,53,.18) 0%, transparent 62%);
}
.page-head .wrap { position: relative; z-index: 2; }
.page-head h1 { color: #fff; max-width: 16em; }
/* Direct children only — a form card nested in the head keeps its own colours. */
.page-head > .wrap > p { color: rgba(255,255,255,.68); max-width: 40em; font-size: 1.12rem; }
.page-head > .wrap > .split > div > p { color: rgba(255,255,255,.68); font-size: 1.12rem; }

.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose ul, .prose ol { color: var(--muted); padding-left: 1.2em; }
.prose li { margin-bottom: .5em; }

.hero__call { margin-top: 20px; font-size: .97rem; color: rgba(255,255,255,.6); }
.hero__call a { color: #fff; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.35); }
.hero__call a:hover { border-color: #FF7A57; color: #FF9A7C; text-decoration: none; }
