/* ==========================================================================
   Tradeverse - website design for tradesmen
   Design system + components
   Palette:  navy #001F53 · orange #FF6A00 · yellow #FFD200
   Type:     Bricolage Grotesque (display) · Plus Jakarta Sans (body)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy:        #001F53;
  --navy-deep:   #01152F;
  --navy-mid:    #0A2C63;
  --ink:         #0C1B33;
  --paper:       #FFFFFF;
  --mist:        #F2F5FB;   /* cool light section background */
  --whyme:       #ffffff;
  --mist-2:      #E9EFF9;
  --line:        #E1E8F2;
  --muted:       #55637B;
  --muted-soft:  #8794A9;

  --amber:       #FFB400;
  --yellow:      #FFD200;
  --orange:      #FF6A00;
  --orange-ink:  #E85A00;
  --orange-deep: #D64E00;

  --tick: linear-gradient(135deg, #FFD200 0%, #FF9A00 48%, #FF5E00 100%);
  --cta:  linear-gradient(180deg, #FF7A1A 0%, #FF6100 100%);

  --shadow-sm: 0 1px 2px rgba(4,20,50,.06), 0 2px 6px rgba(4,20,50,.05);
  --shadow-md: 0 10px 30px rgba(4,20,50,.10), 0 2px 6px rgba(4,20,50,.06);
  --shadow-lg: 0 30px 70px rgba(4,20,50,.18), 0 8px 20px rgba(4,20,50,.10);
  --shadow-cta: 0 12px 24px rgba(255,90,0,.28);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-pill: 999px;

  --wrap: 1160px;
  --gap: clamp(1.5rem, 4vw, 3rem);

  --f-display: "Bricolage Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
  --f-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea, button { font-family: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.75rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.75rem, 6vw, 4.5rem); }
.center { text-align: center; }
.lead { font-size: clamp(1.06rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 60ch; }
.center .lead { margin-inline: auto; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 800; line-height: 1.06; letter-spacing: -.02em; color: var(--navy); }
h1 { font-size: clamp(2.35rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); font-weight: 700; letter-spacing: -.01em; }
.kicker { font-family: var(--f-body); font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-ink); }
.mark { color: var(--orange); }
.section-head { max-width: 44ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.center .section-head { margin-inline: auto; }
.section-head h2 + p { margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--f-body); font-weight: 700; font-size: 1.02rem;
  padding: .95rem 1.6rem; border-radius: var(--r-pill); border: 2px solid transparent;
  min-height: 54px; line-height: 1; text-align: center;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  will-change: transform;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--primary { background: var(--cta); color: #fff; box-shadow: var(--shadow-cta); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(255,90,0,.34); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { background: #fff; color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn--onnavy { background: #fff; color: var(--navy); }
.btn--onnavy:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.25); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.08rem; min-height: 60px; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 1.25rem; height: 74px; }
.nav__logo { display: flex; align-items: center; flex: 0 0 auto; }
.nav__logo img { height: 30px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 1.55rem; margin-left: auto; }
.nav__links a { font-weight: 600; font-size: .96rem; color: var(--ink); position: relative; padding: .3rem 0; white-space: nowrap; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--orange); transition: width .2s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 1rem; margin-left: 1.2rem; }
.nav__phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--navy); white-space: nowrap; }
.nav__phone svg { width: 18px; height: 18px; color: var(--orange); }
.nav__toggle { display: none; }

/* mobile nav */
.nav__burger {
  display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; align-items: center; justify-content: center;
  cursor: pointer;
}
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--navy); position: relative; transition: background .2s ease; }
.nav__burger span::before, .nav__burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--navy); transition: transform .2s ease, top .2s ease; }
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }
/* animate to an X when open */
.nav__burger[aria-expanded="true"] span { background: transparent; }
.nav__burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* mobile menu panel: hidden by default, revealed via .open within the breakpoint */
.mobile-menu {
  display: none; position: fixed; inset: 74px 0 auto 0; z-index: 55;
  background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .22s ease, opacity .22s ease;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu ul { padding: .5rem 1.2rem 1.4rem; list-style: none; }
.mobile-menu a { display: block; padding: .95rem .2rem; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 1rem; }

@media (max-width: 900px) {
  .nav__links, .nav__cta .nav__phone { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__cta { margin-left: 0; }
  .nav__cta .btn { padding: .7rem 1rem; min-height: 46px; font-size: .9rem; white-space: nowrap; }
  .mobile-menu { display: block; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(2.5rem, 5vw, 4rem); padding-bottom: clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero__glow {
  position: absolute; z-index: 0; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,150,0,.16), rgba(255,150,0,0) 68%);
  top: -180px; right: -160px; pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__copy { max-width: 42rem; }
.hero h1 { margin-bottom: 1.15rem; }
.hero__sub { font-size: clamp(1.08rem, 1.7vw, 1.28rem); color: var(--muted); max-width: 40ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.9rem; }
.hero__assure { display: flex; flex-wrap: wrap; gap: 1.1rem 1.4rem; margin-top: 1.7rem; }
.hero__assure li { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .95rem; color: var(--navy); }
.hero__assure .tick { flex: 0 0 auto; }

/* tick bullet (brand signature) */
.tick {
  width: 22px; height: 22px; border-radius: 50%; background: var(--tick);
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  box-shadow: 0 2px 5px rgba(255,110,0,.35);
}
.tick svg { width: 12px; height: 12px; color: #fff; }
.tick--lg { width: 30px; height: 30px; }
.tick--lg svg { width: 15px; height: 15px; }

/* ---------- Hero image ---------- */
.hero__media { justify-self: center; width: 100%; max-width: 620px; }
.hero__media picture, .hero__media img { display: block; width: 100%; height: auto; }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { max-width: 100%; margin-inline: auto; }
  .hero__sub { margin-inline: auto; }
  .hero__cta, .hero__assure { justify-content: center; }
  .hero__media { display: none; }
}

/* ---------- (trust strip styles are defined further down) ---------- */


/* ---------- Problem / value ---------- */
.value__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 1rem; }
.vcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm); }
.vcard__n { font-family: var(--f-display); font-weight: 800; font-size: 2.4rem; background: var(--tick); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.vcard h3 { margin: .7rem 0 .4rem; }
.vcard p { color: var(--muted); font-size: .98rem; }
@media (max-width: 800px) { .value__grid { grid-template-columns: 1fr; } }

/* ---------- Included checklist ---------- */
.included { background: var(--mist); }
.incl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1.4rem; margin-top: .5rem; }
.incl {
  display: flex; gap: .9rem; align-items: flex-start; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.1rem 1.2rem; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.incl:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d7e1f0; }
.incl h3 { font-size: 1.06rem; margin-bottom: .2rem; }
.incl p { color: var(--muted); font-size: .93rem; line-height: 1.5; }
.incl__note { margin-top: 1.6rem; text-align: center; font-weight: 600; color: var(--navy); }
.incl__note .mark { font-weight: 800; }
@media (max-width: 720px) { .incl-grid { grid-template-columns: 1fr; } }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 1rem; counter-reset: step; }
.step { position: relative; padding: 1.4rem; border-radius: var(--r-md); background: #fff; border: 1px solid var(--line); }
.step__n { width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color: #fff; font-family: var(--f-display); font-weight: 800; font-size: 1.25rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.step:nth-child(1) .step__n { background: var(--tick); }
.step h3 { margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .95rem; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.pricing { background: var(--navy-deep); color: #fff; position: relative; overflow: hidden; }
.pricing .hero__glow { top: auto; bottom: -220px; left: -160px; right: auto; }
.pricing h2 { color: #fff; }
.pricing .lead { color: rgba(255,255,255,.72); }
.toggle { display: inline-flex; align-items: center; gap: .8rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-pill); padding: .35rem; margin: 1.6rem auto 0; }
.toggle button { border: none; background: transparent; color: rgba(255,255,255,.72); font-weight: 700; padding: .6rem 1.15rem; border-radius: var(--r-pill); transition: .2s; }
.toggle button.active { background: #fff; color: var(--navy); }
.toggle .save { font-size: .78rem; color: var(--navy); background: var(--yellow); padding: .12rem .45rem; border-radius: 20px; margin-left: .3rem; font-weight: 800; }

.plan {
  position: relative; z-index: 1; max-width: 560px; margin: 2.4rem auto 0; background: #fff; color: var(--ink);
  border-radius: var(--r-lg); padding: clamp(1.8rem, 4vw, 2.6rem); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.4);
}
.plan__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.plan__name { font-family: var(--f-display); font-weight: 800; font-size: 1.35rem; color: var(--navy); }
.plan__tag { font-size: .85rem; color: var(--muted); }
.plan__flag { background: var(--tick); color: #fff; font-weight: 800; font-size: .78rem; padding: .35rem .7rem; border-radius: var(--r-pill); letter-spacing: .02em; }
.plan__price { display: flex; align-items: baseline; gap: .5rem; margin: 1.2rem 0 .3rem; }
.plan__amount { font-family: var(--f-display); font-weight: 800; font-size: clamp(3rem, 8vw, 4rem); color: var(--navy); line-height: 1; letter-spacing: -.03em; }
.plan__per { color: var(--muted); font-weight: 600; }
.plan__sub { color: var(--muted); font-size: .95rem; }
.plan__annual-note { color: var(--orange-ink); font-weight: 700; font-size: .92rem; margin-top: .3rem; min-height: 1.2em; }
.plan__list { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1rem; margin: 1.5rem 0; }
.plan__list li { display: flex; gap: .55rem; align-items: flex-start; font-size: .95rem; font-weight: 500; }
.plan__list .tick { width: 18px; height: 18px; margin-top: 2px; }
.plan__list .tick svg { width: 10px; height: 10px; }
.plan .btn { margin-top: .4rem; }
.plan__fine { text-align: center; color: var(--muted); font-size: .86rem; margin-top: .9rem; }
@media (max-width: 560px) { .plan__list { grid-template-columns: 1fr; } }

.compare { max-width: 560px; margin: 1.8rem auto 0; color: rgba(255,255,255,.8); font-size: .95rem; text-align: center; }
.compare b { color: #fff; }

/* ---------- Comparison table ---------- */
.vs-table { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 1.4rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.vs-table th, .vs-table td { padding: 1rem 1.1rem; text-align: left; font-size: .96rem; border-bottom: 1px solid var(--line); }
.vs-table thead th { background: var(--navy); color: #fff; font-family: var(--f-display); font-weight: 700; }
.vs-table thead th.ours { background: var(--tick); }
.vs-table tbody tr:last-child td { border-bottom: none; }
.vs-table td.feat { font-weight: 600; color: var(--navy); }
.vs-table td.ours { background: #FFF8F0; font-weight: 600; }
.vs-table .yes { color: #16A34A; font-weight: 800; }
.vs-table .no { color: #C0392B; font-weight: 700; }
.vs-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 640px) { .vs-table th, .vs-table td { padding: .8rem .7rem; font-size: .88rem; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; margin-bottom: .8rem; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; padding: 1.15rem 1.3rem; background: #fff; border: none; font-weight: 700; font-size: 1.05rem; color: var(--navy); }
.faq__q .ic { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--mist); display: flex; align-items: center; justify-content: center; transition: transform .25s ease, background .25s; }
.faq__q .ic svg { width: 14px; height: 14px; color: var(--navy); }
.faq__item.open .faq__q .ic { transform: rotate(45deg); background: var(--tick); }
.faq__item.open .faq__q .ic svg { color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 1.3rem 1.2rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(140deg, var(--navy) 0%, #06306e 100%); color: #fff; position: relative; overflow: hidden; }
.cta-band .hero__glow { top: -160px; right: -120px; }
.cta-band__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band p { color: rgba(255,255,255,.78); margin-top: .6rem; max-width: 46ch; }
.cta-band__actions { display: flex; flex-direction: column; gap: .8rem; align-items: flex-start; }
.cta-band__phone { color: #fff; font-weight: 700; display: inline-flex; align-items: center; gap: .5rem; }
.cta-band__phone svg { color: var(--amber); width: 18px; height: 18px; }
@media (max-width: 780px) { .cta-band__actions { width: 100%; } .cta-band__actions .btn { width: 100%; } }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.72); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.footer__brand img { height: 34px; width: auto; margin-bottom: 1rem; }
.footer__brand p { font-size: .95rem; max-width: 34ch; }
.footer__contact { margin-top: 1.1rem; display: grid; gap: .5rem; }
.footer__contact a { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-weight: 600; }
.footer__contact svg { width: 16px; height: 16px; color: var(--amber); }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; font-family: var(--f-body); font-weight: 700; letter-spacing: .02em; }
.footer__col a { display: block; padding: .35rem 0; color: rgba(255,255,255,.72); font-size: .95rem; }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .86rem; }
.footer__bottom a:hover { color: #fff; }
.footer__seo { margin-top: 1.2rem; font-size: .82rem; color: rgba(255,255,255,.45); max-width: 90ch; line-height: 1.6; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Skip link ---------- */
.skip { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: .7rem 1rem; z-index: 100; border-radius: 0 0 8px 0; }
.skip:focus { left: 0; }

/* ============================================================
   Trade landing pages + homepage trade hub
   ============================================================ */
.crumbs { font-size: .85rem; color: var(--muted); }
.crumbs a { color: var(--muted); font-weight: 600; }
.crumbs a:hover { color: var(--navy); }
.crumbs span { margin: 0 .45rem; opacity: .5; }
.crumbs .here { color: var(--navy); }

.prose { max-width: 72ch; }
.prose p { color: var(--ink); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.05rem; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--navy); }

/* compact ticked checklist (trade pages) */
.checklist { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .85rem 1.8rem; margin-top: 1.4rem; }
.checklist li { display: flex; gap: .6rem; align-items: flex-start; font-weight: 600; color: var(--navy); }
.checklist li .tick { flex: 0 0 auto; margin-top: 1px; }
@media (max-width: 640px) { .checklist { grid-template-columns: 1fr; } }

/* service grid reuse: trade services use .incl-grid + .incl */

/* trade hub cards (homepage) + related trades (trade pages) */
.tcards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 1.4rem; }
.tcard { display: flex; flex-direction: column; gap: .4rem; padding: 1.35rem 1.3rem; border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; box-shadow: var(--shadow-sm); transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
.tcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #c9d6ea; }
.tcard h3 { font-family: var(--f-display); font-size: 1.15rem; color: var(--navy); }
.tcard p { color: var(--muted); font-size: .92rem; flex: 1; }
.tcard .go { color: var(--orange-ink); font-weight: 700; font-size: .92rem; margin-top: .2rem; }
@media (max-width: 900px) { .tcards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .tcards { grid-template-columns: 1fr; } }

/* ---------- Trust strip (after hero) ---------- */
.trust { background: var(--whyme); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust__inner { display: flex; align-items: center; justify-content: center; gap: clamp(1.6rem, 5vw, 4.5rem); flex-wrap: wrap; padding-block: clamp(1.5rem, 3.4vw, 2rem); }
.trust__item { display: flex; align-items: center; gap: .9rem; }
.trust__item p { font-weight: 700; color: var(--navy); font-size: clamp(.95rem, 1.4vw, 1.05rem); line-height: 1.3; max-width: 16ch; }
.trust__avatars { width: 96px; height: auto; flex: 0 0 auto; }
.trust__ico { width: 50px; height: 50px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.trust__ico svg { width: 25px; height: 25px; }
.trust__ico--shield { background: #FFE7D2; color: var(--orange); }
.trust__ico--star { background: #D9F1E4; color: #1CA46A; }
@media (max-width: 760px) {
  .trust__inner { flex-direction: column; align-items: center; gap: 1.15rem; }
  .trust__item { width: 100%; max-width: 320px; }
  .trust__item p { max-width: none; }
}

/* ---------- Perceived-value: earn-back line ---------- */
.plan__earn { margin-top: .7rem; font-weight: 700; color: var(--orange-ink); font-size: .95rem; }

/* ============================================================
   EXTENDED HOMEPAGE — added sections
   (problem band · trade slider · local SEO · why-us ·
    testimonials · resources · expanded utilities)
   ============================================================ */

/* ---------- Section eyebrow tweaks for wide heads ---------- */
.section-head--wide { max-width: 56ch; }
.center .section-head--wide { margin-inline: auto; }

/* ---------- Problem band ("the real cost") ---------- */
.problem { background: var(--mist); border-top: 1px solid var(--line); }
.problem__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center; }
.problem__prose p { color: var(--muted); font-size: 1.04rem; line-height: 1.7; margin-bottom: 1rem; }
.problem__prose p strong { color: var(--navy); }
.problem__prose .lead { color: var(--ink); font-size: clamp(1.1rem,1.7vw,1.28rem); margin-bottom: 1.15rem; }
.losslist { display: grid; gap: .8rem; margin-top: 1.4rem; }
.lossline { display: flex; gap: .8rem; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--orange); border-radius: var(--r-sm); padding: .9rem 1.05rem; box-shadow: var(--shadow-sm); }
.lossline svg { width: 22px; height: 22px; color: var(--orange); flex: 0 0 auto; margin-top: 2px; }
.lossline p { font-size: .96rem; color: var(--ink); }
.lossline p b { color: var(--navy); }
@media (max-width: 820px) { .problem__grid { grid-template-columns: 1fr; } }

/* ---------- Trade slider (signature showcase) ---------- */
.showcase { background: #fff; }
.slider { position: relative; margin-top: 1.8rem; }
.slider__viewport { overflow: hidden; border-radius: var(--r-lg); }
.slider__track { display: flex; will-change: transform; transition: transform .55s cubic-bezier(.45,.05,.2,1); }
.slide { min-width: 100%; box-sizing: border-box; }
.slide__inner { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(1.5rem, 4vw, 3.2rem); align-items: center; padding: clamp(1.2rem, 3vw, 2rem); background: var(--mist); border: 1px solid var(--line); border-radius: var(--r-lg); }
.slide__copy .kicker { color: var(--acc-ink, var(--orange-ink)); }
.slide__copy h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--navy); margin: .5rem 0 .7rem; }
.slide__copy p { color: var(--muted); font-size: 1.02rem; max-width: 42ch; }
.slide__pills { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.1rem 0 1.4rem; }
.slide__pills span { font-size: .82rem; font-weight: 700; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: .4rem .8rem; }
.slide__actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.slide__link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 800; color: var(--acc-ink, var(--orange-ink)); }
.slide__link svg { width: 1em; height: 1em; transition: transform .18s ease; }
.slide__link:hover svg { transform: translateX(3px); }

/* browser mockup */
.mock { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: #fff; }
.mock__bar { display: flex; align-items: center; gap: 7px; padding: 10px 12px; background: #eef2f9; border-bottom: 1px solid var(--line); }
.mock__dot { width: 10px; height: 10px; border-radius: 50%; background: #cdd6e6; }
.mock__dot--r { background: #ff6259; } .mock__dot--y { background: #ffbd2e; } .mock__dot--g { background: #29c940; }
.mock__url { margin-left: 8px; flex: 1; background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); font-size: .72rem; color: var(--muted-soft); padding: .28rem .7rem; display: flex; align-items: center; gap: .35rem; overflow: hidden; white-space: nowrap; }
.mock__url svg { width: 11px; height: 11px; color: #29c940; flex: 0 0 auto; }
.mock__body { background: #fff; }
.mock__nav { display: flex; align-items: center; gap: .6rem; padding: .8rem 1.1rem; border-bottom: 1px solid rgba(0,0,0,.05); }
.mock__brand { display: flex; align-items: center; gap: .5rem; font-family: var(--f-display); font-weight: 800; font-size: .95rem; color: var(--acc, var(--navy)); }
.mock__logo { width: 26px; height: 26px; border-radius: 8px; background: var(--acc, var(--navy)); color: #fff; display: grid; place-items: center; font-size: .8rem; font-weight: 800; }
.mock__navlinks { margin-left: auto; display: flex; gap: .8rem; }
.mock__navlinks span { width: 34px; height: 7px; border-radius: 4px; background: #e7edf6; }
.mock__call { font-size: .72rem; font-weight: 800; color: #fff; background: var(--acc, var(--navy)); padding: .32rem .6rem; border-radius: var(--r-pill); }
.mock__hero { position: relative; padding: 1.5rem 1.3rem 1.6rem; background:
   linear-gradient(135deg, var(--acc-soft, #eef2f9), #fff 85%); }
.mock__eyebrow { font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--acc-ink, var(--orange-ink)); }
.mock__h { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.15rem, 2.4vw, 1.55rem); line-height: 1.1; color: var(--navy); margin: .45rem 0 .55rem; max-width: 20ch; letter-spacing: -.02em; }
.mock__sub { font-size: .8rem; color: var(--muted); max-width: 30ch; margin-bottom: .9rem; }
.mock__cta { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 800; color: #fff; background: var(--acc, var(--navy)); padding: .5rem .95rem; border-radius: var(--r-pill); box-shadow: 0 8px 16px rgba(0,0,0,.12); }
.mock__stars { display: inline-flex; align-items: center; gap: .3rem; margin-left: .7rem; font-size: .72rem; font-weight: 700; color: var(--muted); }
.mock__stars svg { width: 12px; height: 12px; color: #FFB400; }
.mock__chips { display: flex; flex-wrap: wrap; gap: .4rem; padding: 1rem 1.3rem 1.4rem; }
.mock__chips span { font-size: .7rem; font-weight: 700; color: var(--acc-ink, var(--navy)); background: var(--acc-soft, #eef2f9); border-radius: var(--r-pill); padding: .3rem .65rem; }

@media (max-width: 860px) {
  .slide__inner { grid-template-columns: 1fr; }
  .slide__media { order: -1; }
  .slide__copy p { max-width: none; }
}

/* slider controls */
.slider__controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.4rem; }
.slider__btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--navy); display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: transform .16s ease, border-color .16s ease, background .16s; }
.slider__btn:hover { transform: translateY(-2px); border-color: var(--navy); }
.slider__btn svg { width: 20px; height: 20px; }
.slider__dots { display: flex; align-items: center; gap: .5rem; }
.slider__dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: #cdd6e6; padding: 0; transition: width .25s ease, background .25s ease; }
.slider__dot.active { width: 26px; border-radius: var(--r-pill); background: var(--tick); }
.slider__count { font-weight: 700; color: var(--muted); font-size: .9rem; min-width: 3.5ch; text-align: center; }

/* full trades list under slider */
.alltrades { margin-top: 2.2rem; }
.alltrades__label { text-align: center; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.alltrades__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; }
.tradechip { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; font-size: .92rem; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: .55rem 1rem; box-shadow: var(--shadow-sm); transition: transform .15s ease, border-color .15s ease, color .15s; }
.tradechip:hover { transform: translateY(-2px); border-color: var(--orange); color: var(--orange-ink); }
.tradechip .tick { width: 18px; height: 18px; }
.tradechip .tick svg { width: 9px; height: 9px; }

/* ---------- Local SEO ---------- */
.lseo__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center; }
.lseo__points { display: grid; gap: 1.1rem; margin-top: 1.4rem; }
.lseo__pt { display: flex; gap: .9rem; align-items: flex-start; }
.lseo__ico { width: 42px; height: 42px; border-radius: 12px; background: var(--mist); color: var(--orange); display: grid; place-items: center; flex: 0 0 auto; }
.lseo__ico svg { width: 21px; height: 21px; }
.lseo__pt h3 { font-size: 1.08rem; margin-bottom: .2rem; }
.lseo__pt p { color: var(--muted); font-size: .95rem; }

/* map-pack mockup */
.mappack { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.mappack__search { display: flex; align-items: center; gap: .6rem; padding: .9rem 1.1rem; border-bottom: 1px solid var(--line); }
.mappack__searchbox { flex: 1; background: var(--mist); border-radius: var(--r-pill); padding: .5rem .9rem; font-size: .85rem; color: var(--navy); font-weight: 600; display: flex; align-items: center; gap: .5rem; }
.mappack__searchbox svg { width: 15px; height: 15px; color: var(--muted-soft); }
.mappack__map { position: relative; height: 128px; background:
   linear-gradient(0deg, #e7eef7, #e7eef7), 
   repeating-linear-gradient(90deg, #dbe4f1 0 1px, transparent 1px 46px),
   repeating-linear-gradient(0deg, #dbe4f1 0 1px, transparent 1px 42px);
   background-blend-mode: normal; border-bottom: 1px solid var(--line); overflow: hidden; }
.mappack__road { position: absolute; background: #fff; }
.mappack__road--1 { height: 8px; width: 140%; top: 44%; left: -20%; transform: rotate(-8deg); }
.mappack__road--2 { width: 8px; height: 160%; left: 62%; top: -30%; transform: rotate(6deg); }
.mappack__pin { position: absolute; width: 26px; height: 26px; transform: translate(-50%, -100%); color: var(--orange); filter: drop-shadow(0 3px 4px rgba(0,0,0,.25)); }
.mappack__pin svg { width: 100%; height: 100%; }
.mappack__pin--you { color: var(--orange); width: 32px; height: 32px; z-index: 2; }
.mappack__pin--o { color: #9fb0c9; }
.mappack__list { padding: .4rem 0; }
.mappack__row { display: flex; align-items: center; gap: .8rem; padding: .7rem 1.1rem; border-bottom: 1px solid var(--line); }
.mappack__row:last-child { border-bottom: none; }
.mappack__row--you { background: #FFF8F0; }
.mappack__rank { width: 24px; height: 24px; border-radius: 50%; background: var(--mist); color: var(--muted); font-weight: 800; font-size: .78rem; display: grid; place-items: center; flex: 0 0 auto; }
.mappack__row--you .mappack__rank { background: var(--tick); color: #fff; }
.mappack__info { flex: 1; min-width: 0; }
.mappack__name { font-weight: 800; font-size: .9rem; color: var(--navy); }
.mappack__row--you .mappack__name { color: var(--orange-ink); }
.mappack__meta { display: flex; align-items: center; gap: .3rem; font-size: .76rem; color: var(--muted); }
.mappack__meta svg { width: 12px; height: 12px; color: #FFB400; }
.mappack__you-badge { font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: #fff; background: var(--tick); padding: .18rem .5rem; border-radius: var(--r-pill); }
@media (max-width: 860px) { .lseo__grid { grid-template-columns: 1fr; } .lseo__media { order: -1; } }

/* ---------- Testimonials ---------- */
.testis__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 1rem; }
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.5rem 1.4rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.testi__stars { display: flex; gap: .15rem; margin-bottom: .8rem; }
.testi__stars svg { width: 17px; height: 17px; color: #FFB400; }
.testi__quote { color: var(--ink); font-size: 1rem; line-height: 1.6; flex: 1; }
.testi__who { display: flex; align-items: center; gap: .7rem; margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.testi__av { width: 42px; height: 42px; border-radius: 50%; background: var(--tick); color: #fff; display: grid; place-items: center; font-family: var(--f-display); font-weight: 800; flex: 0 0 auto; }
.testi__name { font-weight: 800; color: var(--navy); font-size: .95rem; line-height: 1.2; }
.testi__role { font-size: .82rem; color: var(--muted); }
@media (max-width: 880px) { .testis__grid { grid-template-columns: 1fr; } }

/* ---------- Why us ---------- */
.whyus { background: var(--mist); }
.whyus__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 1rem; }
.whyus__card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.6rem 1.45rem; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s; }
.whyus__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.whyus__ico { width: 48px; height: 48px; border-radius: 14px; background: var(--tick); color: #fff; display: grid; place-items: center; margin-bottom: 1rem; }
.whyus__ico svg { width: 24px; height: 24px; }
.whyus__card h3 { margin-bottom: .4rem; }
.whyus__card p { color: var(--muted); font-size: .96rem; }
@media (max-width: 880px) { .whyus__grid { grid-template-columns: 1fr; } }

/* ---------- Resources ---------- */
.res__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: 1rem; }
.rcard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s, border-color .2s; }
.rcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #c9d6ea; }
.rcard__thumb { height: 116px; display: grid; place-items: center; position: relative; background: linear-gradient(135deg, var(--navy), #06306e); overflow: hidden; }
.rcard__thumb svg { width: 46px; height: 46px; color: rgba(255,255,255,.9); position: relative; z-index: 1; }
.rcard__thumb::after { content: ""; position: absolute; width: 150px; height: 150px; border-radius: 50%; background: radial-gradient(circle, rgba(255,150,0,.4), transparent 70%); top: -40px; right: -30px; }
.rcard__thumb--o { background: linear-gradient(135deg, #FF7A1A, #E85A00); }
.rcard__thumb--t { background: linear-gradient(135deg, #0A2C63, #12488f); }
.rcard__body { padding: 1.2rem 1.25rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.rcard__tag { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-ink); }
.rcard h3 { font-size: 1.12rem; margin: .45rem 0 .5rem; line-height: 1.2; }
.rcard p { color: var(--muted); font-size: .93rem; flex: 1; }
.rcard__foot { margin-top: 1rem; font-weight: 800; font-size: .88rem; color: var(--muted-soft); display: inline-flex; align-items: center; gap: .4rem; }
.rcard__soon { font-size: .72rem; font-weight: 800; color: var(--orange-ink); background: #FFF1E4; border-radius: var(--r-pill); padding: .28rem .7rem; align-self: flex-start; }
.rcard__link { margin-top: 1rem; align-self: flex-start; font-weight: 800; font-size: .9rem; color: var(--orange-ink); display: inline-flex; align-items: center; gap: .4rem; }
.rcard__link svg { width: 1.05em; height: 1.05em; transition: transform .18s ease; }
.rcard:hover .rcard__link svg { transform: translateX(4px); }
@media (max-width: 880px) { .res__grid { grid-template-columns: 1fr; } }

/* ---------- Anchor offset for sticky header ---------- */
:target { scroll-margin-top: 90px; }

/* ---------- Mini in-prose CTA link ---------- */
.inline-cta { color: var(--orange-ink); font-weight: 800; border-bottom: 2px solid rgba(232,90,0,.25); transition: border-color .18s; }
.inline-cta:hover { border-color: var(--orange-ink); }

/* ---------- Slider overflow hardening (prevent blow-out on mobile) ---------- */
.slide__inner { min-width: 0; }
.slide__inner > * { min-width: 0; }
.slide__media, .slide__copy { min-width: 0; }
.mock { max-width: 100%; }
.mock__nav { flex-wrap: nowrap; }
.mock__brand { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock__url { min-width: 0; }
@media (max-width: 520px) {
  .mock__navlinks { display: none; }
  .slide__copy p { overflow-wrap: break-word; }
}

/* ==========================================================================
   Get a demo page  (merged in from demo.css)
   ========================================================================== */

/* ---------- Demo hero ---------- */
.demo-hero {
  background: linear-gradient(158deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; position: relative; overflow: hidden;
  padding-block: clamp(2.6rem, 6vw, 4.5rem);
}
.demo-hero .hero__glow { top: -200px; right: -140px; }
.demo-hero .hero__glow--2 {
  top: auto; bottom: -260px; left: -200px; right: auto;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,90,0,.14), rgba(255,90,0,0) 68%);
}
.demo-hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.demo-hero__copy { max-width: 620px; }
.demo-hero h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 3rem); }
.demo-hero__sub {
  color: rgba(255,255,255,.82); margin-top: .9rem;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem); max-width: 52ch;
}
.demo-hero__assure { display: flex; flex-wrap: wrap; gap: .75rem 1.3rem; margin-top: 1.5rem; }
.demo-hero__assure li { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .95rem; }

/* social-proof card (desktop only) fills the hero's right side */
.demo-proof {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.demo-proof__stars { display: inline-flex; gap: .18rem; color: var(--yellow); }
.demo-proof__stars svg { width: 20px; height: 20px; }
.demo-proof__rating { margin-top: .55rem; font-family: var(--f-display); font-weight: 800; font-size: 1.55rem; color: #fff; line-height: 1; }
.demo-proof__rating span { color: rgba(255,255,255,.7); font-family: var(--f-body); font-weight: 600; font-size: .92rem; }
.demo-proof > p { color: rgba(255,255,255,.82); font-size: .98rem; margin-top: .55rem; }
.demo-proof__people { display: flex; align-items: center; gap: .85rem; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.14); }
.demo-proof__people img { width: 118px; height: auto; flex: 0 0 auto; }
.demo-proof__people span { font-weight: 700; color: #fff; font-size: .9rem; line-height: 1.35; }

@media (max-width: 860px) {
  .demo-hero__inner { grid-template-columns: 1fr; }
  .demo-proof { display: none; }
}

/* ---------- Form shell ---------- */
.form-section { background: var(--mist); padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.form-shell {
  max-width: 760px; margin-inline: auto; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
}

/* progress */
.progress { padding: 1.4rem clamp(1.2rem, 4vw, 2.2rem) 0; }
.progress__bar { height: 8px; background: var(--mist-2); border-radius: var(--r-pill); overflow: hidden; }
.progress__fill { height: 100%; width: 20%; background: var(--tick); border-radius: var(--r-pill); transition: width .35s ease; }
.progress__meta { display: flex; justify-content: space-between; align-items: center; margin-top: .7rem; font-size: .85rem; color: var(--muted); font-weight: 600; }
.progress__step { color: var(--navy); }

/* step */
.form-body { padding: clamp(1.4rem, 4vw, 2.2rem); }
.step-panel { display: none; animation: fade .3s ease; }
.step-panel.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.step-panel h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.step-panel > p.hint { color: var(--muted); margin: .5rem 0 1.6rem; }

/* fields */
.field { margin-bottom: 1.3rem; }
.field > label, .field__label { display: block; font-weight: 700; color: var(--navy); margin-bottom: .5rem; font-size: 1rem; }
.field .sub { font-weight: 500; color: var(--muted); font-size: .88rem; }
.req { color: var(--orange); }

.input, .select, .textarea {
  width: 100%; padding: .9rem 1rem; font-size: 1rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,106,0,.12); }
.input::placeholder, .textarea::placeholder { color: var(--muted-soft); }
.textarea { min-height: 120px; resize: vertical; }
.select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23001F53' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.8rem;
}
.hidden { display: none !important; }

/* radio / choice cards */
.choices { display: grid; gap: .7rem; }
.choices--2 { grid-template-columns: 1fr 1fr; }
.choices--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 560px) { .choices--2, .choices--3 { grid-template-columns: 1fr; } }
.choice {
  position: relative; display: flex; align-items: center; gap: .7rem; padding: .95rem 1.1rem;
  border: 1.5px solid var(--line); border-radius: var(--r-sm); background: #fff; cursor: pointer;
  font-weight: 600; color: var(--navy); transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.choice:hover { border-color: #c9d6ea; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice__box { width: 22px; height: 22px; border: 2px solid var(--line); border-radius: 6px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; transition: .16s; }
.choice--radio .choice__box { border-radius: 50%; }
.choice__box svg { width: 13px; height: 13px; color: #fff; opacity: 0; transition: opacity .12s; }
.choice input:checked ~ .choice__box { background: var(--tick); border-color: transparent; }
.choice input:checked ~ .choice__box svg { opacity: 1; }
.choice:has(input:checked) { border-color: var(--orange); background: #FFF8F0; box-shadow: 0 0 0 3px rgba(255,106,0,.1); }
.choice:focus-within { border-color: var(--orange); }
.choice small { display: block; font-weight: 500; color: var(--muted); font-size: .84rem; }
.choice--consent { align-items: flex-start; }
.choice--consent .choice__box { margin-top: 1px; }
.choice__consent-text { font-weight: 500; color: var(--muted); line-height: 1.5; }

/* chips (multi-select) */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  position: relative; cursor: pointer; border: 1.5px solid var(--line); background: #fff;
  padding: .7rem 1.05rem; border-radius: var(--r-pill); font-weight: 600; color: var(--navy);
  display: inline-flex; align-items: center; gap: .45rem; transition: .16s;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip:hover { border-color: #c9d6ea; }
.chip:focus-within { border-color: var(--orange); }
.chip:has(input:checked) { border-color: transparent; background: var(--navy); color: #fff; }
.chip:has(input:checked)::before { content: "✓"; font-weight: 800; color: var(--yellow); }

/* nav buttons */
.form-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.8rem; }
.form-nav .btn--back { background: #fff; color: var(--navy); border: 2px solid var(--line); box-shadow: none; }
.form-nav .btn--back:hover { border-color: var(--navy); transform: translateY(-2px); }
.form-nav .spacer { flex: 1; }
.form-nav .btn { white-space: nowrap; }

@media (max-width: 560px) {
  .form-nav { flex-direction: column-reverse; align-items: stretch; gap: .8rem; }
  .form-nav .spacer { display: none; }
  .form-nav .btn { width: 100%; white-space: normal; }
}

.error-msg { color: #C0392B; font-weight: 600; font-size: .9rem; margin-top: .5rem; display: none; }
.error-msg.show { display: block; }
.field.invalid .input, .field.invalid .select { border-color: #C0392B; }
.field.invalid .input:focus, .field.invalid .select:focus { box-shadow: 0 0 0 4px rgba(192,57,43,.12); }

/* review summary */
.review { background: var(--mist); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.2rem 1.3rem; margin-bottom: 1.4rem; }
.review h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.review dl { display: grid; grid-template-columns: auto 1fr; gap: .35rem .9rem; font-size: .92rem; }
.review dt { color: var(--muted); font-weight: 600; }
.review dd { color: var(--navy); font-weight: 600; }

/* success */
.success { display: none; text-align: center; padding: clamp(2rem, 6vw, 3.5rem); }
.success.show { display: block; }
.success__tick { width: 84px; height: 84px; border-radius: 50%; background: var(--tick); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.4rem; box-shadow: var(--shadow-cta); }
.success__tick svg { width: 42px; height: 42px; color: #fff; }
.success h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); }
.success p { color: var(--muted); max-width: 46ch; margin: .8rem auto 0; }
.success .btn { margin-top: 1.6rem; }

/* trust row under form */
.form-trust { max-width: 760px; margin: 1.4rem auto 0; text-align: center; color: var(--muted); font-size: .9rem; }
.form-trust a { color: var(--navy); font-weight: 700; }

.submitting { opacity: .6; pointer-events: none; }
