/* JV Heating and Air — site styles */

/* -------- Tokens -------- */
:root {
  --c-bg: #ffffff;
  --c-bg-soft: #f5f8fb;
  --c-bg-warm: #fff8f5;
  --c-ink: #0b2740;            /* deep navy, like the logo arc */
  --c-ink-2: #18324d;
  --c-muted: #5b6b7d;
  --c-faint: #98a4b1;
  --c-line: #e1e7ee;
  --c-line-2: #cfd9e3;

  --c-blue: #2EB4E6;           /* cold accent */
  --c-blue-2: #1577B5;
  --c-blue-deep: #0f4f87;
  --c-red: #E63B2E;            /* hot accent */
  --c-red-2: #b8261b;
  --c-red-warm: #FF7A59;

  --c-success: #1a8a4a;

  --shadow-sm: 0 1px 2px rgba(11,39,64,.05), 0 1px 1px rgba(11,39,64,.04);
  --shadow-md: 0 4px 16px rgba(11,39,64,.08), 0 1px 3px rgba(11,39,64,.05);
  --shadow-lg: 0 20px 50px -20px rgba(11,39,64,.25), 0 8px 20px -8px rgba(11,39,64,.12);
  --shadow-glow-blue: 0 10px 30px -10px rgba(46,180,230,.45);
  --shadow-glow-red: 0 10px 30px -10px rgba(230,59,46,.4);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --container: 1200px;

  --font-display: "General Sans", "Satoshi", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: "Satoshi", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* -------- Reset / base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--c-blue) 65%, white);
  outline-offset: 3px;
  border-radius: 6px;
}
.skip-link {
  position: absolute; left: -9999px;
  background: var(--c-ink); color: #fff;
  padding: 10px 14px; border-radius: 8px;
  z-index: 100;
}
.skip-link:focus { left: 16px; top: 16px; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
@media (min-width: 720px) { .container { width: min(100% - 64px, var(--container)); } }

/* -------- Typography -------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin: 0 0 .4em;
  line-height: 1.1;
}
.h2 { font-size: clamp(28px, 3.6vw, 44px); }
h3 { font-size: 20px; letter-spacing: -.01em; line-height: 1.2; }
p { margin: 0 0 1em; color: var(--c-ink-2); }
.lede { color: var(--c-muted); font-size: 18px; max-width: 64ch; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-blue-deep);
  margin-bottom: 16px;
}
.kicker--light { color: #9bd2ea; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-blue-deep);
  background: linear-gradient(to right, rgba(46,180,230,.1), rgba(230,59,46,.1));
  padding: 7px 12px; border-radius: 999px;
  border: 1px solid rgba(11,39,64,.08);
  flex-wrap: wrap;
  max-width: 100%;
}
@media (min-width: 540px) {
  .eyebrow { font-size: 13px; letter-spacing: .14em; padding: 8px 14px; }
}
.eyebrow__sep { color: var(--c-faint); }
.dot { width: 8px; height: 8px; border-radius: 99px; display: inline-block; }
.dot--blue { background: var(--c-blue); box-shadow: 0 0 0 4px rgba(46,180,230,.18); }
.dot--red  { background: var(--c-red);  box-shadow: 0 0 0 4px rgba(230,59,46,.18); }

.grad-text {
  background: linear-gradient(95deg, var(--c-blue) 0%, var(--c-blue-2) 35%, var(--c-red) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* -------- Buttons -------- */
.btn {
  --btn-bg: var(--c-ink);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--lg { padding: 15px 22px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary {
  --btn-bg: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-2) 100%);
  color: #fff;
  box-shadow: var(--shadow-glow-red);
}
.btn--primary:hover { box-shadow: 0 14px 36px -10px rgba(230,59,46,.55); }
.btn--secondary {
  --btn-bg: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-2) 100%);
  color: #fff;
  box-shadow: var(--shadow-glow-blue);
}
.btn--secondary:hover { box-shadow: 0 14px 36px -10px rgba(46,180,230,.6); }
.btn--ghost {
  --btn-bg: transparent;
  color: var(--c-ink);
  border-color: var(--c-line-2);
}
.btn--ghost:hover { background: var(--c-bg-soft); border-color: var(--c-ink); }

.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

/* -------- Nav -------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.nav__inner {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  flex-wrap: nowrap;
}
@media (min-width: 720px) { .nav__inner { gap: 24px; padding: 14px 0; } }
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
}
.brand img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
@media (min-width: 720px) { .brand img { width: 44px; height: 44px; } }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -.01em; white-space: nowrap; }
@media (min-width: 720px) { .brand__name { font-size: 18px; } }
.brand__sub  { font-size: 10.5px; color: var(--c-muted); letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
@media (min-width: 720px) { .brand__sub { font-size: 11px; } }
.nav__links { display: none; margin-left: auto; gap: 22px; }
.nav__links a { color: var(--c-ink-2); text-decoration: none; font-weight: 500; font-size: 15px; }
.nav__links a:hover { color: var(--c-red); }
.nav__cta { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }
.nav__cta .btn { padding: 10px 14px; font-size: 14px; }
.nav__cta .btn__phone-text { display: none; }
@media (min-width: 480px) { .nav__cta .btn__phone-text { display: inline; } }
@media (min-width: 720px) { .nav__cta .btn { padding: 12px 18px; font-size: 15px; } }
.nav__cta .btn--ghost { display: none; }
@media (min-width: 960px) {
  .nav__links { display: inline-flex; }
  .nav__cta { margin-left: 0; }
  .nav__cta .btn--ghost { display: inline-flex; }
}

/* -------- Hero -------- */
.hero { position: relative; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grad {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .55;
}
.hero__grad--cold { width: 60vw; height: 60vw; left: -10vw; top: -10vw; background: radial-gradient(circle at center, rgba(46,180,230,.55), transparent 60%); }
.hero__grad--hot  { width: 55vw; height: 55vw; right: -15vw; bottom: -20vw; background: radial-gradient(circle at center, rgba(230,59,46,.42), transparent 60%); }
.hero__lines { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .9; }

.hero__inner {
  position: relative;
  display: grid; gap: 40px;
  padding: 56px 0 72px;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .hero__inner { grid-template-columns: 1.35fr 1fr; gap: 56px; padding: 88px 0 100px; align-items: center; }
}
.hero__title {
  font-size: clamp(30px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 18px 0 18px;
  overflow-wrap: break-word;
}
@media (max-width: 380px) {
  .hero__title { hyphens: auto; }
}
.hero__lede { font-size: clamp(16px, 1.6vw, 19px); color: var(--c-ink-2); max-width: 60ch; }
.hero__pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 28px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: #fff; border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; color: var(--c-ink);
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .2s, border-color .2s;
}
.pill:hover { transform: translateY(-1px); border-color: var(--c-blue); box-shadow: var(--shadow-md); }
.pill__icn { font-size: 15px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.trust {
  display: flex; flex-wrap: wrap; gap: 18px 28px;
  list-style: none; padding: 0; margin: 32px 0 0;
  border-top: 1px solid var(--c-line);
  padding-top: 22px;
  color: var(--c-muted);
  font-size: 14px;
}
.trust__k {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-ink);
  margin-right: 6px;
  letter-spacing: -.01em;
}

/* hero card */
.hero__card { position: relative; }
.card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
}
.card--featured {
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  border-color: rgba(46,180,230,.35);
}
.card__head .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,180,230,.08);
  color: var(--c-blue-deep);
  border: 1px solid rgba(46,180,230,.25);
  font-size: 12px; font-weight: 600;
  padding: 6px 10px; border-radius: 999px;
  margin-bottom: 14px;
}
.card__title { font-size: 24px; margin: 0 0 6px; }
.card__sub { color: var(--c-muted); margin: 0 0 18px; }
.card__actions { display: grid; gap: 10px; margin-bottom: 16px; }
.card__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 14px; color: var(--c-ink-2); }
.card__list .ck { color: var(--c-success); font-weight: 800; margin-right: 6px; }

/* -------- Strip -------- */
.strip {
  background: var(--c-ink);
  color: #d6e2ee;
  border-top: 1px solid #112e4b;
  border-bottom: 1px solid #112e4b;
}
.strip__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  padding: 22px 0;
  text-align: center;
}
@media (min-width: 720px) { .strip__row { grid-template-columns: repeat(5, 1fr); } }
.strip__item { display: flex; flex-direction: column; gap: 2px; }
.strip__item span { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 16px; letter-spacing: -.01em; }
.strip__item small { color: #8aa3bc; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.strip__divider { display: none; }
@media (min-width: 720px) {
  .strip__divider { display: block; width: 1px; background: #1a3855; }
  .strip__row { grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr 1px 1fr; }
}

/* -------- Sections -------- */
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 110px 0; } }
.section--alt { background: var(--c-bg-soft); }
.section--dark {
  background: linear-gradient(180deg, #0b2740 0%, #102a44 100%);
  color: #e3ecf4;
}
.section--dark .h2 { color: #fff; }
.section--dark .lede--light { color: #b9cbdc; }
.section__head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section__head--light .kicker { color: #9bd2ea; }
.section__head .lede { margin-inline: auto; }

.grid { display: grid; gap: 18px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

/* services */
.svc {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .25s, border-color .2s;
}
.svc:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-line-2); }
.svc__icn { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; margin-bottom: 14px; }
.svc__icn svg { width: 22px; height: 22px; }
.svc__icn--blue { background: rgba(46,180,230,.12); color: var(--c-blue-2); }
.svc__icn--red  { background: rgba(230,59,46,.12);  color: var(--c-red-2); }
.svc__title { margin-bottom: 8px; }
.ticks { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 6px; }
.ticks li { position: relative; padding-left: 22px; font-size: 14.5px; color: var(--c-ink-2); }
.ticks li::before { content: ""; position: absolute; left: 0; top: 8px; width: 12px; height: 12px; border-radius: 4px; background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-red) 100%); }

/* split */
.split { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 960px) { .split { grid-template-columns: 1.05fr 1fr; gap: 64px; } }
.split--reverse .split__copy { order: 1; }
.split--reverse .split__visual { order: 2; }
@media (min-width: 960px) {
  .split--reverse .split__copy { order: 2; }
  .split--reverse .split__visual { order: 1; }
}
.ticks--cards { list-style: none; padding: 0; margin: 20px 0 0; gap: 12px; }
.ticks--cards li {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 14px 16px 14px 38px;
  display: block;
  box-shadow: var(--shadow-sm);
}
.ticks--cards li::before { left: 14px; top: 18px; }
.ticks--cards li strong { display: block; font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--c-ink); margin-bottom: 2px; }
.ticks--cards li span { color: var(--c-muted); font-size: 13.5px; }
.section--alt .ticks--cards li { background: #fff; }
.vis {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: #fff;
  box-shadow: var(--shadow-md);
}

/* WHY */
.why__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .2s, border-color .25s, background .25s;
}
.why__card:hover { transform: translateY(-3px); border-color: rgba(155,210,234,.4); background: rgba(255,255,255,.06); }
.why__num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .18em;
  color: #9bd2ea;
  margin-bottom: 12px;
}
.why__card h3 { color: #fff; }
.why__card p { color: #b9cbdc; margin-bottom: 0; }

/* area */
.area__card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.area__head { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.area__card h3 { margin: 0 0 12px; }
.area__tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-red-2);
  background: rgba(230,59,46,.1);
  border: 1px solid rgba(230,59,46,.25);
  padding: 4px 8px; border-radius: 999px;
}
.area__cities {
  list-style: none; padding: 0; margin: 6px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 10px;
  color: var(--c-ink-2); font-size: 14.5px;
}
.area__cities li { position: relative; padding-left: 14px; }
.area__cities li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 2px;
  background: var(--c-blue);
}
.area__note { margin-top: 28px; text-align: center; color: var(--c-muted); }
.area__note a { color: var(--c-red-2); font-weight: 600; text-decoration: none; }
.area__note a:hover { text-decoration: underline; }
.area__cities--wide { grid-template-columns: 1fr; margin: 14px 0 22px; }
@media (min-width: 520px) { .area__cities--wide { grid-template-columns: 1fr 1fr; } }

/* reviews */
.reviews { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .reviews { grid-template-columns: 1.2fr 1fr; gap: 56px; } }
.rev {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
}
.rev__top { display: flex; align-items: baseline; gap: 12px; }
.rev__stars { color: #e8a937; font-size: 26px; letter-spacing: 2px; }
.rev__score { font-family: var(--font-display); font-weight: 700; font-size: 28px; }
.rev__label { color: var(--c-muted); margin: 6px 0 16px; font-size: 14px; }
.rev__rows { display: grid; gap: 6px; }
.rev__row { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px dashed var(--c-line); padding: 8px 0; font-size: 14.5px; }
.rev__row:last-child { border-bottom: 0; }
.rev__row span:last-child { color: var(--c-success); font-weight: 700; }
.rev__cta { display: inline-block; margin-top: 14px; color: var(--c-red-2); font-weight: 600; text-decoration: none; }
.rev__cta:hover { text-decoration: underline; }

/* QUOTE */
.section--quote {
  background:
    radial-gradient(60% 80% at 90% 0%, rgba(230,59,46,.08), transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgba(46,180,230,.1), transparent 60%),
    #fff;
}
.quote { display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 960px) { .quote { grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; } }
.quote__copy a { color: var(--c-red-2); }
.quote__list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 8px; color: var(--c-ink-2); }
.quote__list .ck { color: var(--c-success); font-weight: 800; margin-right: 6px; }

.form {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
}
.form__row { display: grid; gap: 14px; grid-template-columns: 1fr; margin-bottom: 14px; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field__label { font-size: 13px; font-weight: 600; color: var(--c-ink); letter-spacing: .02em; }
.field__label em { color: var(--c-red); font-style: normal; }
.field input, .field select, .field textarea {
  border: 1px solid var(--c-line-2);
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 15px;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(46,180,230,.15);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: var(--c-red);
  box-shadow: 0 0 0 4px rgba(230,59,46,.12);
}
.form__foot { margin-top: 6px; }
.form__note { color: var(--c-muted); font-size: 13px; margin-top: 12px; }
.form__note a { color: var(--c-red-2); }
.form__success {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(46,180,230,.08), rgba(230,59,46,.08));
  border: 1px solid rgba(46,180,230,.3);
}
.form__success strong { display: block; margin-bottom: 6px; color: var(--c-ink); font-family: var(--font-display); }
.form__success p { margin: 0 0 8px; color: var(--c-ink-2); font-size: 14.5px; }
.form__success pre { white-space: pre-wrap; font-size: 12.5px; background: #f3f6f9; border-radius: 8px; padding: 10px; margin-top: 8px; }
.form__success summary { cursor: pointer; color: var(--c-blue-deep); font-weight: 600; font-size: 14px; }
.netlify-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* -------- Footer -------- */
.footer {
  background: #061a2e;
  color: #aac2d9;
  padding: 60px 0 24px;
  border-top: 4px solid;
  border-image: linear-gradient(90deg, var(--c-blue), var(--c-red)) 1;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
@media (min-width: 760px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } }
.footer h4 { color: #fff; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 14.5px; }
.footer a { color: #cbd9e6; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.brand--footer img { background: #fff; border-radius: 10px; padding: 6px; }
.brand--footer .brand__name { color: #fff; font-size: 18px; }
.brand--footer .brand__sub { color: #8caac4; }
.footer__blurb { margin-top: 12px; color: #93acc4; font-size: 14.5px; max-width: 46ch; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 22px; border-top: 1px solid #11304e; color: #6e87a1; font-size: 12.5px; }
.footer__legal { color: #5a7390; }

/* -------- Expanded pages -------- */
.page-main { background: #fff; }
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 68px;
  background:
    radial-gradient(70% 100% at 0% 0%, rgba(46,180,230,.16), transparent 62%),
    radial-gradient(60% 80% at 100% 20%, rgba(230,59,46,.13), transparent 58%),
    linear-gradient(180deg, #f8fbfe 0%, #fff 100%);
  border-bottom: 1px solid var(--c-line);
}
@media (min-width: 780px) { .page-hero { padding: 82px 0 92px; } }
.page-hero__inner { max-width: 980px; }
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--c-muted);
}
.breadcrumbs a { color: var(--c-blue-deep); font-weight: 700; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.page-title {
  max-width: 920px;
  font-size: clamp(36px, 6vw, 76px);
  line-height: .98;
  margin-top: 18px;
}
.page-lede {
  max-width: 760px;
  color: var(--c-ink-2);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}
.page-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 920px) { .content-grid { grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 34px; } }
.prose-card,
.detail-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.prose-card { padding: clamp(26px, 4vw, 44px); }
.prose-card p { font-size: 18px; }
.detail-card {
  padding: 26px;
  position: sticky;
  top: 96px;
}
.detail-card h2 { font-size: 24px; margin-bottom: 12px; }
.detail-card .btn { margin-top: 22px; width: 100%; }
.link-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) { .link-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .link-grid--three { grid-template-columns: repeat(3, 1fr); } }
.link-card {
  display: grid;
  gap: 8px;
  min-height: 160px;
  padding: 24px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(46,180,230,.08), rgba(230,59,46,.05)),
    #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.link-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-line-2);
  box-shadow: var(--shadow-md);
}
.link-card strong {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.15;
  color: var(--c-ink);
}
.link-card span {
  color: var(--c-muted);
  font-size: 15px;
}
.svc__title a {
  color: inherit;
  text-decoration: none;
}
.svc__title a:hover {
  color: var(--c-blue-deep);
  text-decoration: underline;
}
.nav__links a[aria-current="page"] {
  color: var(--c-red-2);
  font-weight: 700;
}

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

/* utility */
[hidden] { display: none !important; }
