/* =================================================================
   New Garage Doors — Greater Vancouver
   Conversion-focused, mobile-first marketing site
   Design system + components. No framework, fast LCP.
   ================================================================= */

:root {
  /* Brand palette — trustworthy deep navy + action amber */
  --navy-900: #0f1b2d;
  --navy-800: #16263d;
  --navy-700: #1f3a5f;
  --navy-600: #2b4a73;
  --slate-500: #5b6b82;
  --slate-400: #8493a6;
  --slate-200: #d7deea;
  --slate-100: #eef2f8;
  --paper: #ffffff;
  --bg: #f6f8fc;

  --amber-500: #f59e0b;
  --amber-600: #e08600;
  --amber-700: #c26f00;
  --amber-glow: rgba(245, 158, 11, 0.35);

  --green-600: #0f9d6b;
  --star: #f6b01e;

  --ink: #15212f;
  --ink-soft: #41506385;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(15, 27, 45, 0.06), 0 2px 8px rgba(15, 27, 45, 0.06);
  --shadow-md: 0 6px 18px rgba(15, 27, 45, 0.10);
  --shadow-lg: 0 22px 60px rgba(15, 27, 45, 0.22);

  --maxw: 1140px;
  --font-head: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;

  --header-h: 68px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; color: var(--navy-900); margin: 0 0 .5em; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.45rem); font-weight: 800; }
h3 { font-size: 1.18rem; font-weight: 700; }
p { margin: 0 0 1rem; }
a { color: var(--navy-700); text-decoration: none; }
img, svg { max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Eyebrows / section heads ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: .7rem;
}
.eyebrow--dark { color: var(--amber-700); }

.section-head { max-width: 720px; margin-bottom: 2.4rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub { font-size: 1.08rem; color: var(--slate-500); }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--amber-500);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: .82rem 1.4rem; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer;
  min-height: 48px; /* >=44px tap target */
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: linear-gradient(180deg, var(--amber-500), var(--amber-600));
  color: #2a1a00;
  box-shadow: 0 6px 16px var(--amber-glow);
}
.btn--primary:hover { box-shadow: 0 10px 26px var(--amber-glow); transform: translateY(-1px); }
.btn--ghost {
  background: rgba(255,255,255,.08);
  color: #fff; border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,.16); }
.why .btn--ghost, .services .btn--ghost, .configurator .btn--ghost, .about .btn--ghost { color: var(--navy-800); border-color: var(--slate-200); background: #fff; }
.configurator .btn--ghost:hover, .about .btn--ghost:hover { background: var(--slate-100); }
.btn--sm { padding: .55rem 1rem; min-height: 42px; font-size: .92rem; }
.btn--lg { padding: 1rem 1.7rem; font-size: 1.08rem; min-height: 56px; }
.btn--block { width: 100%; }

/* ---------- Top promise bar ---------- */
.topbar {
  background: var(--navy-900);
  color: #dfe7f2;
  font-size: .85rem;
}
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: .6rem; padding: .5rem 20px; text-align: center; }
.topbar strong { color: #fff; }
.topbar__pulse {
  width: 9px; height: 9px; border-radius: 50%; background: var(--green-600); flex: none;
  box-shadow: 0 0 0 0 rgba(15,157,107,.6); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(15,157,107,.55); }
  70% { box-shadow: 0 0 0 8px rgba(15,157,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(15,157,107,0); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--slate-200);
}
.site-header__inner { display: flex; align-items: center; gap: 1rem; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: .6rem; color: var(--navy-900); }
.brand__mark { color: var(--amber-500); display: grid; place-items: center; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong { font-family: var(--font-head); font-size: 1.05rem; }
.brand__text small { color: var(--slate-500); font-size: .72rem; }

.site-nav { display: none; margin-left: auto; gap: 1.4rem; }
.site-nav a { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--navy-800); }
.site-nav a:hover { color: var(--amber-700); }

.site-header__cta { display: none; align-items: center; gap: .9rem; margin-left: 1.2rem; }
.phone-link { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 700; color: var(--navy-900); }
.phone-link svg { color: var(--amber-600); }
.phone-link:hover { color: var(--amber-700); }

.nav-toggle {
  margin-left: auto; width: 46px; height: 46px; border: 1px solid var(--slate-200);
  background: #fff; border-radius: 10px; display: grid; place-content: center; gap: 4px; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; padding: .5rem 20px 1rem; gap: .2rem; border-top: 1px solid var(--slate-200); background: #fff; }
.mobile-menu.is-open { display: flex; }
.mobile-menu a { padding: .75rem .25rem; font-family: var(--font-head); font-weight: 600; border-bottom: 1px solid var(--slate-100); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.hero__media {
  position: absolute; inset: 0;
  /* Drop a real photo here: */
  --hero-image: none;
  background-image:
    linear-gradient(110deg, rgba(15,27,45,.92) 0%, rgba(15,27,45,.72) 45%, rgba(15,27,45,.35) 100%),
    var(--hero-image),
    radial-gradient(120% 120% at 80% 10%, #24385a 0%, #0f1b2d 60%);
  background-size: cover; background-position: center;
}
.hero__placeholder-note {
  position: absolute; right: 14px; bottom: 14px; max-width: 260px;
  font-size: .68rem; color: rgba(255,255,255,.5);
  border: 1px dashed rgba(255,255,255,.25); padding: 6px 9px; border-radius: 8px;
  text-align: right; line-height: 1.3;
}
.hero__inner { position: relative; padding: clamp(2.5rem, 7vw, 5.5rem) 0 clamp(3rem, 8vw, 6rem); }
.hero__copy { max-width: 640px; }
.hero .eyebrow { color: var(--amber-500); }
.hero h1 { color: #fff; }
.hero__sub { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: #cdd8e8; max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1.4rem; }
.hero__trust { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .6rem 1.3rem; font-size: .9rem; color: #c2cee0; }
.hero__trust strong { color: #fff; }
.hero__trust .stars { color: var(--star); letter-spacing: 1px; }

/* ---------- Trust bar ---------- */
.trustbar { background: #fff; border-bottom: 1px solid var(--slate-200); }
.trustbar__inner { display: flex; flex-direction: column; gap: 1rem; padding: 1.1rem 20px; }
.trustbar__badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--slate-100); color: var(--navy-800);
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  padding: .4rem .75rem; border-radius: 999px;
}
.brandrow { display: flex; flex-wrap: wrap; align-items: center; gap: .55rem; }
.brandrow__label { font-family: var(--font-head); font-weight: 700; color: var(--slate-500); font-size: .85rem; margin-right: .2rem; }
.brand-chip {
  font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--navy-700);
  border: 1.5px solid var(--slate-200); padding: .35rem .7rem; border-radius: 8px; background: #fff;
}
.brand-chip--accent { color: var(--amber-700); border-color: var(--amber-500); background: #fff7ea; }

/* ---------- Configurator placeholder ---------- */
.configurator { padding: clamp(3rem, 7vw, 5rem) 0; background: var(--bg); }
.config-placeholder {
  background: linear-gradient(180deg, #fff, #fbfdff);
  border: 2px dashed var(--slate-200);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem) 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.config-placeholder__inner { max-width: 620px; margin: 0 auto; }
.config-placeholder__icon { color: var(--amber-500); margin-bottom: .6rem; }
.config-placeholder h3 { font-size: 1.45rem; }
.config-placeholder p { color: var(--slate-500); }
.config-steps {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem;
  padding: 0; margin: 1.4rem 0;
}
.config-steps li {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--navy-800);
  background: #fff; border: 1px solid var(--slate-200); padding: .45rem .8rem; border-radius: 999px;
}
.config-steps li span {
  display: grid; place-content: center; width: 22px; height: 22px; border-radius: 50%;
  background: var(--amber-500); color: #2a1a00; font-size: .78rem;
}
.config-placeholder__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 1.4rem; }

/* ---------- Why ---------- */
.why { padding: clamp(3rem, 7vw, 5rem) 0; background: #fff; }
.why__grid { display: grid; gap: 2rem; }
.why__refer { color: var(--slate-500); font-style: italic; }
.why__list { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.why__list li {
  background: var(--slate-100); border-radius: var(--radius); padding: 1rem 1.1rem;
  border-left: 4px solid var(--amber-500);
}
.why__list strong { color: var(--navy-900); }

/* ---------- Services ---------- */
.services { padding: clamp(3rem, 7vw, 5rem) 0; background: var(--bg); }
.cards { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.card {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__icon { font-size: 1.7rem; margin-bottom: .5rem; }
.card p { color: var(--slate-500); margin: 0; font-size: .98rem; }
.card em { color: var(--navy-700); font-style: normal; font-weight: 600; }

/* ---------- How it works ---------- */
.how { padding: clamp(3rem, 7vw, 5rem) 0; background: var(--navy-900); color: #fff; }
.how h2, .how .eyebrow { color: #fff; }
.how .eyebrow { color: var(--amber-500); }
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; grid-template-columns: 1fr; counter-reset: s; }
.step {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 1.5rem 1.4rem 1.4rem; position: relative;
}
.step__num {
  display: grid; place-content: center; width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(180deg, var(--amber-500), var(--amber-600)); color: #2a1a00;
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; margin-bottom: .7rem;
}
.step h3 { color: #fff; }
.step p { color: #c2cee0; margin: 0; font-size: .96rem; }

/* ---------- Gallery ---------- */
.gallery { padding: clamp(3rem, 7vw, 5rem) 0; background: #fff; }
.gallery__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.shot {
  position: relative; margin: 0; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, #2b4a73, #16263d);
  display: flex; align-items: flex-end; box-shadow: var(--shadow-sm);
}
.shot::before {
  content: "REPLACE WITH PHOTO"; position: absolute; inset: 0;
  display: grid; place-content: center; color: rgba(255,255,255,.35);
  font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .1em;
}
.shot figcaption {
  position: relative; z-index: 1; width: 100%; padding: .8rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(15,27,45,.85));
  color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .92rem;
}

/* ---------- About ---------- */
.about { padding: clamp(3rem, 7vw, 5rem) 0; background: var(--bg); }
.about__grid { display: grid; gap: 2rem; align-items: center; }
.about__photo {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, #24385a, #0f1b2d); box-shadow: var(--shadow-md);
  display: grid; place-content: center;
}
.about__photo-note { color: rgba(255,255,255,.45); font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-align: center; padding: 0 1rem; }
.about__points { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: .5rem; }
.about__points li { color: var(--navy-800); }
.about__points strong { color: var(--amber-700); }

/* ---------- Coverage ---------- */
.coverage { padding: clamp(3rem, 7vw, 5rem) 0; background: #fff; }
.coverage__list {
  list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem;
  grid-template-columns: repeat(2, 1fr);
}
.coverage__list li {
  background: var(--slate-100); border-radius: 10px; padding: .7rem .9rem;
  font-family: var(--font-head); font-weight: 600; color: var(--navy-800); font-size: .92rem;
  text-align: center;
}

/* ---------- FAQ ---------- */
.faq { padding: clamp(3rem, 7vw, 5rem) 0; background: var(--bg); }
.accordion { max-width: 820px; }
.acc {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius);
  margin-bottom: .7rem; box-shadow: var(--shadow-sm); overflow: hidden;
}
.acc summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.2rem;
  font-family: var(--font-head); font-weight: 700; color: var(--navy-900);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "+"; font-size: 1.4rem; color: var(--amber-600); line-height: 1; flex: none; transition: transform .2s;
}
.acc[open] summary::after { content: "–"; }
.acc__body { padding: 0 1.2rem 1.1rem; }
.acc__body p { margin: 0; color: var(--slate-500); }

/* ---------- Callback ---------- */
.callback { padding: clamp(3rem, 7vw, 5rem) 0; background: var(--navy-900); color: #fff; }
.callback__grid { display: grid; gap: 2rem; }
.callback h2, .callback .eyebrow { color: #fff; }
.callback .eyebrow { color: var(--amber-500); }
.callback__copy p { color: #cdd8e8; }
.callback__assure { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: .5rem; color: #d7e0ee; }
.callback__or { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.1rem; margin-top: 1.4rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.14); }
.callback__or > span { color: #aab8cc; font-size: .92rem; }
.phone-cta { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: #fff; }
.phone-cta svg { color: var(--amber-500); }
.email-cta { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 600; color: #cdd8e8; }

.callback__form {
  background: #fff; color: var(--ink); border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-lg);
}
.callback__form h3 { margin-bottom: 1.1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--navy-800); margin-bottom: .35rem; }
.field__hint { display: block; font-weight: 400; font-size: .78rem; color: var(--slate-500); }
.field input, .field select {
  width: 100%; padding: .85rem .9rem; font-size: 1rem; font-family: var(--font-body);
  border: 1.5px solid var(--slate-200); border-radius: 10px; background: #fff; color: var(--ink);
  min-height: 50px; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--amber-500); box-shadow: 0 0 0 3px var(--amber-glow);
}
.field input.invalid { border-color: #e0464a; box-shadow: 0 0 0 3px rgba(224,70,74,.18); }
.form-fineprint { font-size: .8rem; color: var(--slate-500); text-align: center; margin: .9rem 0 0; }
.form-status { margin: .8rem 0 0; padding: .8rem 1rem; border-radius: 10px; font-weight: 600; font-family: var(--font-head); }
.form-status.success { background: #e7f8f0; color: #0a6b48; }
.form-status.error { background: #fdecec; color: #b23034; }

/* ---------- Footer ---------- */
.site-footer { background: #0a121f; color: #aebbcd; padding: 2.5rem 0 1.5rem; font-size: .92rem; }
.site-footer__grid { display: grid; gap: 1.8rem; grid-template-columns: 1fr; }
.site-footer__brand strong { color: #fff; font-family: var(--font-head); font-size: 1.1rem; display: block; margin-bottom: .5rem; }
.site-footer__contact a { color: var(--amber-500); font-weight: 600; }
.site-footer__col h4 { color: #fff; font-size: .95rem; margin-bottom: .7rem; }
.site-footer__col a, .site-footer__col span { display: block; color: #aebbcd; padding: .18rem 0; }
.site-footer__col a:hover { color: #fff; }
.site-footer__bottom {
  display: flex; flex-direction: column; gap: .4rem; margin-top: 1.8rem; padding-top: 1.3rem;
  border-top: 1px solid rgba(255,255,255,.1); color: #7d8ba1; font-size: .82rem;
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; gap: .6rem; padding: .6rem .7rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--slate-200); box-shadow: 0 -4px 20px rgba(15,27,45,.1);
}
.mobile-cta a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  min-height: 50px; border-radius: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1rem;
}
.mobile-cta__call { background: var(--navy-900); color: #fff; }
.mobile-cta__call svg { color: var(--amber-500); }
.mobile-cta__build { background: linear-gradient(180deg, var(--amber-500), var(--amber-600)); color: #2a1a00; }

body { padding-bottom: 72px; } /* room for sticky mobile CTA */

/* =================================================================
   Responsive — tablet & up
   ================================================================= */
@media (min-width: 720px) {
  .why__grid { grid-template-columns: 1.1fr .9fr; align-items: center; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: .9fr 1.1fr; }
  .coverage__list { grid-template-columns: repeat(4, 1fr); }
  .callback__grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .site-footer__bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 960px) {
  :root { --header-h: 74px; }
  .site-nav { display: flex; }
  .site-header__cta { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
  .mobile-cta { display: none; }
  body { padding-bottom: 0; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .topbar__pulse { animation: none; }
  * { transition: none !important; }
}

/* =================================================================
   Pricing reveal toggle (footer button swaps prices in place)
   Default = prices hidden. body.prices-visible reveals them.
   ================================================================= */
.price-on { display: none; }
body.prices-visible .price-on { display: inline; }
body.prices-visible .price-off { display: none; }

.card__price {
  margin: .7rem 0 0; padding-top: .7rem; border-top: 1px dashed var(--slate-200);
  font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--slate-500);
}
body.prices-visible .card__price { color: var(--amber-700); }

.site-footer__pricing {
  display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1rem;
  padding-top: 1.6rem; margin-top: .4rem;
}
.price-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 700; font-size: .9rem;
  color: #fff; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.22); border-radius: 999px;
  padding: .5rem .95rem; min-height: 42px; cursor: pointer;
  transition: background .2s, border-color .2s;
}
.price-toggle:hover { background: rgba(255,255,255,.14); }
.price-toggle__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--slate-400); transition: background .2s; }
.price-toggle[aria-pressed="true"] { border-color: var(--amber-500); background: rgba(245,158,11,.14); }
.price-toggle[aria-pressed="true"] .price-toggle__dot { background: var(--amber-500); }
.price-disclaimer { color: #8b9ab0; font-size: .82rem; }

/* About + Contact "Become a partner" placements */
.about__cta { display: flex; flex-wrap: wrap; gap: .7rem; }
.callback__partner {
  display: flex; flex-wrap: wrap; align-items: center; gap: .7rem 1rem;
  margin-top: 1.3rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.14);
}
.callback__partner > span { color: #aab8cc; font-size: .92rem; }

/* =================================================================
   Become-a-partner application page
   ================================================================= */
.subpage { padding: clamp(2.2rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 5rem); background: var(--bg); }
.subpage__head { max-width: 720px; margin: 0 auto 2rem; text-align: center; }
.subpage__head .eyebrow { color: var(--amber-600); }
.subpage__head p { font-size: 1.08rem; color: var(--slate-500); }
.subpage__back { display: inline-flex; align-items: center; gap: .35rem; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--slate-500); margin-bottom: 1.2rem; }
.subpage__back:hover { color: var(--amber-700); }

.partner-form {
  max-width: 820px; margin: 0 auto;
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.4rem); box-shadow: var(--shadow-md);
}
.partner-form fieldset { border: 0; padding: 0; margin: 0 0 1.6rem; }
.partner-form legend {
  font-family: var(--font-head); font-weight: 800; color: var(--navy-900); font-size: 1.05rem;
  padding: 0; margin-bottom: .9rem; width: 100%;
  border-bottom: 2px solid var(--slate-100); padding-bottom: .5rem;
}
.partner-form legend .legend-hint { display: block; font-weight: 400; font-size: .82rem; color: var(--slate-500); margin-top: .2rem; }
.field-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.partner-form textarea {
  width: 100%; padding: .85rem .9rem; font: inherit; color: var(--ink);
  border: 1.5px solid var(--slate-200); border-radius: 10px; min-height: 110px; resize: vertical;
}
.partner-form textarea:focus { outline: none; border-color: var(--amber-500); box-shadow: 0 0 0 3px var(--amber-glow); }
.req { color: #c0392b; }

.check-grid { display: grid; gap: .55rem; grid-template-columns: 1fr; }
.check {
  display: flex; align-items: flex-start; gap: .6rem; cursor: pointer;
  background: var(--slate-100); border: 1.5px solid transparent; border-radius: 10px;
  padding: .7rem .85rem; font-size: .95rem; transition: border-color .15s, background .15s;
}
.check:hover { background: #e9eef6; }
.check input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--amber-600); flex: none; }
.check:has(input:checked) { background: #fff7ea; border-color: var(--amber-500); }
.consent { align-items: flex-start; background: transparent; padding: .2rem 0; }
.consent:hover { background: transparent; }

/* Honeypot — visually hidden, off-screen, not announced */
.hp-field { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }

.form-banner { border-radius: 10px; padding: .9rem 1.1rem; margin-bottom: 1.3rem; font-weight: 600; font-family: var(--font-head); }
.form-banner.error { background: #fdecec; color: #b23034; border: 1px solid #f3c2c2; }

.field input.invalid, .partner-form textarea.invalid, .check.invalid { border-color: #e0464a; box-shadow: 0 0 0 3px rgba(224,70,74,.15); }
.field-error { color: #b23034; font-size: .82rem; font-weight: 600; margin: .3rem 0 0; }

/* Thank-you page */
.thankyou { min-height: 52vh; display: grid; place-items: center; text-align: center; padding: clamp(3rem, 9vw, 6rem) 0; background: var(--bg); }
.thankyou__card { max-width: 620px; background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-lg); padding: clamp(2rem, 6vw, 3.5rem); box-shadow: var(--shadow-md); }
.thankyou__check { width: 72px; height: 72px; border-radius: 50%; display: grid; place-content: center; margin: 0 auto 1.2rem; background: #e7f8f0; color: var(--green-600); font-size: 2.2rem; }

@media (min-width: 680px) {
  .field-grid { grid-template-columns: 1fr 1fr; }
  .check-grid { grid-template-columns: 1fr 1fr; }
  .field-grid .field--full { grid-column: 1 / -1; }
}

.card__price { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
