/* =====================================================================
   Sketchy Garage Doors — styles.css
   Dark near-black (#15171a) + hazard-yellow (#ffd21e) industrial system.
   Self-contained (Hostinger static). Tokens + components + motion CSS.
   Distinct from siblings: hazard-tape motif, Space Grotesk display, sharp
   high-contrast panels, crisp/snappy motion.
   ===================================================================== */

:root {
  /* ---- Brand (Sketchy) ---- */
  --brand:        #15171a;   /* near-black */
  --brand-dark:   #0c0d0f;
  --brand-light:  #f4f5f6;
  --accent:       #ffd21e;   /* hazard yellow */
  --accent-dark:  #e0b300;
  --accent-rgb:   255,210,30;
  --accent-text:  #7a5c00;   /* amber text that passes AA on white */

  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* ---- Shared neutrals ---- */
  --ink:        #15171a;
  --ink-soft:   #4a5060;
  --line:       #e4e7ec;
  --line-dark:  #2a2e35;
  --bg:         #ffffff;
  --bg-soft:    #f6f7f9;
  --white:      #ffffff;
  --success:    #1f9d57;

  /* spacing (8pt) */
  --s-1:.25rem; --s-2:.5rem; --s-3:.75rem; --s-4:1rem; --s-5:1.5rem;
  --s-6:2rem; --s-7:3rem; --s-8:4rem; --s-9:6rem; --s-10:8rem;

  --r-sm:6px; --r-md:12px; --r-lg:18px; --r-xl:26px; --r-pill:999px;
  --shadow-sm: 0 1px 2px rgba(12,13,15,.06), 0 1px 3px rgba(12,13,15,.08);
  --shadow-md: 0 6px 18px rgba(12,13,15,.10), 0 2px 6px rgba(12,13,15,.06);
  --shadow-lg: 0 22px 50px rgba(12,13,15,.18);
  --shadow-yellow: 0 10px 30px rgba(224,179,0,.35);
  --ease: cubic-bezier(.16,1,.3,1);
  --dur: .22s;

  --t-xs:.8125rem; --t-sm:.9375rem; --t-base:1rem; --t-lg:1.125rem;
  --t-xl: clamp(1.25rem, 1.1rem + .6vw, 1.55rem);
  --t-2xl: clamp(1.7rem, 1.3rem + 1.6vw, 2.5rem);
  --t-3xl: clamp(2.1rem, 1.5rem + 3vw, 3.6rem);
  --container: 1160px;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; }
body {
  margin: 0; color: var(--ink); background: var(--bg);
  font-family: var(--font-body); font-size: var(--t-base); line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.1; color: var(--ink); margin: 0 0 var(--s-4); font-weight: 700; }
h1 { font-size: var(--t-3xl); letter-spacing: -.02em; }
h2 { font-size: var(--t-2xl); letter-spacing: -.015em; }
h3 { font-size: var(--t-xl); letter-spacing: -.01em; }
p  { margin: 0 0 var(--s-4); color: var(--ink-soft); }
a  { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0 0 var(--s-4); padding-left: 1.1rem; }
li { margin-bottom: .35rem; }
strong { color: var(--ink); }
svg { width: 1.25em; height: 1.25em; flex: none; }

:focus-visible { outline: 3px solid var(--accent-dark); outline-offset: 2px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--accent); color: #000; padding: .6rem 1rem; z-index: 200; font-weight: 700; }
.skip-link:focus { left: .5rem; top: .5rem; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.section { padding-block: var(--s-9); }
.section--tight { padding-block: var(--s-7); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--brand); color: #fff; }
.section--dark h1,.section--dark h2,.section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.8); }
.center { text-align: center; }
.lead { font-size: var(--t-lg); color: var(--ink-soft); max-width: 60ch; }
.section--dark .lead { color: rgba(255,255,255,.85); }
.mx-auto { margin-inline: auto; }
.maxw { max-width: 64ch; }

.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; font-size: var(--t-xs);
  color: var(--accent-text); margin-bottom: var(--s-3);
}
.section--dark .eyebrow, .hero .eyebrow { color: var(--accent); }

/* ---- Hazard tape divider ---- */
.hazard {
  height: 12px;
  background: repeating-linear-gradient(-45deg, var(--accent) 0 22px, #15171a 22px 44px);
}
.hazard--thin { height: 7px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 700; font-size: var(--t-base);
  padding: .9rem 1.6rem; border-radius: var(--r-pill); border: 2px solid transparent;
  cursor: pointer; line-height: 1; text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #15171a; box-shadow: var(--shadow-yellow); }
.btn--primary:hover { background: #ffdb4a; box-shadow: 0 14px 34px rgba(224,179,0,.45); }
.btn--dark { background: var(--brand); color: #fff; }
.btn--dark:hover { background: #000; box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--on-dark:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--lg { font-size: var(--t-lg); padding: 1.05rem 2rem; }
.btn--block { width: 100%; }

/* ---- Header ---- */
.site-header { position: sticky; top: 0; z-index: 80; background: var(--brand); color: #fff; border-bottom: 1px solid var(--line-dark); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); padding-block: .7rem; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: #fff; letter-spacing: -.01em; line-height: 1.08; }
.brand:hover { text-decoration: none; }
.brand__mark { width: 34px; height: 34px; border-radius: 9px; background: var(--accent); color: #15171a; display: grid; place-items: center; flex: none; font-weight: 800; }
.brand__mark svg { width: 1.3rem; height: 1.3rem; }
.brand b { color: var(--accent); }
.nav__links { display: flex; gap: var(--s-5); align-items: center; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: rgba(255,255,255,.85); font-weight: 600; font-size: var(--t-sm); }
.nav__links a:hover { color: #fff; }
.nav__actions { display: flex; align-items: center; gap: .6rem; }
.nav__call { display: inline-flex; align-items: center; gap: .4rem; background: var(--accent); color: #15171a; padding: .55rem 1.05rem; border-radius: var(--r-pill); font-family: var(--font-head); font-weight: 700; font-size: var(--t-sm); white-space: nowrap; flex: none; }
.nav__call:hover { background: #ffdb4a; text-decoration: none; }
.nav__cta-row { display: none; }
.nav__toggle { display: none; background: transparent; border: 1px solid rgba(255,255,255,.3); color: #fff; border-radius: 8px; padding: .4rem .5rem; cursor: pointer; }
.nav__toggle svg { width: 1.5rem; height: 1.5rem; }

/* ---- Hero (layout-c: split editorial, dark) ---- */
.hero { position: relative; background: var(--brand); color: #fff; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s-7); align-items: center; padding-block: var(--s-9); }
.hero__copy { position: relative; z-index: 2; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero h1 .hl { color: var(--accent); }
.hero p { color: rgba(255,255,255,.84); font-size: var(--t-lg); max-width: 48ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: var(--s-5); }
.hero__micro { margin-top: var(--s-5); display: flex; flex-wrap: wrap; gap: .5rem .9rem; align-items: center; font-size: var(--t-sm); color: rgba(255,255,255,.82); }
.hero__micro .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.hero__media { position: relative; }
.hero__media .frame { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 3px solid var(--accent); aspect-ratio: 4/3.4; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge { position: absolute; left: -14px; bottom: 22px; background: var(--accent); color: #15171a; font-family: var(--font-head); font-weight: 700; padding: .7rem 1rem; border-radius: 14px; box-shadow: var(--shadow-md); font-size: var(--t-sm); max-width: 60%; line-height: 1.2; }
.hero__glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 50% at 80% 10%, rgba(255,210,30,.14), transparent 70%); }

/* ---- Trust strip ---- */
.trustbar { background: var(--brand-dark); color: #fff; }
.trustbar__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--s-4); padding-block: var(--s-5); }
.trustbar__item { display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: var(--t-sm); color: rgba(255,255,255,.9); }
.trustbar__item svg { color: var(--accent); width: 1.4rem; height: 1.4rem; }

/* ---- Cards / grids ---- */
.grid { display: grid; gap: var(--s-5); }
.grid--2 { grid-template-columns: repeat(2,1fr); }
.grid--3 { grid-template-columns: repeat(3,1fr); }
.grid--4 { grid-template-columns: repeat(4,1fr); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-6); box-shadow: var(--shadow-sm); transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease); display: flex; flex-direction: column; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: #d7dbe2; }
.card h3 { margin-bottom: .4rem; }
.card p { font-size: var(--t-sm); margin-bottom: var(--s-4); }
.card__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--brand); color: var(--accent); display: grid; place-items: center; margin-bottom: var(--s-4); }
.card__icon svg { width: 1.5rem; height: 1.5rem; }
.card__link { margin-top: auto; font-family: var(--font-head); font-weight: 700; font-size: var(--t-sm); color: var(--ink); display: inline-flex; align-items: center; gap: .35rem; }
.card__link:hover { color: var(--accent-text); }
.card--service { border-top: 4px solid var(--accent); }

/* Image cards — photo banner on top, content below (replaces icon squares) */
.card--img { padding: 0; overflow: hidden; border-top: none; }
.card--img .card__pic { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--brand); }
.card--img .card__pic img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.card--img:hover .card__pic img { transform: scale(1.06); }
.card--img .card__pic::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,13,15,0) 55%, rgba(12,13,15,.45)); }
.card--img .card__pic .card__badge { position: absolute; left: 12px; top: 12px; z-index: 2; background: var(--accent); color: #15171a; font-family: var(--font-head); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; padding: .28rem .6rem; border-radius: var(--r-sm); }
.card--img .card__body { padding: var(--s-5) var(--s-6) var(--s-6); display: flex; flex-direction: column; flex: 1; }
.card--img .card__body h3 { margin-bottom: .4rem; }

/* Opener "pick the right opener" picker */
.openers { display: grid; gap: var(--s-4); }
.opener { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow var(--dur) ease, transform var(--dur) ease; }
.opener:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.opener__main { display: grid; grid-template-columns: 190px 1fr; gap: var(--s-5); padding: var(--s-5); align-items: center; }
.opener__img { width: 190px; height: 170px; object-fit: contain; background: #fff; border-radius: var(--r-md); padding: 0; }
.opener__info { min-width: 0; }
.opener__tag { display: inline-block; font-family: var(--font-head); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; color: var(--accent-text); margin-bottom: .25rem; }
.opener h3 { margin: 0 0 .3rem; font-size: var(--t-lg); }
.opener__spec { color: var(--ink-soft); font-size: var(--t-sm); margin: 0 0 .55rem; }
.opener__price { font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: var(--t-xl); margin: .2rem 0 .55rem; }
.opener__pills { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: .6rem 0 0; padding: 0; }
.opener__pills li { margin: 0; font-size: .78rem; font-weight: 600; padding: .28rem .65rem; border-radius: var(--r-pill); background: var(--bg-soft); color: var(--ink-soft); border: 1px solid var(--line); }
.opener__pills li.is-feature { background: var(--brand); color: var(--accent); border-color: transparent; }
.opener__foot { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .75rem var(--s-5); border-top: 1px solid var(--line); background: var(--bg-soft); flex-wrap: wrap; }
.opener__foot span { color: var(--ink-soft); }
.opener__foot a { font-weight: 700; font-size: var(--t-sm); color: var(--brand-dark); display: inline-flex; align-items: center; gap: .35rem; font-family: var(--font-head); }
.opener__quote { color: var(--accent-text) !important; }
.openers__toggle { width: 100%; justify-content: center; border-style: dashed; }
@media (max-width: 560px) {
  .opener__main { grid-template-columns: 1fr; }
  .opener__img { width: 100%; height: 210px; }
}

/* feature/list pills */
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.checks li { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink-soft); margin: 0; }
.checks svg { color: var(--success); flex: none; margin-top: .15rem; }
.section--dark .checks li { color: rgba(255,255,255,.85); }
.section--dark .checks svg { color: var(--accent); }

.pills { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: var(--s-4) 0 0; }
.pills li { margin: 0; font-size: var(--t-sm); font-weight: 600; padding: .35rem .8rem; border-radius: var(--r-pill); background: var(--bg-soft); border: 1px solid var(--line); }

/* ---- Page head (interior heroes) ---- */
.pagehead { position: relative; overflow: hidden; background: var(--brand); color: #fff; padding-block: var(--s-8); }
.pagehead .container { position: relative; z-index: 2; }
.pagehead h1 { color: #fff; max-width: 20ch; }
.pagehead p { color: rgba(255,255,255,.82); max-width: 56ch; }
.pagehead .lead { color: rgba(255,255,255,.85); }
.pagehead__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: .42; }
.pagehead--img::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(115deg, rgba(12,13,15,.92), rgba(12,13,15,.7) 55%, rgba(12,13,15,.45)); }
.pagehead__cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: var(--s-5); }

/* breadcrumb */
.crumbs { font-size: var(--t-sm); color: var(--ink-soft); padding-block: var(--s-4); }
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--ink); }
.crumbs span { color: var(--ink); font-weight: 600; }

/* ---- Split content rows ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-7); align-items: center; }
.split__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; }
.zoom-frame { overflow: hidden; border-radius: var(--r-lg); }
.zoom-frame img { transition: transform .5s var(--ease); }
.zoom-frame:hover img { transform: scale(1.05); }

/* ---- Price transparency ---- */
.priceblock { background: var(--brand); color: #fff; border-radius: var(--r-xl); padding: var(--s-7); position: relative; overflow: hidden; }
.priceblock .eyebrow { color: var(--accent); }
.priceblock h2 { color: #fff; }
.priceblock p, .priceblock .lead { color: rgba(255,255,255,.85); }
.tier-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-5); margin-top: var(--s-5); }
.tier { background: #1d2026; border: 1px solid var(--line-dark); border-radius: var(--r-lg); padding: 0; display: flex; flex-direction: column; overflow: hidden; }
.tier--featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.tier__media { margin: 0; line-height: 0; background: #15171a; }
.tier__media img { width: 100%; height: 150px; object-fit: cover; display: block; }
.tier > .tier__tag, .tier > h3, .tier > .tier__price, .tier > p, .tier > .checks, .tier > .btn { margin-left: var(--s-6); margin-right: var(--s-6); }
.tier > .tier__tag { margin-top: var(--s-5); }
.tier > .btn { margin-bottom: var(--s-6); }
.tier__tag { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; color: var(--accent); margin-bottom: .4rem; }
.tier h3 { color: #fff; font-size: var(--t-lg); margin-bottom: .3rem; }
.tier__price { font-family: var(--font-head); font-weight: 700; font-size: 2.1rem; color: #fff; margin: .3rem 0 .2rem; }
.tier__price small { font-size: .9rem; color: rgba(255,255,255,.6); font-weight: 600; }
.tier p { color: rgba(255,255,255,.78); font-size: var(--t-sm); }
.tier .checks li { color: rgba(255,255,255,.85); font-size: var(--t-sm); }
.tier .btn { margin-top: var(--s-4); }
.price-note { margin-top: var(--s-5); font-size: var(--t-sm); color: rgba(255,255,255,.8); }

/* price reveal (hidden by default; revealed by footer toggle) */
.price-reveal[hidden] { display: none; }
.price-amt { font-family: var(--font-head); font-weight: 700; color: var(--accent-text); }
.section--dark .price-amt { color: var(--accent); }

/* ---- FAQ (details/summary) ---- */
.faq { display: grid; gap: .8rem; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 0 var(--s-5); box-shadow: var(--shadow-sm); }
.faq summary { font-family: var(--font-head); font-weight: 700; cursor: pointer; padding: var(--s-4) 0; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--accent-text); transition: transform var(--dur) var(--ease); line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding-bottom: var(--s-5); margin: 0; }

/* ---- Forms ---- */
.form { display: grid; gap: var(--s-4); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.field { display: grid; gap: .35rem; }
.field label { font-weight: 600; font-size: var(--t-sm); }
.field input, .field select, .field textarea {
  font: inherit; padding: .8rem .9rem; border: 1px solid var(--line); border-radius: var(--r-md);
  background: #fff; color: var(--ink); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent-dark); outline: none; box-shadow: 0 0 0 3px rgba(var(--accent-rgb),.3); }
.field textarea { min-height: 120px; resize: vertical; }
.form__note { font-size: var(--t-sm); color: var(--ink-soft); }
.form__hp { position: absolute; left: -9999px; }

/* ---- CTA band ---- */
.cta-band { background: var(--accent); color: #15171a; text-align: center; }
.cta-band h2 { color: #15171a; }
.cta-band p { color: #2a2410; }
.cta-band .btn--dark { background: #15171a; color: #fff; }

/* ---- Floating call/text (mobile) ---- */
.fab { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; gap: 1px; background: var(--line-dark); padding: 0; box-shadow: 0 -6px 20px rgba(0,0,0,.18); }
.fab a { flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .95rem; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; min-height: 56px; }
.fab__call { background: var(--accent); color: #15171a; }
.fab__text { background: var(--brand); color: #fff; }
.fab a:hover { text-decoration: none; }
.fab svg { width: 1.25rem; height: 1.25rem; }

/* ---- Spring page: $0 trust row ---- */
.gbb-trust { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 28px; padding: 20px; background: #15171a; border-radius: 14px; color: #fff; }
@media (min-width: 720px) { .gbb-trust { grid-template-columns: repeat(4,1fr); } }
.gbb-trust-item { text-align: center; }
.gbb-trust-item strong { display: block; font-size: 28px; font-weight: 800; color: #ffd21e; line-height: 1; }
.gbb-trust-item span { display: block; font-size: 13px; margin-top: 4px; color: rgba(255,255,255,.85); }
.gbb-promise { margin-top: 16px; font-size: 14px; line-height: 1.55; color: var(--ink, #333); text-align: center; }

/* ---- Footer ---- */
.site-footer { background: var(--brand-dark); color: rgba(255,255,255,.72); padding-block: var(--s-8) var(--s-7); }
.site-footer h4 { color: #fff; font-size: var(--t-base); margin-bottom: var(--s-3); }
.site-footer p { color: rgba(255,255,255,.72); }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--accent); text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--s-6); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .5rem; }
.footer-brand .brand { color: #fff; margin-bottom: var(--s-3); }
.footer-contact a { display: inline-flex; align-items: center; gap: .5rem; }
.footer-contact svg { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--line-dark); margin-top: var(--s-7); padding-top: var(--s-5); display: flex; flex-wrap: wrap; gap: var(--s-4); justify-content: space-between; font-size: var(--t-sm); }
.footer-price-toggle { background: transparent; color: var(--accent); border: 1px solid var(--accent); font-family: var(--font-head); font-weight: 700; padding: .6rem 1.1rem; border-radius: var(--r-pill); cursor: pointer; display: inline-flex; align-items: center; gap: .4rem; transition: background .15s, color .15s; }
.footer-price-toggle:hover { background: rgba(var(--accent-rgb), .14); }
#pricing-toggle[aria-pressed="true"] { background: var(--accent); color: #15171a; }
/* Hidden-by-default price labels (FLEET-STANDARDS §2). Revealed via #pricing-toggle. */
.price-tag { font-weight: 600; }
body.show-pricing .price-tag { font-family: var(--font-head); font-weight: 700; color: var(--accent-text); }
.section--dark .price-tag, .footer-prices .price-tag { color: var(--accent); }
.footer-prices { margin-top: var(--s-5); background: #1d2026; border: 1px solid var(--line-dark); border-radius: var(--r-lg); padding: var(--s-6); }
.footer-prices[hidden] { display: none; }
.footer-prices table { width: 100%; border-collapse: collapse; }
.footer-prices td { padding: .55rem 0; border-bottom: 1px solid var(--line-dark); color: rgba(255,255,255,.85); font-size: var(--t-sm); }
.footer-prices td:last-child { text-align: right; color: var(--accent); font-family: var(--font-head); font-weight: 700; }
.footer-prices tr:last-child td { border-bottom: none; }

/* ---- Coverage list ---- */
.coverage-list { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; padding: 0; margin: var(--s-5) 0 0; }
.coverage-list li { margin: 0; }
.coverage-list a, .coverage-list span { display: inline-block; padding: .5rem 1rem; border-radius: var(--r-pill); border: 1px solid var(--line); background: #fff; font-weight: 600; font-size: var(--t-sm); }
.section--dark .coverage-list a, .section--dark .coverage-list span { background: #1d2026; border-color: var(--line-dark); color: rgba(255,255,255,.88); }
.coverage-list a:hover { border-color: var(--accent-dark); text-decoration: none; }

/* ---- Misc helpers ---- */
.stat { font-family: var(--font-head); font-weight: 700; color: var(--accent); font-size: 2rem; line-height: 1; }
.note-box { background: var(--bg-soft); border-left: 4px solid var(--accent); border-radius: 0 var(--r-md) var(--r-md) 0; padding: var(--s-5); }
.section--dark .note-box { background: #1d2026; }
.tag { display: inline-block; background: var(--accent); color: #15171a; font-family: var(--font-head); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; padding: .25rem .6rem; border-radius: var(--r-sm); }
.prose h2 { margin-top: var(--s-7); }
.prose h3 { margin-top: var(--s-5); }
.prose ul { color: var(--ink-soft); }

/* =====================================================================
   Motion CSS (pairs with js/motion.js)
   ===================================================================== */
[data-hover-lift], .hover-lift { transition: transform .25s var(--ease), box-shadow .25s ease; will-change: transform; }
[data-hover-lift]:hover, .hover-lift:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cta-pulse { animation: cta-pulse 2.6s ease-in-out infinite; }
@keyframes cta-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb),0); }
  50%     { box-shadow: 0 0 0 10px rgba(var(--accent-rgb),.0), 0 0 0 0 rgba(var(--accent-rgb),.0); }
}
@supports (animation-timeline: view()) {
  .css-reveal { opacity: 0; transform: translateY(22px); animation: css-reveal-in linear both; animation-timeline: view(); animation-range: entry 0% entry 38%; }
  @keyframes css-reveal-in { to { opacity: 1; transform: translateY(0); } }
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--s-6); padding-block: var(--s-7); }
  .hero h1 { max-width: 20ch; }
  .split { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}
@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .trustbar__grid { grid-template-columns: repeat(2,1fr); }
  .form .row { grid-template-columns: 1fr; }
  /* mobile nav drawer */
  .nav__links.is-open {
    display: flex; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--brand); border-top: 1px solid var(--line-dark);
    padding: var(--s-3); max-height: calc(100vh - 100%); overflow-y: auto;
  }
  .nav__links.is-open li { width: 100%; }
  .nav__links.is-open a { display: block; padding: .9rem .6rem; border-bottom: 1px solid var(--line-dark); color: #fff; }
  .nav__links.is-open .nav__cta-row { display: block; padding: 1rem .6rem .4rem; }
  .nav__links.is-open .nav__cta-row a { border-bottom: none; padding: .95rem; }
  .fab { display: flex; }
  body { padding-bottom: 56px; } /* room for FAB */
}
@media (max-width: 560px) {
  .grid--4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand { font-size: .95rem; }
  .brand__mark { width: 30px; height: 30px; }
  /* header call collapses to an icon-only button; the full Call CTA lives in the FAB + drawer */
  .nav__call { padding: .5rem; gap: 0; }
  .nav__call span { display: none; }
  .hero__badge { position: static; max-width: none; margin-top: var(--s-4); display: inline-block; }
  .section { padding-block: var(--s-7); }
}

/* =====================================================================
   Scroll-reveal initial state — NO-JS SAFE.
   The hidden state is gated behind html.js (added synchronously by an inline
   <head> script ONLY when JS runs AND reduced-motion is off). With JS disabled
   the class is never added, so content renders fully visible. motion.js then
   animates these to visible via inline styles (inline wins over these rules).
   ===================================================================== */
html.js [data-reveal] { opacity: 0; transform: translateY(24px); }
html.js [data-reveal="left"]  { transform: translateX(32px); }
html.js [data-reveal="right"] { transform: translateX(-32px); }
html.js [data-reveal="down"]  { transform: translateY(-24px); }
html.js [data-reveal="none"]  { transform: none; }
html.js [data-stagger] > * { opacity: 0; transform: translateY(20px); }
/* Parallax headroom: the pagehead bg fills the section exactly, so give it a little
   vertical overflow room (gated behind .js) so the ±7px parallax shift never exposes an edge. */
html.js .pagehead__bg[data-parallax] { height: 116%; top: -8%; }

/* reduced motion kill-switch — force everything visible, no transforms */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .css-reveal { opacity: 1 !important; transform: none !important; }
  html.js [data-reveal], html.js [data-stagger], html.js [data-stagger] > * { opacity: 1 !important; transform: none !important; }
}
