/* Blue Bag Laundry — Round 1 public site */
:root {
  --blue: #1663ff;
  --blue-dark: #0b46c4;
  --navy: #0a1c3f;
  --ink: #152238;
  --muted: #5b6b85;
  --bg: #ffffff;
  --bg-soft: #faf6ef;
  --line: #dbe6fb;
  --radius: 14px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
img { max-width: 100%; height: auto; }
.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; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff; border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 16px; padding: 10px 20px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; text-decoration: none; color: inherit; }
/* Header brand: the exact Blue Bag Laundry horizontal lockup (bag + wordmark + truck tagline).
   Prominent but proportionate: scales with the viewport, never a fixed oversized bar. */
.brand img { height: 96px; width: auto; display: block; }
@media (max-width: 900px) {
  .brand img { height: 80px; }
}
.site-nav { margin-left: auto; display: flex; gap: 18px; align-items: center; }
.site-nav a { color: var(--muted); text-decoration: none; font-weight: 600; white-space: nowrap; }
.site-nav a:hover { color: var(--blue); }
/* Header CTA must stay white-on-blue: .site-nav a outranks .btn on color */
.site-nav a.btn, .site-nav a.btn:hover { color: #fff; }

/* Buttons */
.btn {
  display: inline-block; border: 0; cursor: pointer; text-decoration: none;
  background: var(--blue); color: #fff; font-weight: 700;
  padding: 14px 28px; border-radius: 999px; font-size: 17px;
}
.btn:hover { background: var(--blue-dark); }
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn-outline {
  background: transparent; color: #fff; border: 2px solid #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.15); }

/* Hero — solid background, headline, then full photo underneath, no text over it */
.hero { background: var(--blue); color: #fff; text-align: center; }
.hero-copy { padding: 64px 20px 48px; }
.hero-copy h1 { margin: 0 0 12px; font-size: clamp(34px, 6vw, 56px); letter-spacing: -1px; }
.hero-copy p { margin: 0 auto 28px; max-width: 560px; font-size: 19px; opacity: .95; }
.hero-photo { display: block; width: 100%; }
.hero-photo img { display: block; width: 100%; height: auto; }

/* ZIP checker — one clean all-blue section */
.zip-section { background: var(--blue); color: #fff; padding: 64px 20px; text-align: center; }
.zip-section h2 { margin: 0 0 10px; font-size: clamp(26px, 4vw, 36px); }
.zip-section p { margin: 0 auto 26px; max-width: 520px; opacity: .95; }
.zip-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.zip-input {
  font-size: 22px; font-weight: 700; letter-spacing: 2px; text-align: center;
  padding: 16px 20px; border-radius: 999px; border: 3px solid #fff;
  width: min(320px, 80vw); outline: none; color: var(--navy);
  min-height: 60px; /* obviously tappable */
}
.zip-input:focus { box-shadow: 0 0 0 4px rgba(255,255,255,.45); }
.zip-result { margin-top: 22px; font-size: 18px; font-weight: 600; min-height: 28px; }
.zip-result.ok { color: #fff; }
.zip-result.no { color: #fff; font-weight: 700; }

/* Newsletter capture (light sections) */
.news-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.news-input {
  font-size: 17px; padding: 14px 20px; border-radius: 999px;
  border: 2px solid var(--line); width: min(320px, 80vw); outline: none; color: var(--navy);
}
.news-input:focus { border-color: var(--blue); }
.news-result { margin-top: 18px; font-size: 16px; font-weight: 600; min-height: 26px; color: var(--navy); }

/* Sections */
.section { padding: 64px 20px; }
.section.alt { background: var(--bg-soft); }
.section h2 { text-align: center; font-size: clamp(26px, 4vw, 36px); color: var(--navy); margin: 0 0 12px; }
.section .lede { text-align: center; color: var(--muted); max-width: 640px; margin: 0 auto 36px; font-size: 18px; }

/* Pricing cards */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.price-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; background: #fff;
}
.price-card .amount { font-size: 30px; font-weight: 800; color: var(--blue); }
.price-card .per { color: var(--muted); font-size: 14px; }
.price-card h3 { margin: 8px 0 6px; font-size: 17px; }
.price-card p { margin: 0; color: var(--muted); font-size: 14px; }
.price-note { text-align: center; color: var(--muted); margin-top: 24px; font-size: 15px; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.step { text-align: center; padding: 10px; }
.step .num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--blue); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800; margin-bottom: 12px;
}
.step h3 { margin: 0 0 8px; color: var(--navy); }
.step p { margin: 0; color: var(--muted); }

/* CTA band */
.cta-band { background: var(--navy); color: #fff; text-align: center; padding: 56px 20px; }
.cta-band h2 { margin: 0 0 10px; font-size: clamp(24px, 4vw, 34px); }
.cta-band p { opacity: .85; margin: 0 0 24px; }

/* Footer */
.site-footer { background: #0a1428; color: #aebcd4; padding: 40px 20px; font-size: 14px; }
.site-footer .wrap { display: flex; gap: 24px; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; }
.site-footer a { color: #d6e2f7; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-links { display: flex; gap: 18px; }

/* Booking flow */
.booking-shell { max-width: 720px; margin: 0 auto; padding: 32px 20px 64px; }
.progress { display: flex; gap: 8px; margin-bottom: 28px; }
.progress .dot { flex: 1; height: 6px; border-radius: 3px; background: var(--line); }
.progress .dot.on { background: var(--blue); }
.step-pane { display: none; }
.step-pane.on { display: block; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px; font-size: 16px;
  border: 2px solid var(--line); border-radius: 10px;
}
.field input:focus, .field select:focus { border-color: var(--blue); outline: none; }
.field .hint { font-size: 13px; color: var(--muted); margin-top: 4px; }
.form-error { background: #ffe9e9; color: #a11717; border-radius: 10px; padding: 12px 16px; margin-bottom: 18px; display: none; }
.form-error.on { display: block; }
.form-ok { background: #e7f6ec; color: #146c2e; border-radius: 10px; padding: 12px 16px; margin-bottom: 18px; display: none; }
.btn-row { display: flex; gap: 12px; margin-top: 24px; }
.btn-row .btn { flex: 1; }
.btn-ghost { background: #eef3fd; color: var(--blue); }
.addon-row {
  display: flex; align-items: center; gap: 12px; justify-content: space-between;
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; margin-bottom: 10px;
}
@media (max-width: 560px) {
  .addon-row { flex-wrap: wrap; }
  .addon-row .meta { flex: 1 1 160px; }
}
.addon-row .meta small { display: block; color: var(--muted); }
/* 8b (2026-09-15): per-order add-on toggles — the whole row is the label. */
.addon-toggle { display: flex; align-items: center; gap: 12px; width: 100%; cursor: pointer; }
.addon-toggle input[type="checkbox"] { width: 24px; height: 24px; flex: none; accent-color: var(--blue); }
.qty { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.qty button {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--blue);
  background: #fff; color: var(--blue); font-size: 20px; font-weight: 800; cursor: pointer;
  flex-shrink: 0;
}
.qty span { min-width: 28px; text-align: center; font-weight: 800; font-size: 18px; }
.summary { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; background: var(--bg-soft); }
.summary .line { display: flex; justify-content: space-between; padding: 6px 0; }
.summary .line.total { border-top: 2px solid var(--line); margin-top: 10px; padding-top: 12px; font-weight: 800; font-size: 20px; color: var(--navy); }
.confirm-box { text-align: center; padding: 40px 10px; }
.confirm-box .check {
  width: 84px; height: 84px; border-radius: 50%; background: #e7f6ec; color: #1c7c3c;
  font-size: 44px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px;
}

/* Round 2 booking components */
.booking-intro { color: var(--ink); font-size: 17px; line-height: 1.55; margin: 0 0 10px; }
.compact-line { color: var(--muted); font-size: 14px; font-weight: 600; margin: 0 0 24px; }
.pane-support { color: var(--muted); font-size: 15px; margin: -6px 0 18px; }
.zip-avail { margin: -4px 0 16px; font-size: 15px; line-height: 1.5; }
.zip-avail.ok { color: #1c7c3c; }
.zip-avail.no { color: #a11717; }
.payment-block { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; margin-top: 20px; }
.gate-notice { background: #fff7e0; border: 1px solid #ecd27a; border-radius: 10px; padding: 12px 16px; font-size: 14px; color: var(--ink); }
.reassure { font-weight: 700; color: var(--navy); font-size: 14px; margin: 12px 0 0; }
.toggle-btn {
  width: 100%; text-align: left; background: #eef2fb; border: none; border-radius: 12px;
  padding: 14px 16px; font-weight: 700; font-size: 16px; color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px;
}
.toggle-btn span { font-size: 20px; color: var(--blue); }
#personalizeBody { border: 1px solid var(--line); border-radius: 12px; padding: 18px; margin-top: 4px; }
.pay-reminder { font-weight: 700; color: var(--navy); font-size: 15px; }

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 48px 20px 64px; }
.legal h1 { color: var(--navy); }
.legal .draft { background: #fff7e0; border: 1px solid #ecd27a; border-radius: 10px; padding: 12px 16px; margin-bottom: 24px; }

@media (max-width: 640px) {
  .site-nav a.nav-link:not(.keep-mobile) { display: none; }
  .zip-form { flex-direction: column; align-items: center; }
}

/* ================= Landing sales page ================= */

.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin: 0 0 14px;
}

/* Hero — split layout: copy left, ad creative right */
.hero-split { background: #fff; padding: 64px 0 56px; }
.hero-split-inner { display: grid; grid-template-columns: 0.85fr 1.35fr; gap: 48px; align-items: center; }
.hero-split-copy h1 { margin: 0 0 16px; color: var(--navy); font-size: clamp(36px, 5.5vw, 60px); letter-spacing: -1.5px; line-height: 1.08; }
.hero-split-copy .hero-sub { font-size: 19px; color: var(--muted); margin: 0 0 30px; max-width: 480px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-price { font-size: 22px; color: var(--navy); margin: 0 0 14px; }
.hero-reassure { font-size: 14px; color: var(--muted); font-weight: 600; margin: 16px 0 0; }
.hero-split-art img { width: 100%; height: auto; display: block; border-radius: 20px; box-shadow: 0 24px 60px rgba(11, 70, 196, .18); }

/* Announcement bar — above the site header */
.announce-bar {
  background: var(--blue); color: #fff; text-align: center;
  padding: 10px 16px; font-size: 15px; font-weight: 700; letter-spacing: .2px;
}

/* Trust strip — DEV-07 reusable component.
   Snippet (copy to reuse):
   <div class="trust-strip">
     <div class="wrap">
       <span>No contracts</span>
       <span class="sep" aria-hidden="true">·</span>
       <span>No minimums</span>
       <span class="sep" aria-hidden="true">·</span>
       <span>No hidden fees</span>
       <span class="sep" aria-hidden="true">·</span>
       <span>No memberships</span>
       <span class="sep" aria-hidden="true">·</span>
       <span>Pay after we weigh</span>
     </div>
   </div>
   No invented counts, logos, or press — words only, always true. */
.trust-strip { background: var(--navy); color: #fff; text-align: center; padding: 18px 20px; font-weight: 700; font-size: 17px; }
.trust-strip .sep { margin: 0 14px; opacity: .5; }

/* Intro */
.intro-copy { text-align: center; font-size: 21px; color: var(--ink); max-width: 760px; margin: 0 auto; line-height: 1.65; }
.intro-copy strong { color: var(--blue); }

/* How it works — 4 steps + photo strip */
.steps-4 { grid-template-columns: repeat(4, 1fr); }
/* How it works — 5 steps */
.steps-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1000px) {
  .steps-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps-5 { grid-template-columns: 1fr; }
}
.photo-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
.photo-strip figure { margin: 0; }
.photo-strip img { width: 100%; height: auto; border-radius: 16px; display: block; }
.photo-strip figcaption { text-align: center; color: var(--muted); font-size: 15px; margin-top: 10px; }
.hero-team-photo { margin: 0 auto 28px; max-width: 680px; }
.hero-team-photo img { width: 100%; height: auto; border-radius: 16px; display: block; }

/* Published pricing card row — $39.99 anchor + $14.99 fee + overage */
.price-minis {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 860px; margin: 30px auto 0;
}
.price-mini { background: #fff; color: var(--navy); border-radius: 16px; padding: 22px 16px; }
.price-mini .amount { font-size: 34px; font-weight: 800; color: var(--blue); letter-spacing: -.5px; }
.price-mini .amount .per-lb { font-size: 20px; }
.price-mini .mini-label { margin-top: 8px; font-size: 14px; font-weight: 600; color: var(--ink); }
.pricing-transparency { margin-top: 22px; font-size: 17px; font-weight: 700; opacity: .95; }
@media (max-width: 640px) {
  .price-minis { grid-template-columns: 1fr; max-width: 380px; }
}

/* DRAFT badge — marks anything not yet a live promise */
.draft-tag {
  display: inline-block; vertical-align: middle;
  background: #fff7e0; border: 1px solid #ecd27a; color: #7a5b00;
  font-size: 11px; font-weight: 800; letter-spacing: 1px;
  padding: 3px 8px; border-radius: 6px; margin-left: 6px;
}

/* Two-card module rows (referral + first-pickup) */
.why-grid.duo { grid-template-columns: 1fr 1fr; max-width: 960px; margin: 0 auto; }
@media (max-width: 760px) {
  .why-grid.duo { grid-template-columns: 1fr; }
}
.card-accent { background: #eef3fd; border: 2px solid var(--blue); }
.card-accent h3 { color: var(--navy); }

/* Final CTA reassurance */
.cta-reassure { margin-top: 16px !important; font-size: 15px; font-weight: 600; }
.pricing-band { background: var(--blue); color: #fff; padding: 72px 20px; text-align: center; }
.pricing-band h2 { margin: 0 0 14px; font-size: clamp(28px, 4.5vw, 42px); letter-spacing: -.5px; }
.pricing-band-copy { max-width: 620px; margin: 0 auto 18px; font-size: 18px; opacity: .96; }
.btn-light { background: #fff; color: var(--blue-dark); }
.btn-light:hover { background: #eef3fd; }

/* Full-pricing expander */
.pricing-expander { max-width: 820px; margin: 34px auto 0; text-align: center; }
.pricing-expander .expander-btn {
  display: inline-block; cursor: pointer; list-style: none;
  background: transparent; color: #fff; border: 2px solid #fff;
  padding: 12px 30px; border-radius: 999px; font-weight: 700; font-size: 16px;
}
.pricing-expander summary.expander-btn::-webkit-details-marker { display: none; }
.pricing-expander .expander-btn:hover { background: rgba(255,255,255,.15); }
.expander-panel { background: #fff; color: var(--ink); border-radius: 18px; padding: 30px; margin-top: 20px; text-align: left; }
.price-list-canonical { list-style: none; margin: 22px 0 0; padding: 0; }
.price-list-canonical li { padding: 10px 4px; border-top: 1px solid var(--line); font-size: 16px; }
.price-list-canonical li:first-child { border-top: 0; }
.expander-panel .price-note { text-align: left; margin-top: 20px; }

/* The ad */
.ad-section .ad-image { display: block; width: 100%; max-width: 860px; margin: 30px auto; border-radius: 20px; box-shadow: 0 24px 60px rgba(11, 70, 196, .15); }
.center { text-align: center; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px 24px; }
.service-card h3 { margin: 0 0 6px; color: var(--navy); font-size: 20px; }
.service-price { color: var(--blue); font-weight: 800; margin: 0 0 12px; font-size: 16px; }
.service-card p:last-child { margin: 0; color: var(--muted); }

/* Why Blue Bag */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.why-card { background: var(--bg-soft); border-radius: 18px; padding: 26px 24px; }
.why-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 19px; }
.why-card p { margin: 0; color: var(--muted); }

/* Founder */
.founder-inner { display: grid; grid-template-columns: minmax(260px, 360px) 1fr; gap: 48px; align-items: start; }
.founder-photo img { width: 100%; border-radius: 20px; display: block; box-shadow: 0 18px 44px rgba(10, 28, 63, .18); }
.founder-story .eyebrow { margin-bottom: 8px; }
.founder-story h2 { text-align: left; margin-bottom: 18px; }
.founder-story p { color: var(--ink); font-size: 17px; margin: 0 0 16px; line-height: 1.7; }
.founder-signoff { font-weight: 800; color: var(--navy); }

/* FAQ accordion */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
.faq-list summary { cursor: pointer; padding: 20px 22px; font-weight: 700; font-size: 17px; color: var(--navy); list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; float: right; color: var(--blue); font-size: 22px; line-height: 1; }
.faq-list details[open] summary::after { content: "\2013"; }
.faq-list details p { margin: 0; padding: 0 22px 22px; color: var(--muted); }
.section#faq { background: var(--bg-soft); }

/* Final CTA */
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer-grid { align-items: flex-start; }
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-brand-row img { height: 44px; width: 44px; object-fit: contain; border-radius: 10px; }
.footer-brand-row strong { color: #fff; font-size: 17px; }
.footer-brand p { margin: 0; }
.footer-col h4 { color: #fff; margin: 0 0 12px; font-size: 15px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { display: block; }
.footer-copy { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); text-align: center; color: #8fa1bd; }

/* Sales-page responsive */
@media (max-width: 860px) {
  .hero-split-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-split-copy .hero-sub { max-width: none; }
  .founder-inner { grid-template-columns: 1fr; gap: 28px; }
  .founder-photo img { max-width: 340px; }
  .photo-strip { grid-template-columns: 1fr; }
  .steps-4 { grid-template-columns: 1fr 1fr; }
  .trust-strip .sep { margin: 0 8px; }
}

@media (max-width: 640px) {
  .steps-4 { grid-template-columns: 1fr; }
  .trust-strip { font-size: 14px; }
}

/* Mobile QA — small-phone hardening */
@media (max-width: 640px) {
  /* Compact the sticky header so brand + Sign in + Book pickup fit at 360px */
  .brand img { height: 72px; }
  .site-header .wrap { gap: 10px; padding: 8px 16px; }
  .site-nav { gap: 10px; }
  .site-nav .btn { padding: 11px 18px !important; font-size: 14px !important; }
}
@media (max-width: 560px) {
  /* City/State/ZIP stack on small phones */
  .addr-grid { grid-template-columns: 1fr !important; }
  /* Stack Back/Next buttons full-width — the mobile standard */
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }
  /* Long unbroken strings (emails, URLs) must never force horizontal scroll */
  .site-footer a { overflow-wrap: anywhere; }
}

/* Round 1 homepage rebuild: alternating image/text splits, checklist, ghost-dark button */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-copy h2 { text-align: left; font-size: clamp(26px, 4vw, 36px); color: var(--navy); margin: 0 0 14px; }
.split-copy .eyebrow { margin-bottom: 10px; }
.split-copy p { color: var(--ink); font-size: 17px; margin: 0 0 16px; line-height: 1.65; }
.split-art img { width: 100%; height: auto; border-radius: 20px; display: block; box-shadow: 0 18px 44px rgba(10, 28, 63, .14); }
.lede-left { color: var(--muted); font-size: 17px; }
.check-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 34px; color: var(--ink); font-size: 16.5px; line-height: 1.6; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 24px; height: 24px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 14px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.check-list li strong { color: var(--navy); }
.btn-ghost-dark { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-ghost-dark:hover { background: var(--navy); color: #fff; }
.steps-3 { grid-template-columns: repeat(3, 1fr); }
.hero-service { font-size: 15px; color: var(--muted); margin: 0 0 8px; font-weight: 600; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin: 0 0 22px; }
.btn-outline-dark { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: #fff; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split-copy h2 { text-align: center; }
  .split-copy { text-align: center; }
  .check-list { text-align: left; }
}
@media (max-width: 560px) {
  .steps-3 { grid-template-columns: 1fr; }
}

/* Breadcrumbs (Round 3 SEO) */
.breadcrumbs { font-size: 14px; padding: 18px 20px 0; color: var(--muted); }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs [aria-current] { color: var(--ink, #1a1a1a); font-weight: 600; }

/* Visible keyboard focus (Round 3 a11y) */
:focus-visible {
  outline: 3px solid #1a73e8;
  outline-offset: 2px;
  border-radius: 4px;
}
