:root {
  --navy: #2f4960;
  --navy-dark: #213547;
  --bg: #fafafa;
  --gray: #62605c;
  --accent: #998f82;
  --accent-text: #6d6259;
  --gold: #8a6500;
  --white: #ffffff;
  --line: #e7e3de;
  --soft: #f2efeb;
  --text: #26333d;
  --focus: #7a6e62;
  --shadow: 0 18px 45px rgba(47, 73, 96, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 18px;
  line-height: 1.65;
}
a { color: var(--navy); }
a:visited { color: var(--navy-dark); }
a:hover,
a:active { color: var(--navy-dark); }
img { max-width: 100%; height: auto; }
.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: absolute;
  left: -999px;
  top: 12px;
  background: var(--navy);
  color: var(--white);
  padding: .6rem .9rem;
  border-radius: 8px;
  z-index: 20;
}
.skip-link:focus { left: 12px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250,250,250,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: .9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.15;
  min-width: 0;
}
.brand-logo {
  display: block;
  width: auto;
  max-width: min(300px, calc(100vw - 8rem));
  height: clamp(44px, 4.8vw, 60px);
  object-fit: contain;
}
.brand small {
  display: block;
  color: var(--gray);
  font-weight: 600;
  font-size: .76rem;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  border-radius: 8px;
  padding: .6rem .75rem;
  font-weight: 700;
  cursor: pointer;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: .2rem;
}
.nav-menu a {
  text-decoration: none;
  color: var(--navy-dark);
  font-weight: 700;
  font-size: .94rem;
  padding: .55rem .7rem;
  border-radius: 8px;
}
.nav-menu a:hover, .nav-menu a[aria-current="page"] {
  background: var(--soft);
}
.button, .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .78rem 1.05rem;
  border-radius: 8px;
  border: 2px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
}
.button:hover, .nav-cta:hover { background: var(--navy-dark); color: var(--white); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
iframe:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(255,255,255,.72);
}
.button:visited, .nav-cta:visited { color: var(--white); }
.nav-menu a.nav-cta,
.nav-menu a.nav-cta:visited,
.nav-menu a.nav-cta[aria-current="page"] {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.nav-menu a.nav-cta:hover,
.nav-menu a.nav-cta:focus-visible,
.nav-menu a.nav-cta:active {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}
.button.secondary {
  background: transparent;
  color: var(--navy);
}
.button.secondary:visited { color: var(--navy); }
.button.secondary:hover { background: var(--soft); color: var(--navy-dark); }
.button.light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.button.light:visited { color: var(--navy); }
.button.light:hover {
  background: var(--soft);
  border-color: var(--soft);
  color: var(--navy-dark);
}
.page-hero .button.secondary,
.page-hero .button.secondary:visited,
.cta-band .button.secondary,
.cta-band .button.secondary:visited {
  border-color: rgba(255,255,255,.85);
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.page-hero .button.secondary:hover,
.page-hero .button.secondary:focus-visible,
.cta-band .button.secondary:hover,
.cta-band .button.secondary:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy-dark);
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(255,255,255,.13), transparent 24rem),
    radial-gradient(circle at 92% 18%, rgba(153,143,130,.22), transparent 22rem),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 58%, #3f6078 100%);
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  right: -12rem;
  bottom: -12rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
.hero-inner, .section, .footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.2rem 1.2rem;
}
.hero-inner { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  color: var(--accent-text);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  font-weight: 900;
  margin: 0 0 .8rem;
}
.hero .eyebrow,
.page-hero .eyebrow,
.guide-access-hero .eyebrow,
.guide-hero .eyebrow,
.cta-band .eyebrow,
.guide-cta-strip .eyebrow {
  color: #eadfd2;
}
h1, h2, h3 {
  color: var(--navy-dark);
  line-height: 1.14;
  margin: 0 0 1rem;
}
.hero h1 { color: var(--white); font-size: clamp(2.4rem, 6vw, 4.9rem); max-width: 900px; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.55rem); }
h3 { font-size: 1.25rem; }
.lead {
  font-size: 1.2rem;
  max-width: 760px;
  color: #52616b;
}
.hero .lead { color: #f7f4ef; font-size: 1.28rem; }
.hero .button.secondary,
.hero .button.secondary:visited {
  border-color: rgba(255,255,255,.9);
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.hero .button.secondary:hover,
.hero .button.secondary:focus-visible,
.hero .button.secondary:active {
  border-color: var(--white);
  color: var(--navy-dark);
  background: var(--white);
}
.hero .button.light,
.hero .button.light:visited {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}
.hero .button.light:hover,
.hero .button.light:focus-visible,
.hero .button.light:active {
  background: #efe7dd;
  border-color: #efe7dd;
  color: var(--navy-dark);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}
.trust-panel {
  background: rgba(255,255,255,.95);
  color: var(--text);
  border-radius: 8px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.trust-panel a,
.trust-panel a:visited {
  color: var(--navy-dark);
  font-weight: 900;
}
.trust-panel a:hover,
.trust-panel a:focus-visible {
  color: var(--navy);
}
.stars { color: var(--gold); font-size: 1.3rem; letter-spacing: .05em; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: .35rem .75rem;
  font-weight: 800;
  color: var(--navy);
}
.section.alt { background: var(--white); }
.section.tight { padding-top: 2.6rem; padding-bottom: 2.6rem; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 8px 26px rgba(47,73,96,.06);
}
.alt .card { background: var(--bg); }
.summary-box, .notice {
  border-left: 5px solid var(--accent);
  background: var(--soft);
  border-radius: 8px;
  padding: 1.2rem;
  margin: 1.2rem 0;
}
.notice { border-left-color: var(--navy); }
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.2rem;
}
.step:before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  margin-bottom: .8rem;
}
.prose { max-width: 890px; }
.prose li { margin-bottom: .45rem; }
.policy-page {
  max-width: 980px;
}
.policy-meta {
  display: inline-block;
  margin: 0 0 1.2rem;
  padding: .45rem .75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-dark);
  font-weight: 800;
}
.policy-section {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.policy-section:last-child {
  border-bottom: 0;
}
.policy-contact {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
}
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.1rem;
  margin-bottom: .75rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 850;
  color: var(--navy-dark);
}
.review-card blockquote {
  margin: 0;
  color: #33434f;
}
.review-card cite {
  display: block;
  color: var(--navy);
  font-weight: 900;
  margin-top: .9rem;
  font-style: normal;
}
.review-video-section {
  padding-bottom: 2.7rem;
}
.review-video-card {
  max-width: 930px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.review-video-card .lead {
  margin-bottom: 1.1rem;
}
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy-dark);
}
.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-fallback {
  margin: .85rem 0 0;
  font-weight: 800;
}
.cta-band {
  background: var(--navy);
  color: var(--white);
}
.cta-band h2, .cta-band p { color: var(--white); }
.site-footer {
  background: #213547;
  color: #eef3f6;
}
.footer-inner {
  padding-top: 3rem;
  padding-bottom: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
}
.site-footer a { color: #ffffff; }
.site-footer a:visited { color: #ffffff; }
.site-footer a:hover,
.site-footer a:active { color: #ffffff; }
.site-footer h2, .site-footer h3 { color: #ffffff; }
.footer-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 310px;
  padding: 0;
  margin-bottom: 1.15rem;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.footer-logo-card-minimal {
  margin-bottom: 1.25rem;
}
.footer-logo {
  display: block;
  width: 100%;
  height: auto;
}
.fine-print {
  border-top: 1px solid rgba(255,255,255,.2);
  margin-top: 2rem;
  padding-top: 1.2rem;
  color: #d8e0e5;
  font-size: .92rem;
}
.embed-frame {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .75rem;
  overflow: hidden;
}
.page-hero {
  background: linear-gradient(135deg, var(--navy), #49687f);
  color: var(--white);
}
.page-hero h1, .page-hero .lead { color: var(--white); }
.resource-list a {
  display: block;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
  font-weight: 850;
}
.resource-list a span {
  display: block;
  color: var(--gray);
  font-weight: 600;
  margin-top: .25rem;
}
.guide-access-hero,
.guide-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 14%, rgba(255,255,255,.16), transparent 24rem),
    radial-gradient(circle at 88% 8%, rgba(153,143,130,.24), transparent 26rem),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 56%, #3f6078 100%);
}
.guide-access-hero:before,
.guide-hero:before {
  content: "";
  position: absolute;
  right: -13rem;
  bottom: -14rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
.guide-access-hero .section,
.guide-hero .section {
  position: relative;
  z-index: 1;
}
.guide-access-hero .section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.guide-access-grid,
.guide-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 2rem;
  align-items: center;
}
.guide-access-copy h1,
.guide-hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  max-width: 880px;
}
.guide-access-hero .lead,
.guide-hero .lead {
  color: #f7f4ef;
  font-size: 1.25rem;
}
.guide-access-hero .button.secondary,
.guide-access-hero .button.secondary:visited,
.guide-hero .button.secondary,
.guide-hero .button.secondary:visited {
  border-color: rgba(255,255,255,.9);
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.guide-access-hero .button.secondary:hover,
.guide-access-hero .button.secondary:focus-visible,
.guide-hero .button.secondary:hover,
.guide-hero .button.secondary:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy-dark);
}
.guide-credibility {
  max-width: 680px;
  color: #f7f4ef;
  font-weight: 800;
}
.guide-stars {
  font-size: 1.45rem;
  margin: 1.1rem 0 .4rem;
}
.guide-access-hero .guide-stars,
.guide-hero .guide-stars {
  color: #f0d390;
}
.guide-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.1rem;
}
.guide-trust-row span {
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: .32rem .7rem;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: .9rem;
  font-weight: 850;
}
.guide-form-card,
.guide-top-card {
  background: rgba(255,255,255,.96);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 8px;
  padding: 1.2rem;
  box-shadow: 0 24px 60px rgba(20, 35, 48, .22);
}
.guide-form-card h2,
.guide-top-card h2 {
  color: var(--navy-dark);
}
.guide-form-card .eyebrow,
.guide-top-card .eyebrow {
  color: var(--accent-text);
}
.guide-form {
  display: grid;
  gap: .72rem;
  margin-top: .8rem;
}
.field {
  display: grid;
  gap: .3rem;
}
.field label,
.checkbox-line {
  color: var(--navy-dark);
  font-weight: 850;
}
.required-note,
.field-hint {
  color: var(--gray);
  font-weight: 700;
}
.field-hint,
.field-error {
  margin: 0;
  font-size: .88rem;
  line-height: 1.35;
}
.field-error {
  color: #8a1f11;
  font-weight: 800;
}
.form-instructions {
  margin: .35rem 0 0;
  color: var(--text);
  font-size: .92rem;
}
.form-status {
  margin-top: .25rem;
}
.field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .62rem .8rem;
  color: var(--text);
  background: var(--white);
  font: inherit;
}
.field input:focus-visible {
  border-color: var(--focus);
}
.field input[aria-invalid="true"],
.checkbox-line input[aria-invalid="true"] {
  border-color: #8a1f11;
}
.checkbox-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .65rem;
  align-items: start;
  font-size: .92rem;
  line-height: 1.45;
}
.checkbox-line input {
  margin-top: .25rem;
}
.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}
.privacy-note {
  color: var(--gray);
  font-size: .82rem;
  line-height: 1.45;
  margin: 0;
}
.embed-help,
.embed-fallback {
  color: var(--gray);
  font-size: .95rem;
  margin-top: 0;
}
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.guide-section-heading {
  max-width: 790px;
  margin-bottom: 1.5rem;
}
.guide-feature-grid,
.guide-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.guide-feature-card,
.guide-mini-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.15rem;
  box-shadow: 0 10px 28px rgba(47,73,96,.07);
}
.guide-feature-card h3,
.guide-mini-card h3 {
  margin-bottom: .45rem;
}
.guide-conversion-band,
.guide-cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  border-radius: 8px;
  padding: 1.4rem;
}
.guide-conversion-band {
  background: var(--soft);
  border: 1px solid var(--line);
}
.guide-cta-strip {
  max-width: 960px;
  margin: 0 auto;
  background: var(--navy);
  color: var(--white);
}
.guide-cta-strip h2,
.guide-cta-strip p {
  color: var(--white);
}
.guide-bookmark-note {
  display: inline-block;
  margin: 1rem 0 0;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 8px;
  padding: .65rem .8rem;
  background: rgba(255,255,255,.08);
  color: #f7f4ef;
  font-weight: 800;
}
.guide-article {
  max-width: 1000px;
}
.guide-toc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.guide-toc ol {
  columns: 2;
  gap: 2rem;
  padding-left: 1.25rem;
  margin: .4rem 0 0;
}
.guide-toc a {
  color: var(--navy-dark);
  font-weight: 850;
}
.guide-section {
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--line);
}
.guide-section:last-child {
  border-bottom: 0;
}
.guide-callout,
.guide-summary {
  border-radius: 8px;
  padding: 1.1rem;
  margin-top: 1rem;
}
.guide-callout {
  border: 1px solid rgba(153,143,130,.35);
  background: #f7f3ee;
}
.guide-summary {
  border-left: 5px solid var(--navy);
  background: var(--soft);
}
.location-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.2rem;
}
.location-strip span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: .35rem .7rem;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-weight: 800;
  font-size: .9rem;
}
.licensed-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 1.25rem;
  align-items: center;
}
.map-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.map-card img {
  display: block;
  width: 100%;
  border-radius: 8px;
  background: var(--bg);
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: .85rem;
  color: var(--gray);
  font-size: .92rem;
  font-weight: 700;
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.legend-swatch {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid var(--line);
}
.licensed-swatch { background: var(--navy); }
.neutral-swatch { background: var(--line); }
.state-list {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  padding: 0;
  margin: 1rem 0;
  list-style: none;
}
.state-list li {
  min-width: 42px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .28rem .55rem;
  background: var(--white);
  color: var(--navy);
  font-size: .88rem;
  font-weight: 900;
}
.alt .state-list li { background: var(--bg); }
.small-note {
  color: var(--gray);
  font-size: .92rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.team-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}
.team-photo {
  width: 104px;
  height: 126px;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(47, 73, 96, .14);
  object-fit: cover;
  object-position: center top;
}
.team-title {
  color: var(--accent-text);
  font-weight: 900;
  margin-top: -.5rem;
}
.credential-list {
  padding-left: 1.1rem;
}
.credential-list li { margin-bottom: .35rem; }
.service-area-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.2rem;
}
.footer-service-note {
  color: #d8e0e5;
  font-weight: 700;
}

@media (max-width: 860px) {
  body { font-size: 17px; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: .75rem;
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: .85rem; }
  .nav-cta { margin-top: .35rem; }
  .hero .actions {
    align-items: stretch;
  }
  .hero .actions .button {
    width: 100%;
  }
  .guide-access-grid,
  .guide-hero-grid,
  .guide-feature-grid,
  .guide-two-column,
  .guide-conversion-band,
  .guide-cta-strip,
  .hero-grid, .grid, .grid.two, .steps, .footer-grid, .licensed-layout, .team-grid {
    grid-template-columns: 1fr;
  }
  .guide-toc ol { columns: 1; }
  .guide-form-card { padding: 1rem; }
  .guide-conversion-band .button,
  .guide-cta-strip .button {
    width: 100%;
  }
  .team-card { grid-template-columns: 1fr; }
  .team-photo {
    width: 126px;
    height: 150px;
  }
  .hero-inner, .section, .footer-inner { padding: 3rem 1rem; }
}

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