/* Company Registration page — component styles. Tokens in
 * registration-tokens.css, fonts in registration-fonts.css. Structure via
 * borders, not shadows; the one exception is the hard 3px/4px offset shadow,
 * which is the signature of this design (see .reg-pill / .reg-btn-primary). */

* { box-sizing: border-box; }

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

/* .reg-header and .reg-footer are siblings of .reg-page, not descendants —
 * font-family lives on body too so they inherit it instead of falling back
 * to the browser's default serif. */
body {
  font-family: var(--reg-font-body);
}

.reg-page {
  background: var(--reg-canvas);
  color: var(--reg-ink);
  font-size: 15px;
  line-height: 1.65;
}

.reg-page h1, .reg-page h2, .reg-page h3 {
  font-family: var(--reg-font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
/* .reg-page's body line-height (1.65) was cascading into these — a 54px H1
 * rendered at line-height 89.76px, reading as broken/gappy rather than tight
 * display type. */
.reg-page h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -3px; line-height: 1.05; }
.reg-page h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); line-height: 1.15; }
.reg-page h3 { font-size: 1.15rem; line-height: 1.25; }
.reg-page small, .reg-note { font-size: 13px; color: var(--reg-muted); }

.reg-eyebrow {
  font-family: var(--reg-font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--reg-muted);
  display: block;
  margin-bottom: 10px;
}

.reg-money {
  font-family: var(--reg-font-mono);
  font-variant-numeric: tabular-nums;
}

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

.reg-section {
  padding: var(--reg-space-section) 0;
  /* Anchor-jumping to a section (subnav clicks, #hash URLs, the
     post-incorporation checkbox's scrollIntoView) would otherwise land the
     section's top edge — and its eyebrow label — underneath the fixed
     80px header + sticky subnav (~121px combined). */
  scroll-margin-top: 132px;
}
.reg-section + .reg-section {
  border-top: 1px solid var(--reg-border);
}

/* ---------------------------------------------------------------- header
 * Matches the real site's nav for light-background pages (CobaltNav /
 * UpdatedNavbar's onLight treatment): translucent paper + blur, same
 * 80px height, same 20px (px-5) side padding, same logo box (190x50),
 * same orange (#E8643A) interactive colour on nav links and the CTA.
 * Real production tokens (tailwind.config.js `cobalt.*`) are already
 * identical to this page's own --reg-* tokens; the one addition here is
 * that shared #E8643A accent, which the real nav hardcodes rather than
 * naming as a token, so this does too. */
.reg-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  background: rgba(245, 241, 232, .78);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--reg-border);
}
.reg-header-inner {
  height: 80px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.reg-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.reg-logo-img { display: block; width: 158px; height: 42px; object-fit: contain; }
@media (min-width: 640px) {
  .reg-logo-img { width: 190px; height: 50px; }
}
.reg-nav { display: none; align-items: center; gap: 24px; }
.reg-nav a {
  font-size: 16px;
  font-weight: 500;
  /* Matches the homepage nav's exact link color (#57534E) rather than
   * --reg-muted (#6B6558) — this nav mirrors the main site header. */
  color: #57534E;
  text-decoration: none;
  transition: color .15s;
  white-space: nowrap;
}
.reg-nav a:hover, .reg-nav a.reg-nav-current { color: #E8643A; }
.reg-cta-pill {
  display: none;
  border-radius: 12px;
  background: #E8643A;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 18px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .15s;
}
.reg-cta-pill:hover { background: #C74F28; }
.reg-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--reg-border);
  border-radius: 10px;
  color: var(--reg-ink);
  cursor: pointer;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .reg-header-inner { padding: 0 32px; }
  .reg-nav { display: flex; }
  .reg-cta-pill { display: inline-flex; align-items: center; }
  .reg-nav-toggle { display: none; }
}

.reg-mobile-menu {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(320px, 100vw);
  background: var(--reg-canvas);
  border-left: 1px solid var(--reg-border);
  z-index: 45;
  transform: translateX(100%);
  transition: transform .3s ease;
  padding: 96px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.reg-mobile-menu.is-open { transform: translateX(0); }
.reg-mobile-menu a {
  padding: 14px 12px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--reg-ink);
  text-decoration: none;
}
.reg-mobile-menu a:hover, .reg-mobile-menu a[aria-current="page"] { background: var(--reg-panel); color: #E8643A; }
.reg-mobile-menu .reg-cta-pill { display: inline-flex; justify-content: center; margin-top: 12px; }
.reg-mobile-menu[hidden] { display: none; }
.reg-mobile-backdrop {
  position: fixed; inset: 0;
  background: rgba(10, 15, 31, .4);
  z-index: 44;
}
.reg-mobile-backdrop[hidden] { display: none; }
@media (min-width: 1024px) {
  .reg-mobile-menu, .reg-mobile-backdrop { display: none !important; }
}

/* -------------------------------------------------------------- sub-nav */
.reg-subnav {
  position: sticky;
  top: 80px;
  z-index: 30;
  background: var(--reg-canvas);
  border-bottom: 1px solid var(--reg-border);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.reg-subnav::-webkit-scrollbar { display: none; }
.reg-subnav-inner { max-width: var(--reg-max-width); margin: 0 auto; padding: 0 20px; display: flex; gap: 4px; }
@media (min-width: 1024px) {
  .reg-subnav-inner { padding: 0 32px; }
}
.reg-subnav a {
  display: inline-block;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--reg-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.reg-subnav a.is-active { color: var(--reg-ink); border-bottom-color: var(--reg-lime); }

.reg-page { padding-top: 80px; }

/* ------------------------------------------------------------------ hero */
.reg-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 960px) {
  .reg-hero-grid { grid-template-columns: 1fr; }
  .reg-hero-grid > .reg-estimate-col { order: -1; }
}

.reg-answer-block {
  background: var(--reg-panel);
  border: 1px solid var(--reg-border);
  border-radius: var(--reg-radius-md);
  padding: 18px 20px;
  margin: 20px 0 32px;
  font-size: 14.5px;
}
.reg-answer-block strong { font-family: var(--reg-font-mono); font-variant-numeric: tabular-nums; }

/* ------------------------------------------------------------------ pill */
.reg-field-group { margin-bottom: 20px; }
.reg-field-title {
  font-family: var(--reg-font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--reg-muted);
  margin-bottom: 8px;
  display: block;
}
.reg-pill-group { display: grid; gap: 8px; }
.reg-pill-group[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.reg-pill-group[data-cols="5"] { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 480px) {
  .reg-pill-group[data-cols="5"] { grid-template-columns: repeat(3, 1fr); }
}

.reg-pill {
  padding: 11px 6px;
  border-radius: var(--reg-radius-sm);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  transition: all .15s;
  background: var(--reg-panel);
  color: var(--reg-ink);
  border: 1px solid var(--reg-border);
  text-align: center;
  font-family: var(--reg-font-body);
}
.reg-pill[aria-pressed="true"] {
  background: var(--reg-ink);
  color: var(--reg-ink-on-dark);
  border-color: var(--reg-ink);
  box-shadow: 3px 3px 0 var(--reg-lime);
}
.reg-pill:focus-visible { outline: 2px solid var(--reg-blue); outline-offset: 2px; }
.reg-pill:disabled { opacity: .35; cursor: not-allowed; }

.reg-select {
  width: 100%;
  padding: 11px 36px 11px 12px;
  border-radius: var(--reg-radius-sm);
  border: 1px solid var(--reg-border);
  background: var(--reg-canvas) url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='%236B6558' d='M5.5 7.5l4.5 4.5 4.5-4.5z'/%3e%3c/svg%3e") no-repeat right 10px center;
  background-size: 16px;
  appearance: none;
  font-size: 14px;
  color: var(--reg-ink);
  font-family: var(--reg-font-body);
}
.reg-select:focus-visible { outline: 2px solid var(--reg-blue); outline-offset: 2px; }

.reg-checkbox-row { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.reg-checkbox {
  width: 20px; height: 20px; border-radius: 5px; flex-shrink: 0; margin-top: 1px;
  background: var(--reg-canvas); border: 1px solid var(--reg-border);
  display: inline-flex; align-items: center; justify-content: center;
}
/* aria-checked lives on the [role="checkbox"] row (correct ARIA target),
 * not on the decorative .reg-checkbox box itself — style via descendant. */
.reg-checkbox-row[aria-checked="true"] .reg-checkbox { background: var(--reg-blue); border-color: var(--reg-blue); }
.reg-checkbox svg { width: 12px; height: 12px; fill: none; stroke: white; stroke-width: 3; visibility: hidden; }
.reg-checkbox-row[aria-checked="true"] .reg-checkbox svg { visibility: visible; }

/* -------------------------------------------------------------- estimate */
.reg-estimate-col { position: sticky; top: 104px; }
.reg-estimate-panel {
  border: 1px solid var(--reg-border);
  border-radius: var(--reg-radius-lg);
  background: #FFFFFF;
  overflow: hidden;
}
.reg-estimate-badge {
  font-family: var(--reg-font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 14px 20px;
  border-bottom: 1px solid var(--reg-border);
  color: var(--reg-muted);
}
.reg-line-group { padding: 16px 20px; border-bottom: 1px solid var(--reg-border); }
.reg-line-group-title { font-family: var(--reg-font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--reg-muted); margin-bottom: 10px; }
.reg-line-row { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; }
.reg-line-label { font-weight: 600; font-size: 14px; }
.reg-line-note { font-family: var(--reg-font-mono); font-size: 11px; color: var(--reg-muted); margin-top: 2px; }
.reg-line-amount { font-family: var(--reg-font-mono); font-size: 14px; font-variant-numeric: tabular-nums; white-space: nowrap; }

.reg-total-bar {
  background: var(--reg-lime);
  padding: 20px;
  text-align: right;
}
.reg-total-label { font-family: var(--reg-font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; }
.reg-total-figure {
  font-family: var(--reg-font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.reg-total-note { padding: 10px 20px 0; font-size: 12.5px; color: var(--reg-muted); text-align: right; }

.reg-cta-stack { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }

.reg-btn-primary, .reg-btn-secondary {
  border-radius: 12px;
  padding: 15px 22px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: box-shadow .15s, transform .05s;
}
.reg-btn-primary {
  background: var(--reg-ink);
  color: var(--reg-ink-on-dark);
  box-shadow: 4px 4px 0 var(--reg-lime);
}
.reg-btn-primary:active { box-shadow: 2px 2px 0 var(--reg-lime); transform: translate(2px, 2px); }
.reg-btn-secondary { background: transparent; border: 1px solid var(--reg-border); color: var(--reg-ink); }
.reg-btn-primary:focus-visible, .reg-btn-secondary:focus-visible { outline: 2px solid var(--reg-blue); outline-offset: 2px; }

.reg-disclaimer { padding: 0 20px 20px; font-size: 12px; color: var(--reg-muted); }

/* ------------------------------------------------------------ trust strip */
.reg-trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 640px) { .reg-trust-strip { grid-template-columns: repeat(2, 1fr); } }
.reg-trust-cell { padding: 20px; border-left: 1px solid var(--reg-border); text-align: center; }
.reg-trust-cell:first-child { border-left: none; }
.reg-trust-figure { font-family: var(--reg-font-display); font-weight: 800; font-size: 1.8rem; }

/* --------------------------------------------------------------- grids */
.reg-card-grid { display: grid; grid-template-columns: repeat(3, minmax(260px, 1fr)); gap: 16px; }
@media (max-width: 900px) { .reg-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reg-card-grid { grid-template-columns: 1fr; } }
.reg-card { border: 1px solid var(--reg-border); border-radius: var(--reg-radius-md); padding: 20px; background: var(--reg-canvas); }
.reg-card-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--reg-panel); margin-bottom: 12px; }

/* -------------------------------------------------------------- table */
.reg-table-scroll { overflow-x: auto; }
.reg-table { border-collapse: collapse; width: 100%; min-width: 680px; }
.reg-table th, .reg-table td { border: 1px solid var(--reg-border); padding: 12px 14px; text-align: left; font-size: 13.5px; }
.reg-table thead th { font-family: var(--reg-font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--reg-muted); background: var(--reg-panel); }
.reg-eeat-box { margin-top: 24px; padding: 12px 16px; background: var(--reg-panel); border-radius: var(--reg-radius-sm); font-size: 13.5px; color: var(--reg-muted); }
.reg-table col.is-active-entity { background: rgba(215,255,61,.12); }
.reg-table th.is-active-entity, .reg-table td.is-active-entity { background: rgba(215,255,61,.14); border-top: 2px solid var(--reg-lime); }

/* ---------------------------------------------------------- documents */
.reg-doc-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 720px) { .reg-doc-list { grid-template-columns: 1fr; } }
.reg-doc-item { display: flex; gap: 14px; }
.reg-doc-number {
  width: 32px; height: 32px; border-radius: 999px; background: var(--reg-ink); color: var(--reg-lime);
  font-family: var(--reg-font-mono); font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.reg-chip { display: inline-block; font-size: 11px; font-family: var(--reg-font-mono); text-transform: uppercase; letter-spacing: .06em; padding: 3px 8px; border: 1px solid var(--reg-border); border-radius: 999px; margin-left: 8px; }
.reg-callout { background: var(--reg-panel); border-radius: var(--reg-radius-sm); padding: 12px 16px; font-size: 13.5px; margin-bottom: 20px; }

/* -------------------------------------------------------------- timeline */
.reg-timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
@media (max-width: 860px) { .reg-timeline { grid-template-columns: 1fr; } }
.reg-timeline-step { padding: 16px; border-top: 2px solid var(--reg-blue); }
@media (max-width: 860px) { .reg-timeline-step { border-top: none; border-left: 2px solid var(--reg-blue); } }
.reg-duration-chip { display: inline-block; margin-top: 10px; border: 1px solid var(--reg-lime); border-radius: 999px; padding: 4px 10px; font-family: var(--reg-font-mono); font-size: 11px; }

/* -------------------------------------------------------- post-incorporation */
.reg-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 24px; }
.reg-chip-row .reg-chip { margin-left: 0; }
.reg-price-table { width: 100%; border-collapse: collapse; }
.reg-price-table td { border-top: 1px solid var(--reg-border); padding: 12px 0; }
.reg-price-table td:last-child { text-align: right; font-family: var(--reg-font-mono); font-variant-numeric: tabular-nums; }
.reg-flash { animation: reg-flash-anim 0.9s ease; }
@keyframes reg-flash-anim {
  0%, 100% { box-shadow: none; }
  30% { box-shadow: 0 0 0 3px var(--reg-blue); border-radius: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .reg-flash { animation: none; }
}

/* --------------------------------------------------------------- lead form */
.reg-dark-section { background: var(--reg-ink); color: var(--reg-ink-on-dark); }
.reg-dark-section h2 { color: var(--reg-ink-on-dark); }
.reg-dark-section .reg-eyebrow { color: rgba(245,241,232,.6); }
.reg-lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 800px) { .reg-lead-grid { grid-template-columns: 1fr; } }
.reg-input {
  width: 100%; padding: 12px 14px; border-radius: var(--reg-radius-sm);
  border: 1px solid rgba(245,241,232,.25); background: transparent; color: var(--reg-ink-on-dark);
  font-size: 14px; margin-bottom: 12px; font-family: var(--reg-font-body);
}
.reg-input::placeholder { color: rgba(245,241,232,.5); }
.reg-input:focus-visible { outline: 2px solid var(--reg-lime); outline-offset: 2px; }
.reg-dark-section .reg-pill { background: transparent; border-color: rgba(245,241,232,.25); color: var(--reg-ink-on-dark); }
.reg-dark-section .reg-pill[aria-pressed="true"] { background: var(--reg-lime); color: var(--reg-ink); border-color: var(--reg-lime); box-shadow: none; }
.reg-dark-section .reg-checkbox { background: transparent; border-color: rgba(245,241,232,.4); }
.reg-lead-success { padding: 20px; border: 1px solid rgba(245,241,232,.25); border-radius: var(--reg-radius-md); }

/* -------------------------------------------------------------------- FAQ */
.reg-faq-item { border-bottom: 1px solid var(--reg-border); padding: 16px 0; }
.reg-faq-item summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.reg-faq-item summary::-webkit-details-marker { display: none; }
.reg-faq-glyph { font-family: var(--reg-font-mono); font-size: 18px; color: var(--reg-muted); }
.reg-faq-item[open] .reg-faq-glyph { transform: rotate(45deg); }
.reg-faq-item p { margin: 10px 0 0; color: var(--reg-muted); font-size: 14px; }

/* -------------------------------------------------------------------- footer
 * Matches the real inner-page footer exactly (measured live on
 * https://www.aiiqa.com/about/): #060a14 background, 14px links/tagline at
 * #9CA3AF, 14px uppercase headings with 0.7px tracking, 12px bottom bar at
 * #6B7280. Real contact details (aiiqainnovation@gmail.com — the actual
 * displayed address, not the support@aiiqa.com in the Footer.jsx source,
 * which is stale relative to what's deployed). */
.reg-footer { background: #060a14; color: #9CA3AF; font-size: 14px; }
.reg-footer-inner { max-width: 1280px; margin: 0 auto; padding: 56px 24px 32px; }
.reg-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 900px) { .reg-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reg-footer-grid { grid-template-columns: 1fr; } }
.reg-footer-brand p { margin: 16px 0; max-width: 320px; line-height: 1.6; font-size: 14px; color: #9CA3AF; }
.reg-footer-logo { display: block; width: 130px; height: 36px; object-fit: contain; }
.reg-footer-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--reg-blue); color: #fff; text-decoration: none;
  font-size: 13.5px; font-weight: 600; padding: 10px 20px; border-radius: 999px;
}
.reg-footer-social { display: flex; gap: 8px; margin-top: 20px; }
.reg-footer-social a {
  width: 36px; height: 36px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  color: #9CA3AF; text-decoration: none;
  display: flex; align-items: center; justify-content: center;
}
.reg-footer-social a:hover { color: #fff; background: rgba(21,48,240,.3); }
.reg-footer-col h3 { color: #fff; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .7px; margin: 0 0 16px; }
.reg-footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.reg-footer-col a { color: #9CA3AF; text-decoration: none; font-size: 14px; }
.reg-footer-col a:hover { color: #fff; }
.reg-footer-contact li { display: flex; align-items: flex-start; gap: 8px; color: #9CA3AF; font-size: 14px; }
.reg-footer-contact li svg { flex-shrink: 0; margin-top: 2px; color: var(--reg-blue); }
.reg-footer-badge {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 8px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  font-size: 11.5px; color: #9CA3AF;
}
.reg-footer-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; flex-shrink: 0; }
.reg-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 12px; color: #6B7280;
}
.reg-footer-bottom strong { color: var(--reg-blue); }
.reg-footer-bottom-links { display: flex; gap: 20px; }
.reg-footer-bottom-links a { color: inherit; text-decoration: none; }
.reg-footer-bottom-links a:hover { color: #fff; }

/* ----------------------------------------------------------- sticky mobile CTA */
.reg-sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--reg-ink); color: var(--reg-ink-on-dark);
  padding: 12px 16px; display: none; align-items: center; justify-content: center;
  box-shadow: 0 -2px 0 var(--reg-border);
}
.reg-sticky-cta.is-visible { display: flex; }
.reg-sticky-cta a { color: inherit; text-decoration: none; font-weight: 600; }
@media (min-width: 1024px) { .reg-sticky-cta { display: none !important; } }

/* ------------------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reg-page * { transition: none !important; animation: none !important; }
}

/* ------------------------------------------------------------------- print */
@media print {
  .reg-header, .reg-subnav, .reg-sticky-cta, .reg-footer, .reg-mobile-menu, .reg-mobile-backdrop, .reg-section:not(#calculator) { display: none !important; }
  .reg-page { padding-top: 0; }
  .reg-hero-grid { display: block; }
  .reg-estimate-col { position: static; }
  body { background: white; }
}

@media (max-width: 960px) {
  .reg-lead-grid, .reg-hero-grid { gap: 20px; }
}
