/* ============================================================================
   RAXO iOS skin — "1b Bold Brand Cards" presentation layer (additive).
   ----------------------------------------------------------------------------
   ADD-ON, NOT A REWRITE. This file only *styles* existing markup and a few
   additive hooks. It is activated by `<body class="… ios">`. Removing the body
   class OR this <link> fully reverts the page to its previous design — no
   content, URL, or JSON-LD depends on it. Colours use the site's AA tokens
   (bright #FF6B1A only on dark; #E2580E / #C2410C on light).
   ============================================================================ */

/* ---- 1. iOS grouped background (light sections become the iOS grey) -------- */
body.ios { background:#F2F2F7; }
body.ios .bg-paper { background:#F2F2F7; }
/* hero (.bg-navy) and dark bands (.bg-slate2) intentionally keep their colour */

/* ---- 2. Navy translucent chrome nav --------------------------------------- */
body.ios-chrome #topbar{
  background:rgba(11,30,63,.72);
  -webkit-backdrop-filter:saturate(180%) blur(20px);
  backdrop-filter:saturate(180%) blur(20px);
  border-bottom:.5px solid rgba(255,255,255,.12);
}
body.ios-chrome #topbar.shadow-card{ box-shadow:0 .5px 0 rgba(255,255,255,.10); }
body.ios-chrome #topbar nav[aria-label="Primary"] a{ color:rgba(255,255,255,.9); }
body.ios-chrome #topbar nav[aria-label="Primary"] a:hover{ color:#FF8A4C; }
/* logo: swap dark wordmark for the light one on the navy bar */
body.ios-chrome .logo-dark{ display:none; }
body.ios-chrome .logo-light{ display:inline-block; }
/* header Text (outline) + hamburger sit on navy */
body.ios-chrome #topbar [data-raxo-header-sms]{ color:#fff; border-color:rgba(255,255,255,.28); }
body.ios-chrome #topbar [data-raxo-header-sms]:hover{ color:#FF8A4C; border-color:#FF8A4C; }
body.ios-chrome #menuToggle{ color:#fff; border-color:rgba(255,255,255,.28); }
/* mobile drawer on navy */
body.ios-chrome #mobileNav{ background:rgba(11,30,63,.98); border-color:rgba(255,255,255,.08); }
body.ios-chrome #mobileNav a{ color:rgba(255,255,255,.92); }
body.ios-chrome #mobileNav a:hover{ color:#FF8A4C; }
body.ios-chrome #mobileNav p{ color:rgba(255,255,255,.5); }
body.ios-chrome #mobileNav svg{ color:rgba(255,255,255,.5); }

/* logo variants: default (non-iOS) shows the existing dark logo only */
.logo-light{ display:none; }

/* ---- 3. iOS large-title type rhythm (mobile) ------------------------------ */
@media (max-width:767px){
  body.ios main h1{ letter-spacing:-.02em; line-height:1.12; }
  body.ios main h2{ font-size:26px; line-height:1.16; letter-spacing:-.012em; }
}

/* ---- 4. Rounded iOS cards + refined shadow -------------------------------- */
body.ios .rounded-2xl{ border-radius:18px; }
body.ios .rounded-3xl{ border-radius:22px; }
body.ios .shadow-card{
  box-shadow:0 1px 2px rgba(11,30,63,.06), 0 12px 26px -18px rgba(11,30,63,.40);
}

/* ---- 5. Situation grid (1b hero-follow) ----------------------------------- */
.sit-wrap{ margin-top:0; }
.sit-grid{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
@media (min-width:768px){ .sit-grid{ grid-template-columns:repeat(4,1fr); gap:16px; } }
.sit-card{
  display:flex; flex-direction:column; gap:8px;
  background:#fff; border-radius:18px; padding:16px 16px 15px;
  border:1px solid rgba(11,30,63,.05);
  box-shadow:0 1px 2px rgba(11,30,63,.06), 0 12px 26px -18px rgba(11,30,63,.40);
  color:inherit; text-decoration:none;
  transition:transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.sit-card:hover{ transform:translateY(-2px); box-shadow:0 16px 34px -20px rgba(11,30,63,.45); border-color:rgba(226,88,14,.35); }
.sit-card:active{ transform:translateY(0); }
.sit-card .ic{
  width:44px; height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:#E2580E; color:#fff;
  box-shadow:0 6px 14px -6px rgba(255,107,26,.7);
}
.sit-card .ic svg{ width:22px; height:22px; }
.sit-card h3{ font-weight:700; color:#0B1E3F; font-size:17px; letter-spacing:-.01em; }
.sit-card .desc{ color:#6E6E73; font-size:14px; line-height:1.35; }
.sit-card .price{ margin-top:auto; font-family:'JetBrains Mono',ui-monospace,monospace; font-weight:600; color:#C2410C; font-size:15px; }

/* ---- 6. Segmented control (Popular / All prices) — both panels stay in DOM - */
.seg{ display:inline-flex; background:rgba(120,120,128,.12); border-radius:11px; padding:3px; gap:2px; }
.seg button{
  border:0; background:transparent; cursor:pointer;
  font:600 14px/1 'Inter',system-ui,sans-serif; color:#0B1E3F;
  padding:9px 16px; border-radius:8px; min-height:34px;
  transition:background .15s ease, box-shadow .15s ease;
}
.seg button[aria-selected="true"]{ background:#fff; box-shadow:0 1px 3px rgba(0,0,0,.16); }
.seg-panel[hidden]{ display:none; }   /* hidden = display:none but text stays in the DOM (indexable) */

/* featured "Most common" price card */
.price-featured{
  border:1.5px solid #FFD9C2 !important;
  box-shadow:0 16px 34px -22px rgba(200,74,12,.55) !important;
  position:relative;
}
.price-featured .pill-common{
  display:inline-flex; align-items:center; gap:6px;
  background:#C84A0C; color:#fff; font:700 10px/1 'Inter',system-ui,sans-serif;
  letter-spacing:.06em; text-transform:uppercase; padding:5px 9px; border-radius:999px;
}

/* ---- 7. Sticky iOS bottom bar (Text + Call) ------------------------------- */
body.ios-chrome nav[aria-label="Quick contact"]{
  background:rgba(255,255,255,.82);
  -webkit-backdrop-filter:saturate(180%) blur(20px);
  backdrop-filter:saturate(180%) blur(20px);
  border-top:.5px solid rgba(60,60,67,.16);
}

/* ---- 8. Quote-flow overlay ------------------------------------------------ */
#raxo-quote[hidden]{ display:none; }
#raxo-quote{
  position:fixed; inset:0; z-index:60;
  display:flex; align-items:flex-end; justify-content:center;
}
@media (min-width:768px){ #raxo-quote{ align-items:center; } }
.rq-scrim{ position:absolute; inset:0; background:rgba(0,0,0,.42); opacity:0; transition:opacity .25s ease; }
#raxo-quote.open .rq-scrim{ opacity:1; }
.rq-sheet{
  position:relative; width:100%; max-width:440px; max-height:92vh; overflow:auto;
  background:#F2F2F7; border-radius:22px 22px 0 0;
  transform:translateY(100%); transition:transform .3s cubic-bezier(.2,.85,.2,1);
  padding:0 0 22px;
}
@media (min-width:768px){ .rq-sheet{ border-radius:22px; margin:0 16px; } }
#raxo-quote.open .rq-sheet{ transform:translateY(0); }
.rq-grabber{ width:38px; height:5px; border-radius:3px; background:rgba(60,60,67,.3); margin:10px auto 0; }
.rq-head{ display:flex; align-items:center; gap:10px; padding:12px 16px 6px; }
.rq-head .rq-title{ flex:1; text-align:center; font-weight:700; color:#0B1E3F; font-size:16px; }
.rq-back, .rq-close{ background:transparent; border:0; cursor:pointer; color:#0B1E3F; font-size:15px; font-weight:600; min-width:44px; min-height:34px; }
.rq-progress{ height:4px; background:rgba(60,60,67,.12); border-radius:999px; margin:0 16px 10px; overflow:hidden; }
.rq-progress > i{ display:block; height:100%; width:33%; background:#E2580E; border-radius:999px; transition:width .3s ease; }
.rq-body{ padding:4px 16px 0; }
.rq-step[hidden]{ display:none; }
.rq-step h2{ font-size:20px; font-weight:800; color:#0B1E3F; letter-spacing:-.01em; margin:6px 2px 12px; }
.rq-pill{ display:inline-flex; align-items:center; gap:6px; background:rgba(226,88,14,.10); color:#C2410C; border:1px solid rgba(226,88,14,.3); border-radius:999px; padding:4px 10px; font:600 12px/1 'JetBrains Mono',ui-monospace,monospace; text-transform:uppercase; letter-spacing:.04em; }
.rq-field{ background:#fff; border-radius:14px; padding:10px 14px; margin-bottom:10px; border:1px solid rgba(11,30,63,.06); }
.rq-field label{ display:block; font:600 12px/1 'Inter',system-ui,sans-serif; text-transform:uppercase; letter-spacing:.05em; color:#6E6E73; margin-bottom:4px; }
.rq-field select, .rq-field input{ width:100%; border:0; background:transparent; font-size:17px; color:#0B1E3F; outline:none; }
.rq-primary{ display:flex; align-items:center; justify-content:center; gap:8px; width:100%; height:52px; border:0; border-radius:15px; background:#E2580E; color:#fff; font-weight:700; font-size:17px; cursor:pointer; margin-top:6px; }
.rq-primary[disabled]{ opacity:.45; cursor:not-allowed; }
.rq-secondary{ display:flex; align-items:center; justify-content:center; gap:8px; width:100%; height:48px; border:1.5px solid rgba(11,30,63,.2); border-radius:15px; background:#fff; color:#0B1E3F; font-weight:700; font-size:16px; cursor:pointer; margin-top:8px; text-decoration:none; }
.rq-send{ background:#34C759; border:0; color:#fff; }
.rq-summary{ background:#fff; border-radius:14px; padding:4px 14px; margin-bottom:12px; }
.rq-summary .row{ display:flex; justify-content:space-between; gap:12px; padding:10px 0; border-bottom:.5px solid rgba(60,60,67,.14); font-size:15px; }
.rq-summary .row:last-child{ border-bottom:0; }
.rq-summary .row span:first-child{ color:#6E6E73; }
.rq-summary .row span:last-child{ color:#0B1E3F; font-weight:600; text-align:right; }
.rq-bubble{ background:#34C759; color:#fff; border-radius:18px 18px 18px 6px; padding:12px 14px; font-size:15px; line-height:1.4; margin:4px 0 12px; }
.rq-note{ color:#6E6E73; font-size:13px; line-height:1.4; margin:10px 2px 0; }
.rq-mini{ display:block; width:100%; text-align:center; background:transparent; border:0; color:#1F6FB2; font-weight:600; font-size:14px; padding:10px; cursor:pointer; margin-top:2px; }

/* ============================================================================
   9. Section rebuilds (faithful 1b composition) — added in the aesthetics pass
   ============================================================================ */

/* ---- Hero: punchy hook + keyword subhead + Meet-Leo card --------------------- */
body.ios .hero-hook{
  margin-top:14px;
  font-size:28px; line-height:1.08; font-weight:800; letter-spacing:-.022em; color:#fff;
}
@media (min-width:768px){ body.ios .hero-hook{ margin-top:20px; font-size:54px; } }
body.ios .hero-h1{
  margin-top:8px;
  font-size:16px; line-height:1.32; font-weight:600; letter-spacing:0;
  color:rgba(248,250,252,.72);
}
@media (min-width:768px){ body.ios .hero-h1{ font-size:19px; margin-top:12px; } }
@media (min-width:768px){ body.ios .hero-h1{ font-size:19px; } }

.meet-leo{
  display:inline-flex; align-items:center; gap:12px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14);
  border-radius:16px; padding:10px 14px 10px 10px;
}
.meet-leo img{ width:52px; height:52px; border-radius:50%; object-fit:cover; border:2px solid rgba(255,255,255,.25); }
.meet-leo .nm{ font-weight:700; color:#fff; font-size:15px; line-height:1.2; }
.meet-leo .rt{ color:rgba(248,250,252,.75); font-size:13px; margin-top:2px; }
.meet-leo .stars{ color:#FBBF24; letter-spacing:1px; }
/* desktop shows the big portrait + the rating link instead, so hide the card there
   (needed because .meet-leo's display overrides Tailwind's .md\:hidden by source order) */
@media (min-width:768px){ .meet-leo{ display:none !important; } }

/* ---- Brand chips (navy pills, replaces the bullet list) ---------------------- */
.brand-chips{ display:flex; flex-wrap:wrap; gap:8px; margin-top:8px; }
body.ios .brand-chips{ margin-top:0; }
.brand-chip{
  display:inline-flex; align-items:center; gap:6px;
  background:#0B1E3F; color:#fff; border-radius:999px;
  padding:9px 15px; font-size:14px; font-weight:600; text-decoration:none;
  transition:background .15s ease, transform .1s ease;
}
.brand-chip:hover{ background:#1F2A44; }
.brand-chip:active{ transform:translateY(1px); }
.brand-chip.muted{ background:rgba(11,30,63,.06); color:#334155; }
.brand-chip .tag-new{ color:#047857; font-size:10px; font-weight:800; letter-spacing:.04em; }

/* ---- How-it-works: iOS timeline --------------------------------------------- */
.tl{ margin-top:28px; }
.tl-step{ position:relative; padding-left:56px; padding-bottom:24px; }
.tl-step:last-child{ padding-bottom:0; }
.tl-step::before{ content:""; position:absolute; left:19px; top:6px; bottom:-6px; width:2px; background:rgba(226,88,14,.25); }
.tl-step:last-child::before{ display:none; }
.tl-num{
  position:absolute; left:0; top:0; width:40px; height:40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:#E2580E; color:#fff; font:600 15px/1 'JetBrains Mono',ui-monospace,monospace;
  box-shadow:0 6px 14px -6px rgba(255,107,26,.7);
}
.tl-step h3{ font-weight:700; color:#0B1E3F; font-size:17px; letter-spacing:-.01em; }
.tl-step p{ color:#3C3C43; font-size:15px; line-height:1.45; margin-top:4px; }
.tl-step p a{ color:#1F6FB2; font-weight:600; }

/* how-it-works — defined step cards (m22) */
.steps{ display:grid; grid-template-columns:1fr; gap:16px; margin-top:28px; }
@media (min-width:768px){ .steps{ grid-template-columns:repeat(3,1fr); gap:20px; } }
.step-card{
  position:relative; background:#fff; border:1px solid rgba(11,30,63,.10);
  border-radius:18px; padding:22px 20px;
  box-shadow:0 1px 2px rgba(11,30,63,.05), 0 16px 32px -26px rgba(11,30,63,.45);
}
.step-card .step-n{
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:12px;
  background:rgba(200,74,12,.10); color:#C2410C;
  font-family:'JetBrains Mono',ui-monospace,monospace; font-weight:700; font-size:18px;
}
.step-card h3{ margin-top:14px; font-weight:800; color:#0B1E3F; font-size:17px; letter-spacing:-.01em; }
.step-card p{ margin-top:6px; color:#3C3C43; font-size:14.5px; line-height:1.5; }
.step-card p em{ font-style:normal; font-weight:700; color:#0B1E3F; }
/* flow arrow between the step cards on desktop */
@media (min-width:768px){
  .step-card:not(:last-child)::after{
    content:"→"; position:absolute; right:-15px; top:30px; z-index:2;
    color:#C2410C; font-weight:700; font-size:18px;
  }
}

/* ---- Calmer folded explainer cards (dealer comparison / scam checklist) ----- */
details.fold, details.fold-dark{ border-radius:16px; }
details.fold{ background:#fff; border:1px solid rgba(11,30,63,.08); box-shadow:0 1px 2px rgba(11,30,63,.06), 0 12px 26px -20px rgba(11,30,63,.35); }
details.fold-dark{ background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); }
details.fold > summary, details.fold-dark > summary{
  list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:16px 18px; font-weight:700; font-size:16px; min-height:52px;
}
details.fold > summary{ color:#0B1E3F; }
details.fold-dark > summary{ color:#fff; }
details.fold > summary::-webkit-details-marker, details.fold-dark > summary::-webkit-details-marker{ display:none; }
details.fold[open] > summary{ border-bottom:.5px solid rgba(60,60,67,.14); }
details.fold-dark[open] > summary{ border-bottom:.5px solid rgba(255,255,255,.12); }
details.fold .fold-body, details.fold-dark .fold-body{ padding:16px 18px; }
details.fold .cmp-wrap{ border:0 !important; box-shadow:none !important; border-radius:12px; overflow:hidden; }
details.fold > summary .chev, details.fold-dark > summary .chev{ color:#8E8E93; }

/* ============================================================================
   10. iOS grouped drawer menu (.im-*) — the hamburger drawer as an inset
   grouped table (mission-02). Additive, no JS. Light base = #mobileNav …;
   dark = body.ios-chrome #mobileNav … (written to out-rank the §2 overrides
   body.ios-chrome #mobileNav a / p above). Two row grammars only:
   single-column chevron rows (.im-row) and 2-col chevron-less cells (.im-cell).
   ============================================================================ */
#mobileNav.ios-menu{ background:#F2F2F7; }
#mobileNav.ios-menu > nav{ padding:16px 20px 24px; }

/* --- quick actions (action pair, distinct from the destination lists) ------ */
#mobileNav .im-cta{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
#mobileNav .im-btn{
  display:flex; align-items:center; justify-content:center;
  min-height:48px; border-radius:14px;
  font:700 16px/1.2 'Inter',system-ui,sans-serif; text-decoration:none;
  transition:background .12s ease;
}
#mobileNav .im-btn-outline{ color:#0B1E3F; border:1.5px solid rgba(11,30,63,.45); background:transparent; }
body.ios-chrome #mobileNav .im-btn-outline{ color:#fff; border-color:rgba(255,255,255,.45); }
/* the filled button takes .bg-orange1 + text-white in markup so it inherits the
   AA-remediated orange from fonts.css (#C84A0C) — one orange language sitewide */

/* --- section labels --------------------------------------------------------- */
#mobileNav .im-label{
  margin:24px 2px 8px; font:700 12px/1 'Inter',system-ui,sans-serif;
  text-transform:uppercase; letter-spacing:.06em; color:#6E6E73;
}
body.ios-chrome #mobileNav .im-label{ color:rgba(255,255,255,.55); }
#mobileNav .im-cta + .im-label{ margin-top:20px; }

/* --- grouped cards ----------------------------------------------------------- */
#mobileNav .im-group{
  list-style:none; margin:0; padding:0;
  background:#fff; border:1px solid rgba(11,30,63,.08); border-radius:16px;
  overflow:hidden;
}
body.ios-chrome #mobileNav .im-group{ background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.12); }

/* --- single-column rows (chevron grammar) ------------------------------------ */
#mobileNav .im-row{
  position:relative; display:flex; align-items:center;
  min-height:48px; padding:12px 40px 12px 16px;
  font:600 16px/1.3 'Inter',system-ui,sans-serif; color:#1C1C1E; text-decoration:none;
  transition:background .12s ease;
}
#mobileNav .im-strong{ font-weight:700; }
body.ios-chrome #mobileNav .im-row{ color:rgba(255,255,255,.92); }
/* inset hairline between rows (iOS grouped-table look; none under the last row) */
#mobileNav .im-group li + li .im-row::before{
  content:""; position:absolute; left:16px; right:0; top:0;
  border-top:.5px solid rgba(60,60,67,.14);
}
body.ios-chrome #mobileNav .im-group li + li .im-row::before{ border-top-color:rgba(255,255,255,.12); }
/* CSS chevron — maps 1:1 to the single-column grammar */
#mobileNav .im-row::after{
  content:""; position:absolute; right:18px; top:50%;
  width:8px; height:8px;
  border-right:2px solid #C7C7CC; border-top:2px solid #C7C7CC;
  transform:translateY(-50%) rotate(45deg);
}
body.ios-chrome #mobileNav .im-row::after{ border-color:rgba(255,255,255,.35); }

/* --- the one 2-col exception: the brand grid (chevron-less grammar) ---------- */
#mobileNav .im-grid{
  list-style:none; margin:0; padding:0;
  display:grid; grid-template-columns:1fr 1fr;
  border-top:.5px solid rgba(60,60,67,.14);
}
body.ios-chrome #mobileNav .im-grid{ border-top-color:rgba(255,255,255,.12); }
#mobileNav .im-cell{
  display:block; min-height:48px; padding:13px 16px 12px;
  font:600 16px/1.4 'Inter',system-ui,sans-serif; color:#1C1C1E; text-decoration:none;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
  transition:background .12s ease;
}
body.ios-chrome #mobileNav .im-cell{ color:rgba(255,255,255,.92); }
#mobileNav .im-grid .im-span{ grid-column:1 / -1; }
/* grid hairlines: horizontal full-width from row 2 on; vertical divider on left cells */
#mobileNav .im-grid li:nth-child(n+3) .im-cell{ border-top:.5px solid rgba(60,60,67,.14); }
#mobileNav .im-grid li:nth-child(odd):not(.im-span) .im-cell{ border-right:.5px solid rgba(60,60,67,.14); }
body.ios-chrome #mobileNav .im-grid li:nth-child(n+3) .im-cell{ border-top-color:rgba(255,255,255,.12); }
body.ios-chrome #mobileNav .im-grid li:nth-child(odd):not(.im-span) .im-cell{ border-right-color:rgba(255,255,255,.12); }

/* --- press + keyboard states -------------------------------------------------- */
#mobileNav .im-row:active, #mobileNav .im-cell:active, #mobileNav .im-btn-outline:active{ background:rgba(11,30,63,.06); }
body.ios-chrome #mobileNav .im-row:active,
body.ios-chrome #mobileNav .im-cell:active,
body.ios-chrome #mobileNav .im-btn-outline:active{ background:rgba(255,255,255,.08); }
#mobileNav a:focus-visible{ outline:2px solid #0B1E3F; outline-offset:-2px; background:rgba(11,30,63,.06); }
body.ios-chrome #mobileNav a:focus-visible{ outline-color:rgba(255,255,255,.6); background:rgba(255,255,255,.08); }
@media (prefers-reduced-motion: reduce){
  #mobileNav .im-row, #mobileNav .im-cell, #mobileNav .im-btn{ transition:none; }
}

/* ============================================================================
   11. Homepage coherence + quote-sheet stress fixes (mission-04, additive).
   Kickers = the drawer-label grammar promoted to page sections; surface
   alternation + uniform rhythm are homepage-only (body.ios) and mobile-only.
   The .rq-close rules below intentionally override §8's text-button close.
   ============================================================================ */

/* --- kicker orientation labels --------------------------------------------- */
.kicker{
  display:flex; align-items:center; gap:8px;
  font:700 12px/1 'Inter',system-ui,sans-serif;
  text-transform:uppercase; letter-spacing:.08em; color:#C84A0C;
  margin-bottom:10px;
}
.kicker::before{ content:""; width:16px; height:3px; border-radius:2px; background:#E2580E; flex:none; }
.bg-slate2 .kicker, .bg-navy .kicker{ color:#FF8A4C; }
.bg-slate2 .kicker::before, .bg-navy .kicker::before{ background:#FF8A4C; }

/* --- mobile section rhythm + surface alternation (homepage = body.ios) ------ */
@media (max-width:767px){
  body.ios .sec-white{ background:#fff; }
  body.ios main#top > section.bg-paper > .max-w-6xl,
  body.ios main#top > section.bg-paper > .max-w-3xl{ padding-top:2.5rem; padding-bottom:2.5rem; }
}

/* --- quote sheet: iOS close chip (overrides §8 .rq-close) -------------------- */
.rq-head{ position:relative; padding-right:64px; min-height:44px; }
.rq-close{
  position:absolute; top:10px; right:12px;
  width:32px; height:32px; min-width:32px; min-height:32px; padding:0;
  border-radius:50%; background:rgba(0,0,0,.07);
  display:flex; align-items:center; justify-content:center;
  color:#6E6E73; font-size:18px; font-weight:600; line-height:1;
}
.rq-close::before{ content:""; position:absolute; inset:-8px; border-radius:50%; } /* 48px hit area */
.rq-close:hover{ background:rgba(0,0,0,.11); }

/* --- quote sheet: rush step + focus rings ------------------------------------ */
/* the hidden attribute must always win over component display rules (e.g.
   .rq-secondary's display:flex) — §8 guarded .rq-step[hidden] only */
#raxo-quote [hidden]{ display:none; }
.rq-rush-note{ color:#3C3C43; font-size:15px; line-height:1.45; margin:2px 2px 12px; }
.rq-step h2:focus{ outline:none; }
#raxo-quote a:focus-visible, #raxo-quote button:focus-visible{
  outline:2px solid #C84A0C; outline-offset:2px;
}

/* ===================================================================== */
/* §11 — m22 homepage reorg (1b "Control Center" look, Direction A:      */
/*        compressed hero + situation picker in the first mobile screen). */
/* ===================================================================== */

/* compact Leo credential — keeps the named human + face in-fold without
   the tall portrait card eating the first screen (portrait relocates to
   the proof band below) */
.hero-cred{
  display:inline-flex; align-items:center; gap:10px; margin-top:16px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14);
  border-radius:999px; padding:5px 15px 5px 5px; text-decoration:none;
}
.hero-cred img{ width:38px; height:38px; border-radius:50%; object-fit:cover; border:2px solid rgba(255,255,255,.25); }
.hero-cred .nm{ font-weight:700; color:#fff; font-size:14px; }
.hero-cred .stars{ color:#FBBF24; letter-spacing:1px; font-size:13px; }
.hero-cred .rt{ color:rgba(248,250,252,.8); font-size:13px; }

/* the ONE bright element on the navy hero — the situation-picker card */
.picker-card{
  background:#F2F2F7; border-radius:24px; padding:18px 16px 16px;
  box-shadow:0 26px 60px -30px rgba(0,0,0,.65);
}
.picker-h{ font-weight:800; color:#0B1E3F; font-size:19px; letter-spacing:-.015em; }
/* keep the picker tiles 2x2 even on desktop (it sits in a narrow hero column) */
@media (min-width:768px){ .picker-card .sit-grid{ grid-template-columns:1fr 1fr; } }
.picker-sub{ color:#6E6E73; font-size:13px; margin-top:3px; line-height:1.35; }

/* color-coded situation-tile icon chips (override the single-orange .ic) */
.sit-card .ic.ic-lockout{ background:rgba(224,50,42,.12);  color:#E0322A; box-shadow:none; }
.sit-card .ic.ic-akl{     background:rgba(200,74,12,.12);  color:#C2410C; box-shadow:none; }
.sit-card .ic.ic-spare{   background:rgba(30,158,74,.12);  color:#1E9E4A; box-shadow:none; }
.sit-card .ic.ic-fob{     background:rgba(29,111,224,.12); color:#1D6FE0; box-shadow:none; }

/* in-hero mono price + trust teaser line (a real price in-fold; styled as
   plain text, not a fake button — addresses the 14% dead-click rate) */
.price-line{
  font-family:'JetBrains Mono',ui-monospace,monospace; font-weight:600;
  font-size:12.5px; color:#0B1E3F; line-height:1.6; margin-top:14px;
}
.price-line b{ color:#C2410C; }
.price-line .sep{ color:#C7C7CC; padding:0 2px; }
.price-line .ok{ color:#1E9E4A; }

/* "find your make" chip strip — surfaces the top-tapped brands on-page so
   mobile users stop opening the hamburger to hunt them */
.make-strip{ display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.make-chip{
  flex:none; display:inline-flex; align-items:center; white-space:nowrap;
  background:#fff; border:1px solid rgba(11,30,63,.10); border-radius:999px;
  padding:6px 13px; font:600 13px/1 'Inter',system-ui,sans-serif; color:#0B1E3F; text-decoration:none;
  transition:border-color .15s ease, color .15s ease;
}
.make-chip:hover{ border-color:rgba(226,88,14,.4); color:#C2410C; }
.make-chip.all{ background:#0B1E3F; color:#fff; border-color:#0B1E3F; }

/* slim proof band under the hero (relocated portrait + story + trust pills) */
.proof-band{ border-top:1px solid rgba(255,255,255,.10); }
.proof-band .portrait{ max-width:200px; }
@media (min-width:768px){ .proof-band .portrait{ max-width:none; } }

/* featured "MOST COMMON" price card + inline price list (grafted into Pricing) */
.feat-price{ background:#0B1E3F; color:#fff; border-radius:18px; padding:20px; }
.feat-price .badge{
  display:inline-block; background:#FF7A2F; color:#0B1E3F;
  font:800 10px/1 'Inter',system-ui,sans-serif; letter-spacing:.06em; text-transform:uppercase;
  border-radius:999px; padding:4px 9px;
}
.feat-price .lbl{ margin-top:10px; font-weight:700; font-size:15px; }
.feat-price .amt{ font-family:'JetBrains Mono',ui-monospace,monospace; font-weight:700; font-size:40px; line-height:1; margin-top:4px; }
.feat-price .amt small{ font-size:14px; font-weight:600; color:rgba(255,255,255,.7); }
.price-list{ border:1px solid rgba(11,30,63,.10); border-radius:18px; overflow:hidden; background:#fff; }
.price-list .row{ display:flex; justify-content:space-between; align-items:center; gap:12px; padding:12px 16px; border-top:1px solid rgba(60,60,67,.10); font-size:14px; color:#3C3C43; }
.price-list .row:first-child{ border-top:0; }
.price-list .row .amt{ font-family:'JetBrains Mono',ui-monospace,monospace; font-weight:600; color:#C2410C; white-space:nowrap; }

/* neighbourhood chips (service area) */
.hood-chips{ display:flex; flex-wrap:wrap; gap:7px; margin-top:14px; }
.hood-chip{ background:#F2F2F7; color:#3C3C43; border-radius:999px; padding:5px 11px; font-size:12.5px; }
.hood-chip.more{ background:rgba(226,88,14,.10); color:#C2410C; font-weight:600; }

/* scroll-spy active nav underline (desktop) */
@media (min-width:768px){
  header#topbar nav a.nav-active{ color:#0B1E3F; position:relative; }
  header#topbar nav a.nav-active::after{ content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background:#FF6B1A; border-radius:2px; }
}

/* Filled CTA buttons → the 1b button orange #C84A0C (white text passes AA at
   ~4.7:1; the site's bright orange1 #FF6B1A was ~2.85:1 and read brighter than
   the deep-orange price/kicker accents). Scoped to the homepage's 1b look. */
body.ios .btn.bg-orange1{ background-color:#C84A0C; }
body.ios .btn.bg-orange1:hover{ background-color:#AD400A; }

/* ============================================================================
   §12. iOS "1b Bold Brand Cards" component vocabulary (.ios-*)
   ----------------------------------------------------------------------------
   Shared class set for the restyled Pricing + Service-template pages. Values are
   lifted VERBATIM from the prototype (RAXO-iOS-Prototype.dc.html — screen 3a
   pricing ~L819-895, screen 4a service ~L936-1000). Scoped under body.ios so
   nothing outside the restyled pages is touched. Additive + idempotent: every
   selector is new; re-appending this block is a no-op. The prototype nests the
   whole page under `font-size:17px;line-height:1.45`, so its `.NNem` sizes
   resolve against 17px — we re-establish that base on .ios-sec / .ios-navyband
   and express the child sizes in em to stay pixel-faithful on mobile.
   ============================================================================ */

/* ---- section shell: iOS grouped grey + the 17px em base ------------------- */
body.ios .ios-sec{
  background:#F2F2F7;
  font-size:17px; line-height:1.45;
  color:#0F172A;
}

/* ---- navy intro / hero band ------------------------------------------------ */
body.ios .ios-navyband{
  background:#0B1E3F; color:#fff;
  padding:18px 20px 24px;
}
body.ios .ios-navyband h1{
  font-size:1.7em; line-height:1.15; font-weight:800;
  letter-spacing:-.015em; color:#fff; margin:8px 0 0;
}
body.ios .ios-navyband p{
  font-size:.92em; color:rgba(255,255,255,.82); line-height:1.5; margin:10px 0 0;
}

/* ---- eyebrow (uppercase orange kicker on navy) ----------------------------- */
body.ios .ios-eyebrow{
  font-size:.72em; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; color:#FF8A4C;
}

/* ---- grouped white list container ------------------------------------------ */
body.ios .ios-group{
  background:#fff; border-radius:16px; overflow:hidden;
}

/* ---- group label (uppercase muted, sits above a list) ---------------------- */
body.ios .ios-label{
  font-size:.76em; font-weight:600; letter-spacing:.03em;
  text-transform:uppercase; color:#6E6E73; padding:0 4px 7px;
}

/* ---- list row -------------------------------------------------------------- */
body.ios .ios-row{
  position:relative;
  display:flex; justify-content:space-between; align-items:baseline;
  gap:12px; padding:13px 15px;
}
/* .5px inset hairline between rows (none under the last) — left inset 15px.
   Pseudo-element (not border-image) to match this file's .im-row hairline
   grammar and keep the inset crisp at .5px. */
body.ios .ios-row:not(:last-child)::after{
  content:""; position:absolute; left:15px; right:0; bottom:0;
  border-bottom:.5px solid rgba(60,60,67,.16);
}

/* ---- row variant with a 32px leading icon tile ----------------------------- */
body.ios .ios-row--icon{
  align-items:center;   /* icon rows center on their tile, not baseline */
}
/* separator inset ~59px (15px pad + 32px tile + 12px gap) on icon rows */
body.ios .ios-row--icon:not(:last-child)::after{
  left:59px;
}

/* ---- mono price ------------------------------------------------------------ */
body.ios .ios-price{
  font-family:'JetBrains Mono',ui-monospace,monospace;
  font-weight:600; color:#C2410C; white-space:nowrap;
}

/* ---- featured card + "Most common" pill ------------------------------------ */
body.ios .ios-featured{
  position:relative; background:#fff; border-radius:18px; padding:18px;
  border:1.5px solid #FFD9C2;
  box-shadow:0 16px 34px -22px rgba(200,74,12,.55);
}
body.ios .ios-pill-common{
  position:absolute; top:-10px; left:18px;
  background:#C84A0C; color:#fff;
  font-size:.64em; font-weight:800; letter-spacing:.05em; text-transform:uppercase;
  padding:3px 9px; border-radius:999px;
}

/* ---- plain white iOS card -------------------------------------------------- */
body.ios .ios-card{
  background:#fff; border-radius:16px; padding:16px;
}

/* ---- how-it-works vertical timeline ---------------------------------------- */
body.ios .ios-timeline{
  position:relative; padding-left:40px;
}
/* 2px connecting line at left:15px (stops short top+bottom like the proto) */
body.ios .ios-timeline::before{
  content:""; position:absolute; left:15px; top:6px; bottom:24px;
  width:2px; background:rgba(255,107,26,.25);
}
body.ios .ios-tl-step{
  position:relative; margin-bottom:15px;
}
body.ios .ios-tl-step:last-child{ margin-bottom:0; }
/* 32px numbered orange disc */
body.ios .ios-tl-disc{
  position:absolute; left:-40px; top:0;
  width:32px; height:32px; border-radius:50%;
  background:#FF6B1A; color:#fff;
  font-family:'JetBrains Mono',ui-monospace,monospace; font-weight:600; font-size:.82em;
  display:flex; align-items:center; justify-content:center;
}
/* final green check disc */
body.ios .ios-tl-check{
  position:absolute; left:-40px; top:0;
  width:32px; height:32px; border-radius:50%;
  background:#047857; color:#fff;
  font-weight:700; font-size:.9em;
  display:flex; align-items:center; justify-content:center;
}
body.ios .ios-tl-step > .ios-tl-title{
  font-weight:700; font-size:1em; color:#0F172A;
}
body.ios .ios-tl-step > .ios-tl-desc{
  font-size:.85em; color:#6E6E73; line-height:1.45; margin-top:2px;
}

/* ---- 32px green check tile for "what to have ready" rows ------------------- */
body.ios .ios-checktile{
  width:32px; height:32px; flex:none; border-radius:8px;
  background:rgba(4,120,87,.12); color:#047857; font-weight:800;
  display:flex; align-items:center; justify-content:center;
}

/* ---- desktop: cap the 17px em base so grouped lists stay readable ---------- */
@media (min-width:768px){
  body.ios .ios-sec{ font-size:18px; }
  /* the navy band's own em base (it may sit outside .ios-sec) */
  body.ios .ios-navyband{ font-size:17px; }
}
