/* ==========================================================================
   YVR CASH FOR CARS — DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Barlow+Condensed:wght@500;600;700&family=Public+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand */
  --primary:        #0e2545;
  --primary-mid:    #17396b;
  --primary-light:  #2c5490;
  --accent:         #e0392c;
  --accent-dark:    #ad261c;
  --accent-light:   #ff6a52;
  --gold:           #d3a237;

  /* Neutrals */
  --ink:            #101820;
  --ink-soft:       #45505c;
  --paper:          #faf7f1;
  --paper-dim:      #f0ebe1;
  --white:          #ffffff;
  --line:           #e2dbcc;

  /* Type */
  --font-display: 'Archivo Black', 'Barlow Condensed', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Public Sans', sans-serif;

  /* Rhythm */
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(14,37,69,0.08);
  --shadow-md: 0 12px 32px rgba(14,37,69,0.14);
  --shadow-lg: 0 24px 60px rgba(14,37,69,0.22);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.01em; line-height: 1.08; color: var(--primary); }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; font-size: 13px; color: var(--accent-dark);
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--accent); display: inline-block; }

.h-display {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.02;
  color: var(--primary);
}
.h-section {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 700;
}
.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.02em;
  font-size: 1.05rem; padding: 16px 30px; border-radius: 999px;
  border: 2px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-accent { background: var(--accent); color: var(--white); box-shadow: var(--shadow-md); }
.btn-accent:hover { background: var(--accent-dark); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-dark { background: var(--primary); color: var(--white); }
.btn-dark:hover { background: var(--primary-mid); }
.btn-block { width: 100%; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 13.5px;
  padding: 9px 16px;
}
.announce strong { font-weight: 700; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container); margin: 0 auto;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.15rem; white-space: nowrap; }
.logo__text { white-space: nowrap; }
.logo__mark {
  width: 40px; height: 40px; border-radius: 10px; background: var(--primary);
  display: flex; align-items: center; justify-content: center; color: var(--white);
  font-family: var(--font-display); font-size: 1rem; flex-shrink: 0;
}
.logo span { color: var(--accent); }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav ul { display: flex; gap: 26px; }
.main-nav ul a {
  font-family: var(--font-heading); font-weight: 600; font-size: 15px;
  color: var(--primary); letter-spacing: 0.01em;
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.main-nav ul a:hover { border-color: var(--accent); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--primary);
}
.header-phone svg { color: var(--accent); flex-shrink: 0; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-mid) 58%, var(--primary-light) 100%);
  overflow: hidden;
  padding: 68px 0 96px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 85% 18%, rgba(224,57,44,0.35), transparent 42%),
    radial-gradient(circle at 8% 88%, rgba(211,162,55,0.18), transparent 45%);
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: start;
}
.hero__copy .eyebrow { color: var(--gold); }
.hero__copy .eyebrow::before { background: var(--gold); }
.hero h1 { color: var(--white); margin-top: 14px; }
.hero__sub { color: rgba(255,255,255,0.82); font-size: 1.15rem; max-width: 52ch; margin-top: 18px; }
.trust-bullets { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 28px; }
.trust-bullets li {
  display: flex; align-items: center; gap: 8px;
  color: var(--white); font-family: var(--font-heading); font-weight: 600; font-size: 14.5px;
}
.trust-bullets svg { color: var(--gold); flex-shrink: 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__no-parts {
  margin-top: 26px; display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 18px; border-radius: 999px; color: rgba(255,255,255,0.9); font-size: 14px;
}
.hero__no-parts svg { color: var(--gold); flex-shrink: 0; }

/* ---------- Quote card / mini form ---------- */
.quote-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 30px 28px; position: relative;
}
.quote-card::before {
  content: 'GET MY CASH OFFER';
  position: absolute; top: -14px; left: 26px;
  background: var(--gold); color: var(--primary);
  font-family: var(--font-heading); font-weight: 700; font-size: 12.5px; letter-spacing: 0.08em;
  padding: 6px 14px; border-radius: 999px;
}
.quote-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.quote-card p.hint { color: var(--ink-soft); font-size: 14px; margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 13.5px; color: var(--primary); margin-bottom: 6px; }
.field select, .field input {
  width: 100%; padding: 14px 16px; border-radius: 8px; border: 1.5px solid var(--line);
  font-family: var(--font-body); font-size: 15px; background: var(--paper); color: var(--ink);
  appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%2345505c' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field select:focus, .field input:focus { outline: none; border-color: var(--accent); }
.quote-card .secure-note { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--ink-soft); margin-top: 14px; justify-content: center; }
.social-counter {
  margin-top: 18px; text-align: center; font-size: 13.5px; color: var(--primary-mid);
  background: var(--paper-dim); padding: 10px; border-radius: 8px; font-family: var(--font-heading); font-weight: 600;
}

/* Hero step form */
.hero-progress { margin-bottom: 18px; }
.hero-progress__label { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 12px; color: var(--ink-soft); margin-bottom: 6px; }
.hero-progress__track { height: 5px; background: var(--paper-dim); border-radius: 999px; overflow: hidden; }
.hero-progress__fill { height: 100%; width: 20%; background: var(--accent); border-radius: 999px; transition: width .3s ease; }
.hero-step { display: none; }
.hero-step.is-active { display: block; animation: heroStepIn .22s ease; }
@keyframes heroStepIn { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: none; } }
.hero-step__nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 4px; }
.hero-step__nav .btn { flex: 0 0 auto; }
.hero-back { font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--ink-soft); }
.hero-back:hover { color: var(--primary); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--paper-dim); border-bottom: 1px solid var(--line); }
.trust-strip__row {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px;
  padding: 22px 0;
}
.trust-strip__item { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 600; color: var(--primary); font-size: 14.5px; }
.trust-strip__item svg { color: var(--accent); flex-shrink: 0; }
.trust-strip__rating { display: flex; align-items: center; gap: 8px; }
.stars { color: var(--gold); letter-spacing: 2px; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.step { position: relative; background: var(--white); border-radius: var(--radius-lg); padding: 34px 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.step__num {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--white);
  width: 52px; height: 52px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.step h3 { font-size: 1.35rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); }
.steps__connector { display: none; }

/* ---------- Vehicle cards ---------- */
.veh-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.veh-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 20px; text-align: center; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.veh-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-light); }
.veh-card__icon {
  width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--paper-dim); display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.veh-card h4 { font-size: 1.05rem; font-family: var(--font-heading); font-weight: 700; }

/* ---------- Why choose ---------- */
.why { background: var(--primary); color: var(--white); position: relative; overflow: hidden; }
.why::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 90% 10%, rgba(224,57,44,0.25), transparent 40%); }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.why h2 { color: var(--white); }
.why__list { margin-top: 30px; display: grid; gap: 20px; }
.why__item { display: flex; gap: 16px; align-items: flex-start; }
.why__item .ico {
  width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0;
}
.why__item h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 4px; }
.why__item p { color: rgba(255,255,255,0.72); font-size: 14.5px; }
.why__panel { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-lg); padding: 32px; }
.why__panel .stat { font-family: var(--font-display); font-size: 3rem; color: var(--gold); line-height: 1; }
.why__panel .stat-label { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 6px; }
.why__panel-row { display: flex; justify-content: space-between; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.why__panel-row:first-child { border-top: none; padding-top: 0; }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.review-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.review-card .stars { display: block; margin-bottom: 14px; font-size: 15px; }
.review-card p { color: var(--ink-soft); font-size: 15px; margin-bottom: 18px; }
.review-card .who { font-family: var(--font-heading); font-weight: 700; color: var(--primary); font-size: 14.5px; }

/* ---------- Service area ---------- */
.area-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.area-pill { background: var(--white); border: 1.5px solid var(--line); border-radius: 999px; padding: 10px 20px; font-family: var(--font-heading); font-weight: 600; font-size: 14.5px; color: var(--primary); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: var(--radius-lg); padding: 52px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-banner p { color: rgba(255,255,255,0.85); margin-top: 8px; }
.cta-banner .btn-accent { background: var(--white); color: var(--accent-dark); }
.cta-banner .btn-accent:hover { background: var(--paper); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 48px auto 0; display: grid; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item summary {
  padding: 20px 24px; cursor: pointer; font-family: var(--font-heading); font-weight: 700; color: var(--primary);
  display: flex; justify-content: space-between; align-items: center; list-style: none; font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--accent); transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.68); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { color: var(--white); font-size: 15px; margin-bottom: 16px; }
.footer-grid ul { display: grid; gap: 10px; }
.footer-grid a:hover { color: var(--white); }
.footer-brand .logo span { color: var(--accent-light); }
.footer-brand p { margin-top: 14px; font-size: 14px; max-width: 32ch; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Quote wizard (contact.html) ---------- */
.wizard-page { background: var(--paper-dim); padding: 48px 0 96px; min-height: 70vh; }
.wizard-card {
  max-width: 620px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.wizard-rep {
  display: flex; align-items: center; gap: 14px; padding: 22px 30px;
  background: var(--primary); color: var(--white);
}
.wizard-rep img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.wizard-rep .name { font-family: var(--font-heading); font-weight: 700; font-size: 15px; }
.wizard-rep .role { font-size: 12.5px; color: rgba(255,255,255,0.7); }
.wiz-progress { padding: 18px 30px 0; }
.wiz-progress__label { font-size: 12.5px; font-family: var(--font-heading); font-weight: 600; color: var(--ink-soft); margin-bottom: 8px; display: block; }
.wiz-progress__track { height: 6px; background: var(--paper-dim); border-radius: 999px; overflow: hidden; }
.wiz-progress__fill { height: 100%; background: var(--accent); width: 12%; transition: width .3s ease; }

.wiz-step { display: none; padding: 34px 30px 36px; }
.wiz-step.is-active { display: block; animation: wizIn .25s ease; }
@keyframes wizIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.wiz-step h2 { font-size: 1.55rem; margin-bottom: 6px; }
.wiz-step .wiz-hint { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 24px; }

.choice-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice-group.choice-group--single { grid-template-columns: 1fr; }
.choice-btn {
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 20px 16px; border: 2px solid var(--line); border-radius: var(--radius);
  background: var(--paper); font-family: var(--font-heading); font-weight: 700; font-size: 16px;
  color: var(--primary); transition: all .15s ease; min-height: 64px;
}
.choice-btn:hover { border-color: var(--accent-light); }
.choice-btn.is-selected { border-color: var(--accent); background: #fdeeec; color: var(--accent-dark); }

.wiz-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 14px; }
.wiz-back { font-family: var(--font-heading); font-weight: 600; color: var(--ink-soft); font-size: 14.5px; }
.wiz-back:hover { color: var(--primary); }
.field-error { border-color: var(--accent) !important; }

.consent-block { font-size: 12.5px; color: var(--ink-soft); margin-top: 18px; line-height: 1.5; }
.consent-block label { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.consent-block input[type=checkbox] { margin-top: 3px; flex-shrink: 0; }
.consent-block a { text-decoration: underline; }

/* ---------- Sticky mobile bar ---------- */
.sticky-mobile-cta { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .veh-grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; gap: 36px; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 720px) {
  .main-nav ul, .header-phone span.header-phone__label, .header-cta .btn-dark { display: none; }
  .site-header__inner { padding: 12px 16px; }
  .logo { font-size: 0.85rem; }
  .logo__mark { width: 34px; height: 34px; font-size: 0.9rem; }
  .section { padding: 44px 0; }
  .section--tight { padding: 36px 0; }
  .container { padding: 0 20px; }

  /* Hero */
  .hero { padding: 36px 0 48px; }
  .hero__sub { font-size: 1rem; margin-top: 14px; }
  .trust-bullets {
    flex-direction: column; align-items: flex-start; gap: 12px;
    margin-top: 22px;
  }
  .trust-bullets li { font-size: 14px; }
  .hero__actions { flex-direction: row; flex-wrap: nowrap; margin-top: 24px; gap: 10px; }
  .hero__actions .btn { flex: 1 1 0; padding: 14px 10px; font-size: 0.85rem; white-space: normal; text-align: center; }
  .hero__no-parts { width: 100%; box-sizing: border-box; text-align: left; margin-top: 18px; }

  /* Quote card */
  .quote-card { padding: 26px 20px 22px; margin-top: 28px; }
  .hero__grid { gap: 28px; }

  /* Trust strip */
  .trust-strip__row { flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px 0; }

  /* Vehicle grid */
  .veh-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .veh-card { padding: 20px 14px; }

  /* Why panel */
  .why__panel { padding: 24px 20px; }
  .why__panel-row { padding: 14px 0; flex-wrap: wrap; gap: 4px; }

  /* CTA banner */
  .cta-banner { padding: 32px 24px; }

  /* Service area pills */
  .area-list { gap: 10px; }
  .area-pill { padding: 8px 16px; font-size: 13.5px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Wizard */
  .wizard-rep { padding: 18px 22px; }
  .wiz-step { padding: 26px 22px 28px; }
  .wiz-step h2 { font-size: 1.3rem; }
  .choice-group { gap: 10px; }
  .choice-btn { padding: 16px 12px; font-size: 15px; min-height: 56px; }

  body { padding-bottom: 66px; }
  .sticky-mobile-cta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
  }
  .sticky-mobile-cta a { flex: 1; text-align: center; padding: 16px 10px; font-family: var(--font-heading); font-weight: 700; font-size: 15px; }
  .sticky-mobile-cta a.call { background: var(--primary); color: var(--white); }
  .sticky-mobile-cta a.quote { background: var(--accent); color: var(--white); }
}

@media (max-width: 480px) {
  .veh-grid { grid-template-columns: 1fr; }
  .h-display { font-size: 2rem; }
  .h-section { font-size: 1.6rem; }
}

/* --- SEO: contact page intro --- */
.wizard-intro { max-width: 640px; margin: 0 auto 22px; text-align: center; }
.wizard-intro h1 { font-family: var(--font-heading); font-size: clamp(1.7rem, 4vw, 2.4rem); line-height: 1.1; margin: 0 0 10px; color: var(--ink); }
.wizard-intro p { color: var(--ink-soft); font-size: 1rem; line-height: 1.6; margin: 0; }
@media (max-width: 720px){ .wizard-intro { margin-bottom: 16px; } }
