:root {
  --red: #cc0000;
  --red-dark: #a60000;
  --ink: #111111;
  --charcoal: #242424;
  --paper: #f6f3ee;
  --white: #ffffff;
  --grey: #e1e2e6;
  --muted: #6f706f;
  --line: rgba(17, 17, 17, 0.14);
  --max: 1180px;
  --shadow: 0 24px 70px rgba(20, 16, 12, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E");
}

a { color: inherit; }
button, input, select { font: inherit; }
img { max-width: 100%; display: block; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 6px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}
.site-header.is-scrolled {
  width: 100%;
  padding-inline: max(20px, calc((100% - var(--max)) / 2));
  background: rgba(246, 243, 238, 0.93);
  backdrop-filter: blur(14px);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  color: var(--white);
  background: var(--red);
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
}
.brand-copy { display: grid; }
.brand-copy strong { font-size: 14px; letter-spacing: -0.01em; }
.brand-copy small { color: var(--muted); font-size: 9px; letter-spacing: 0.13em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.button) {
  position: relative;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transition: right 160ms ease;
}
.site-nav > a:hover::after { right: 0; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  background: transparent;
}
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--red);
  border-radius: 3px;
  color: var(--white);
  background: var(--red);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.015em;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.button:hover { transform: translateY(-2px); background: var(--red-dark); box-shadow: 0 10px 24px rgba(204, 0, 0, 0.18); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid rgba(204, 0, 0, 0.28); outline-offset: 3px; }
.button-small { min-height: 42px; padding-inline: 17px; font-size: 12px; }
.button-light { border-color: var(--white); color: var(--ink); background: var(--white); }
.button-light:hover { color: var(--white); background: transparent; box-shadow: none; }

.lead-dialog {
  width: min(760px, calc(100% - 28px));
  max-height: calc(100vh - 30px);
  padding: 0;
  border: 0;
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(0,0,0,.34);
  overflow-x: hidden;
  overflow-y: auto;
}
.lead-dialog::backdrop { background: rgba(17,17,17,.74); backdrop-filter: blur(5px); }
.dialog-close {
  position: absolute;
  top: 15px;
  right: 17px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255,255,255,.72);
  font-family: Georgia, serif;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}
.lead-dialog-heading { padding: 44px 52px 26px; }
.lead-dialog-heading h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(36px, 5vw, 54px); font-weight: 500; letter-spacing: -.045em; line-height: 1; }
.lead-dialog-heading > p:last-child { max-width: 600px; margin: 18px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.ghl-form-shell { min-height: 720px; margin: 0 22px; background: var(--white); }
.ghl-form-shell iframe { display: block; min-height: 720px; }
.ghl-form-note { margin: 14px 52px 34px; color: var(--muted); font-size: 9px; line-height: 1.55; }
body:has(.lead-dialog[open]) { overflow: hidden; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.82fr);
  gap: 56px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 0;
}
.hero-content { align-self: center; padding-bottom: 72px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3 { text-wrap: balance; }
h1 {
  max-width: 710px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}
h1 span { color: var(--red); font-style: italic; }
.hero-lede { max-width: 600px; margin: 26px 0 0; color: #545454; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 31px; }
.text-link { font-size: 13px; font-weight: 750; text-underline-offset: 5px; }
.trust-list {
  display: flex;
  gap: 0;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}
.trust-list li { display: grid; min-width: 140px; padding-right: 26px; border-right: 1px solid var(--line); }
.trust-list li + li { padding-left: 26px; }
.trust-list li:last-child { border-right: 0; }
.trust-list strong { font-family: Georgia, serif; font-size: 23px; font-weight: 600; }
.trust-list span { color: var(--muted); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; }

.hero-visual { position: relative; align-self: end; min-height: 590px; }
.portrait-frame {
  position: absolute;
  inset: 20px 0 0;
  overflow: hidden;
  background: #dbdad6;
  box-shadow: var(--shadow);
}
.portrait-frame::before {
  content: "SASKATCHEWAN";
  position: absolute;
  top: 24px;
  left: 26px;
  z-index: 2;
  color: rgba(17,17,17,.46);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(17,17,17,.28));
  pointer-events: none;
}
.portrait-frame img {
  position: absolute;
  z-index: 1;
  top: 32px;
  left: 50%;
  width: 115%;
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  filter: saturate(.88) contrast(1.02);
}
.prairie-sun {
  position: absolute;
  top: 68px;
  right: 34px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--red);
}
.portrait-caption {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: var(--white);
}
.portrait-caption > div { display: grid; }
.portrait-caption strong { font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.portrait-caption span { font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.atlas-pill { padding: 6px 8px; border: 1px solid rgba(255,255,255,.7); font-weight: 800; }
.hero-note {
  position: absolute;
  right: -23px;
  bottom: 82px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 19px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 36px rgba(17,17,17,.22);
}
.note-icon { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; color: var(--ink); background: var(--white); font-weight: 900; }
.hero-note div { display: grid; }
.hero-note strong { font-size: 12px; }
.hero-note div span { color: rgba(255,255,255,.68); font-size: 10px; }

.solution-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.solution-strip a {
  display: grid;
  gap: 4px;
  min-height: 142px;
  padding: 23px 26px;
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}
.solution-strip a:last-child { border-right: 0; }
.solution-strip a:hover { color: var(--white); background: var(--ink); }
.solution-strip span { color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.solution-strip strong { align-self: end; font-family: Georgia, serif; font-size: 21px; font-weight: 500; }
.solution-strip small { color: var(--muted); font-size: 11px; }
.solution-strip a:hover small { color: rgba(255,255,255,.67); }

.more-solutions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 14px;
  background: var(--line);
}
.more-solutions a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: var(--paper);
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 750;
  text-decoration: none;
}
.more-solutions a:hover { color: var(--red); background: var(--white); }

.tools-section {
  margin-top: 120px;
  padding: 105px max(20px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: var(--ink);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}
.section-heading h2, .answers-intro h2, .final-cta h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(40px, 5.2vw, 66px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}
.section-heading > p { margin: 0 0 5px; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.7; }

.calculator-shell { overflow: hidden; border: 1px solid rgba(255,255,255,.17); background: #181818; }
.tab-list { display: flex; border-bottom: 1px solid rgba(255,255,255,.17); }
.tab-list button {
  flex: 1;
  min-height: 64px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.17);
  color: rgba(255,255,255,.55);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
}
.tab-list button:last-child { border-right: 0; }
.tab-list button[aria-selected="true"] { color: var(--white); background: var(--red); }
.calculator-panel { display: none; grid-template-columns: 1fr 1fr; }
.calculator-panel.is-active { display: grid; }
.calculator-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; padding: 44px; }
.field { position: relative; display: grid; align-content: start; gap: 8px; }
.field label { color: rgba(255,255,255,.68); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
  border-radius: 0;
  color: var(--white);
  background: transparent;
  font-family: Georgia, serif;
  font-size: 26px;
  outline: none;
}
.field input:focus, .field select:focus { border-bottom-color: var(--red); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%); background-position: calc(100% - 13px) 23px, calc(100% - 8px) 23px; background-size: 5px 5px; background-repeat: no-repeat; }
.field select option { color: var(--ink); }
.money-field input { padding-left: 22px; }
.money-field > span { position: absolute; bottom: 11px; left: 0; color: rgba(255,255,255,.5); font-family: Georgia, serif; font-size: 24px; }
.percent-field input { padding-right: 30px; }
.percent-field > span { position: absolute; right: 5px; bottom: 11px; color: rgba(255,255,255,.5); font-family: Georgia, serif; font-size: 24px; }
.field small { color: rgba(255,255,255,.42); font-size: 10px; }

.calculator-results {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  padding: 44px;
  color: var(--white);
  background: var(--red);
}
.result-kicker { margin: 0; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.primary-result { display: flex; align-items: baseline; gap: 10px; margin: 5px 0 22px; }
.primary-result > span { font-family: Georgia, serif; font-size: clamp(44px, 5vw, 64px); letter-spacing: -.045em; }
.primary-result small { color: rgba(255,255,255,.7); font-size: 13px; }
.result-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 0 22px; border-top: 1px solid rgba(255,255,255,.28); border-bottom: 1px solid rgba(255,255,255,.28); }
.result-grid > div { display: grid; align-content: center; min-height: 92px; padding: 12px; border-right: 1px solid rgba(255,255,255,.28); }
.result-grid > div:first-child { padding-left: 0; }
.result-grid > div:last-child { border-right: 0; }
.result-grid span { color: rgba(255,255,255,.67); font-size: 9px; line-height: 1.3; text-transform: uppercase; }
.result-grid strong { margin-top: 6px; font-size: 14px; }
.calculator-alert { min-height: 42px; margin: 0 0 20px; color: rgba(255,255,255,.77); font-size: 11px; line-height: 1.55; }
.range-bar { height: 4px; margin: 1px 0 29px; background: rgba(255,255,255,.2); }
.range-bar span { display: block; width: 71%; height: 100%; background: var(--white); }
.tool-disclaimer { max-width: 860px; margin: 20px 0 0; color: rgba(255,255,255,.45); font-size: 10px; line-height: 1.6; }

.answers-section { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 120px 0 30px; }
.answers-intro { display: grid; grid-template-columns: 1.1fr .72fr; column-gap: 76px; align-items: end; }
.answers-intro .eyebrow { grid-column: 1 / -1; }
.answers-intro > p:last-child { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.answer-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; margin-top: 66px; }
.service-cards { display: grid; gap: 14px; }
.service-cards article { padding: 25px 27px; border: 1px solid var(--line); background: rgba(255,255,255,.36); transition: background 160ms ease, transform 160ms ease; }
.service-cards article:hover { transform: translateX(4px); background: var(--white); }
.service-cards article > span { color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-cards h3 { margin: 6px 0 7px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.service-cards p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.service-cards a { display: inline-block; margin-top: 15px; color: var(--red); font-size: 11px; font-weight: 800; text-underline-offset: 4px; }
.faq-block > h3 { margin: 0 0 15px; font-family: Georgia, serif; font-size: 28px; font-weight: 500; }
.faq-block details { border-top: 1px solid var(--line); }
.faq-block details:last-child { border-bottom: 1px solid var(--line); }
.faq-block summary { position: relative; padding: 20px 38px 20px 0; font-size: 14px; font-weight: 750; list-style: none; cursor: pointer; }
.faq-block summary::-webkit-details-marker { display: none; }
.faq-block summary::after { content: "+"; position: absolute; right: 5px; top: 17px; color: var(--red); font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.faq-block details[open] summary::after { content: "−"; }
.faq-block details p { max-width: 680px; margin: -4px 40px 20px 0; color: var(--muted); font-size: 12px; line-height: 1.75; }

.proof-heading { display: grid; grid-template-columns: .55fr 1fr; align-items: end; margin-top: 106px; }
.proof-heading .eyebrow { margin-bottom: 8px; }
.proof-heading h3 { margin: 0; font-family: Georgia, serif; font-size: 36px; font-weight: 500; line-height: 1.1; }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.testimonials figure { min-height: 270px; margin: 0; padding: 29px; border-right: 1px solid var(--line); }
.testimonials figure:last-child { border-right: 0; }
.stars { color: var(--red); font-size: 10px; letter-spacing: .16em; }
.testimonials blockquote { margin: 36px 0 31px; font-family: Georgia, serif; font-size: 17px; line-height: 1.55; }
.testimonials figcaption { display: grid; font-size: 11px; font-weight: 800; }
.testimonials figcaption span { color: var(--muted); font-size: 9px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }

.final-cta {
  display: grid;
  grid-template-columns: 1.15fr .65fr;
  gap: 90px;
  align-items: center;
  margin-top: 118px;
  padding: 68px;
  color: var(--white);
  background: var(--ink);
}
.final-cta > div:last-child > p { margin: 0 0 22px; color: rgba(255,255,255,.64); font-size: 14px; line-height: 1.7; }

.site-footer { display: grid; grid-template-columns: 1fr 1.05fr .8fr; gap: 40px; padding: 58px 0 20px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand > div { display: grid; }
.footer-brand strong { font-size: 13px; }
.footer-brand span:not(.brand-mark) { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.footer-contact, .footer-legal { display: grid; align-content: center; gap: 5px; color: var(--muted); font-size: 10px; }
.footer-contact a, .footer-legal a, .ghl-form-note a { text-underline-offset: 3px; }
.footer-legal { text-align: right; }
.legal-copy { grid-column: 1 / -1; max-width: 920px; margin: 10px 0 0; color: #888; font-size: 9px; line-height: 1.6; }
.footer-links { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 9px 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.footer-links a { color: var(--muted); font-size: 10px; text-underline-offset: 3px; }

/* Information pages */
.info-page .site-header { background: var(--paper); }
.info-main { min-height: 60vh; }
.info-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr);
  gap: 74px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 76px;
  border-bottom: 1px solid var(--line);
}
.breadcrumbs { margin: 0 0 22px; color: var(--muted); font-size: 11px; }
.breadcrumbs a { text-underline-offset: 3px; }
.info-hero h1 { max-width: 850px; font-size: clamp(48px, 6.5vw, 80px); }
.info-hero h1 em { color: var(--red); font-weight: 500; }
.answer-lede { max-width: 760px; margin: 25px 0 0; color: #4d4d4d; font-size: 18px; line-height: 1.75; }
.info-hero-actions { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 30px; }
.info-hero-aside { align-self: end; padding: 26px; color: var(--white); background: var(--ink); }
.info-hero-aside strong { display: block; margin-bottom: 12px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.info-hero-aside p, .info-hero-aside li { color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.65; }
.info-hero-aside ul { margin: 14px 0 0; padding-left: 18px; }
.info-content { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 82px; width: min(1040px, calc(100% - 40px)); margin: 0 auto; padding: 82px 0 110px; }
.info-article section { padding: 0 0 54px; scroll-margin-top: 100px; }
.info-article h2 { margin: 0 0 18px; font-family: Georgia, serif; font-size: clamp(32px, 4vw, 45px); font-weight: 500; letter-spacing: -.035em; line-height: 1.05; }
.info-article h3 { margin: 27px 0 10px; font-family: Georgia, serif; font-size: 24px; font-weight: 500; }
.info-article p, .info-article li { color: #444; font-size: 15px; line-height: 1.8; }
.info-article ul, .info-article ol { padding-left: 22px; }
.info-article li + li { margin-top: 9px; }
.process-list { counter-reset: steps; display: grid; gap: 12px; padding: 0 !important; list-style: none; }
.process-list li { position: relative; padding: 22px 22px 22px 68px; border: 1px solid var(--line); background: rgba(255,255,255,.35); }
.process-list li::before { counter-increment: steps; content: counter(steps, decimal-leading-zero); position: absolute; top: 22px; left: 22px; color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.answer-box { margin: 0 0 50px; padding: 25px 28px; border-left: 4px solid var(--red); background: var(--white); }
.answer-box strong { display: block; margin-bottom: 7px; font-family: Georgia, serif; font-size: 22px; font-weight: 500; }
.answer-box p { margin: 0; }
.info-sidebar { align-self: start; position: sticky; top: 105px; }
.sidebar-card { padding: 25px; border: 1px solid var(--line); background: rgba(255,255,255,.45); }
.sidebar-card + .sidebar-card { margin-top: 16px; }
.sidebar-card h2 { margin: 0 0 12px; font-family: Georgia, serif; font-size: 23px; font-weight: 500; }
.sidebar-card p, .sidebar-card a { font-size: 12px; line-height: 1.65; }
.sidebar-links { display: grid; gap: 9px; }
.sidebar-links a { color: var(--red-dark); text-underline-offset: 3px; }
.info-faq details { border-top: 1px solid var(--line); }
.info-faq details:last-child { border-bottom: 1px solid var(--line); }
.info-faq summary { padding: 19px 34px 19px 0; font-weight: 750; cursor: pointer; }
.info-faq details p { margin: 0 30px 20px 0; font-size: 14px; }
.info-cta { padding: 42px; color: var(--white); background: var(--ink); }
.info-cta h2 { color: var(--white); }
.info-cta p { color: rgba(255,255,255,.68); }
.info-page-footer { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 38px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; line-height: 1.7; }
.info-page-footer nav { display: flex; flex-wrap: wrap; gap: 8px 17px; margin-bottom: 16px; }
.info-page-footer a { text-underline-offset: 3px; }

.legal-page .site-header { position: relative; }
.legal-page .site-header.is-scrolled { width: min(var(--max), calc(100% - 40px)); padding-inline: 0; background: transparent; backdrop-filter: none; border-color: transparent; }
.legal-page .site-nav { gap: 20px; }
.legal-main { width: min(850px, calc(100% - 40px)); margin: 0 auto; padding: 76px 0 110px; }
.legal-intro { padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.legal-intro h1 { max-width: none; font-size: clamp(48px, 8vw, 82px); }
.legal-intro .legal-summary { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.legal-meta { margin: 20px 0 0; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.legal-notice { margin: 30px 0 0; padding: 18px 20px; border-left: 3px solid var(--red); background: rgba(204,0,0,.045); color: var(--charcoal); font-size: 12px; line-height: 1.65; }
.legal-content { padding-top: 42px; }
.legal-content section { scroll-margin-top: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 13px; font-family: Georgia, serif; font-size: 28px; font-weight: 500; letter-spacing: -.02em; }
.legal-content p, .legal-content li { color: #454545; font-size: 14px; line-height: 1.75; }
.legal-content p { margin: 0 0 12px; }
.legal-content ul { margin: 10px 0 4px; padding-left: 22px; }
.legal-content a { color: var(--red-dark); text-underline-offset: 3px; }
.legal-page-footer { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 34px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.legal-page-footer a { text-underline-offset: 3px; }

@media (max-width: 980px) {
  .site-header { min-height: 68px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 67px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }
  .site-nav.is-open { display: grid; }
  .site-nav > a:not(.button) { padding: 13px 2px; border-bottom: 1px solid var(--line); }
  .site-nav .button { margin-top: 14px; }
  .hero { grid-template-columns: 1fr .8fr; gap: 25px; padding-top: 56px; }
  .hero-visual { min-height: 500px; }
  .trust-list li { min-width: 0; }
  .hero-note { right: -8px; }
  .solution-strip { grid-template-columns: repeat(2, 1fr); }
  .solution-strip a:nth-child(2) { border-right: 0; }
  .solution-strip a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .more-solutions { grid-template-columns: repeat(2, 1fr); }
  .calculator-panel.is-active { grid-template-columns: 1fr; }
  .calculator-results { min-height: auto; }
  .answer-layout { grid-template-columns: 1fr; gap: 52px; }
  .answers-intro { grid-template-columns: 1fr; gap: 26px; }
  .proof-heading { grid-template-columns: 1fr; gap: 8px; }
  .testimonials { grid-template-columns: 1fr; }
  .testimonials figure { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .testimonials figure:last-child { border-bottom: 0; }
  .final-cta { grid-template-columns: 1fr; gap: 35px; }
  .info-hero { grid-template-columns: 1fr; gap: 35px; }
  .info-content { grid-template-columns: 1fr; gap: 45px; }
  .info-sidebar { position: static; }
}

@media (max-width: 720px) {
  .site-header, .hero, .answers-section { width: min(100% - 28px, var(--max)); }
  .brand-copy strong { font-size: 12px; }
  .hero { grid-template-columns: 1fr; padding-top: 50px; }
  .hero-content { padding-bottom: 12px; }
  h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .text-link { padding-left: 3px; }
  .trust-list { justify-content: space-between; }
  .trust-list li { flex: 1; padding-right: 12px; }
  .trust-list li + li { padding-left: 12px; }
  .trust-list strong { font-size: 19px; }
  .trust-list span { font-size: 8px; }
  .hero-visual { min-height: 500px; }
  .portrait-frame { inset-inline: 0; }
  .portrait-frame img { top: 24px; width: 130%; }
  .hero-note { right: 10px; bottom: 34px; }
  .solution-strip { grid-template-columns: 1fr; margin-top: 16px; }
  .solution-strip a { min-height: 112px; border-right: 0; border-bottom: 1px solid var(--line); }
  .solution-strip a:nth-child(3) { border-bottom: 1px solid var(--line); }
  .more-solutions { grid-template-columns: 1fr; }
  .tools-section { margin-top: 78px; padding-top: 75px; padding-bottom: 75px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading h2, .answers-intro h2, .final-cta h2 { font-size: 42px; }
  .tab-list button { padding-inline: 8px; font-size: 9px; }
  .calculator-form { grid-template-columns: 1fr; padding: 28px 22px; }
  .calculator-results { padding: 30px 22px; }
  .result-grid { grid-template-columns: 1fr; }
  .result-grid > div { min-height: 70px; padding: 12px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.28); }
  .result-grid > div:last-child { border-bottom: 0; }
  .answers-section { padding-top: 82px; }
  .answer-layout { margin-top: 45px; }
  .proof-heading { margin-top: 78px; }
  .testimonials blockquote { margin-top: 22px; }
  .final-cta { margin-top: 80px; padding: 38px 25px; }
  .site-footer { grid-template-columns: 1fr; gap: 22px; }
  .footer-legal { text-align: left; }
  .lead-dialog-heading { padding: 38px 24px 22px; }
  .ghl-form-shell { min-height: 760px; margin: 0 8px; }
  .ghl-form-shell iframe { min-height: 760px; }
  .ghl-form-note { margin: 12px 24px 30px; }
  .legal-main { width: min(100% - 28px, 850px); padding: 48px 0 72px; }
  .legal-intro h1 { font-size: 48px; }
  .legal-page-footer { width: min(100% - 28px, var(--max)); }
  .info-hero, .info-content, .info-page-footer { width: min(100% - 28px, var(--max)); }
  .info-hero { padding-top: 52px; }
  .info-hero h1 { font-size: 48px; }
  .answer-lede { font-size: 16px; }
  .info-content { padding-top: 58px; padding-bottom: 78px; }
  .info-cta { padding: 30px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
