:root {
  --bg: #061b46;
  --bg-soft: #0b3376;
  --ink: #f7f1e8;
  --muted: #c9d4e8;
  --line: rgba(218, 233, 255, 0.18);
  --red: #ff3b30;
  --gold: #f6c445;
  --mint: #26d7a3;
  --blue: #5fb2ff;
  --white: #ffffff;
  --panel: rgba(8, 39, 91, 0.58);
  --panel-strong: rgba(9, 31, 74, 0.78);
  --shadow: 0 24px 80px rgba(0, 14, 41, 0.36);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  background: #061b46;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-x: clip;
  background:
    repeating-radial-gradient(ellipse at 50% -10%, transparent 0 7.4rem, rgba(111, 185, 255, 0.07) 7.55rem 7.75rem, transparent 8rem 10.2rem),
    repeating-radial-gradient(ellipse at 50% 110%, transparent 0 8rem, rgba(111, 185, 255, 0.06) 8.15rem 8.35rem, transparent 8.65rem 11rem),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 78% 24%, rgba(30, 110, 255, 0.58), transparent 29rem),
    radial-gradient(circle at 16% 8%, rgba(34, 211, 238, 0.24), transparent 24rem),
    radial-gradient(circle at 8% 62%, rgba(255, 59, 48, 0.16), transparent 24rem),
    linear-gradient(145deg, #03122f 0%, #08265d 42%, #0f4ca2 72%, #061a44 100%);
  background-attachment: fixed;
  background-position: center top, center bottom, center, center, center, center, center, center;
  background-size: 100% 32rem, 100% 34rem, 44px 44px, 44px 44px, auto, auto, auto, auto;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(ellipse at 50% -10%, transparent 32%, rgba(92, 171, 255, 0.18) 33%, transparent 34%, transparent 39%, rgba(92, 171, 255, 0.12) 40%, transparent 41%),
    radial-gradient(ellipse at 50% 108%, transparent 34%, rgba(92, 171, 255, 0.2) 35%, transparent 36%, transparent 41%, rgba(92, 171, 255, 0.12) 42%, transparent 43%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-position: center top, center bottom, center, center;
  background-size: 100% 28rem, 100% 26rem, 44px 44px, 44px 44px;
  opacity: 0.86;
  mask-image: linear-gradient(to bottom, black, black 72%, transparent 100%);
}

body::after {
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 36vh;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(ellipse at 50% 100%, rgba(23, 154, 255, 0.44), transparent 58%),
    linear-gradient(180deg, transparent, rgba(9, 71, 162, 0.28));
  opacity: 0.8;
}

::selection {
  background: rgba(246, 196, 69, 0.34);
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--gold);
  color: #111;
  padding: 0.75rem 1rem;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 20, 52, 0.82);
  backdrop-filter: blur(18px);
  transition: background 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.site-header.is-scrolled {
  background: rgba(4, 20, 52, 0.94);
  box-shadow: 0 12px 32px rgba(0, 14, 41, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: min(var(--max), calc(100% - 1.25rem));
  margin: 0 auto;
  padding: 0.85rem 0;
}

.brand,
.nav-links,
.trust-list,
.trust-strip,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  width: min(34vw, 9.5rem);
  min-width: 6.25rem;
}

.brand img {
  width: auto;
  max-width: 100%;
  height: 3.4rem;
  max-height: 4rem;
  object-fit: contain;
  border-radius: var(--radius);
}

.brand-tagline {
  display: none;
  flex: 0 0 auto;
  margin-left: 0.15rem;
  padding-left: 0.85rem;
  border-left: 1px solid rgba(218, 233, 255, 0.25);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: none;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.nav-links a,
.site-footer a {
  position: relative;
  transition: color 160ms ease, text-shadow 160ms ease;
}

.nav-links a {
  white-space: nowrap;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -0.28rem;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(246, 196, 69, 0.28);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  display: none;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid rgba(218, 233, 255, 0.32);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(95, 178, 255, 0.52), rgba(16, 70, 165, 0.62)),
    rgba(8, 39, 91, 0.76);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  padding: 0.62rem 0.9rem;
  text-shadow: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nav-toggle-label {
  letter-spacing: 0.04em;
}

.nav-toggle-caret {
  display: block;
  font-size: 0.7em;
  line-height: 1;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-caret {
  transform: rotate(180deg);
}

/* Active nav link indicator */
.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta[aria-current="page"] {
  border-color: rgba(246, 196, 69, 0.52);
  color: var(--gold);
  box-shadow: 0 0 22px rgba(246, 196, 69, 0.1);
}

/* Section-level CTA button row (used on inner pages) */
.section-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.section-cta-actions .button {
  width: auto;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.65rem;
  color: var(--gold);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
}

.section {
  width: min(var(--max), calc(100% - 1.25rem));
  margin: 0 auto;
  padding: 3.6rem 0;
}

.hero {
  display: grid;
  gap: 2rem;
  min-height: 88vh;
  align-items: center;
  padding-top: 4rem;
}

.hero-copy,
.hero-panel {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Anton, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.1rem;
  font-size: clamp(3.2rem, 12vw, 7.2rem);
}

#hero-title {
  max-width: min(15ch, 100%);
  font-size: clamp(2.8rem, 9vw, 6.6rem);
  line-height: 0.98;
}

h2 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: clamp(2.45rem, 12vw, 5.8rem);
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.18rem;
  line-height: 1.12;
}

.hero-subhead,
.hero-warning,
.meet-copy,
.split-copy,
.faq-list p,
.final-cta p,
.final-note {
  color: var(--muted);
  font-size: clamp(1.08rem, 4vw, 1.35rem);
}

.hero-subhead {
  max-width: 46rem;
}

.hero-video-wrap {
  width: min(100%, 18.75rem);
  aspect-ratio: 9 / 16;
  margin: 1.1rem 0 1.35rem;
  border: 1px solid rgba(218, 233, 255, 0.2);
  border-radius: calc(var(--radius) + 10px);
  background: transparent;
  box-shadow: 0 18px 48px rgba(0, 14, 41, 0.34);
  overflow: hidden;
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  background: transparent;
}


.hero-warning {
  max-width: 42rem;
  margin: 1rem 0 0;
  border: 1px solid rgba(255, 59, 48, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 59, 48, 0.1);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  padding: 0.75rem 1rem;
}

.hero-actions {
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  width: 100%;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 0.95rem 1.25rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
  will-change: transform;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.99);
}

.button-primary {
  background: var(--gold);
  color: #111;
  box-shadow: 6px 6px 0 var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 7px 7px 0 var(--red), 0 0 28px rgba(246, 196, 69, 0.24);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.09);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(246, 196, 69, 0.48);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22), 0 0 22px rgba(246, 196, 69, 0.1);
}

.button-dark {
  background: #061226;
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #0b1f45;
  box-shadow: 0 12px 28px rgba(6, 18, 38, 0.32);
}

.trust-list {
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.trust-strip {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: 1rem 0 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 47, 106, 0.46);
  list-style: none;
  overflow: hidden;
}

.trust-strip li {
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.trust-strip li:last-child {
  border-bottom: 0;
}

.hero-panel,
.service-card,
.fit-grid article,
.offer-card,
.process-grid article,
.proof-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.service-card,
.fit-grid article,
.offer-card,
.process-grid article,
.proof-card,
.faq-list details {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.service-card:hover,
.fit-grid article:hover,
.offer-card:hover,
.process-grid article:hover,
.proof-card:hover,
.faq-list details:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 196, 69, 0.34);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42), 0 0 24px rgba(246, 196, 69, 0.08);
}

.hero-panel {
  overflow: hidden;
}

.fred-image-frame,
.service-image,
.process-image {
  display: grid;
  place-items: end center;
  overflow: visible;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.fred-image-frame img,
.service-image img,
.process-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 180ms ease, filter 180ms ease;
}

.fred-image-frame:hover img,
.service-card:hover .service-image img,
.process-grid article:hover .process-image img {
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.22));
  transform: translateY(-2px) scale(1.01);
}

.hero-fred-frame {
  margin: 1rem 1rem 0;
  max-height: 25rem;
  background: transparent;
}

.hero-fred-frame img {
  width: min(86%, 24rem);
}

.browser-bar {
  display: flex;
  gap: 0.45rem;
  border-bottom: 1px solid var(--line);
  padding: 0.9rem;
}

.browser-bar span {
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 50%;
  background: var(--red);
}

.browser-bar span:nth-child(2) {
  background: var(--gold);
}

.browser-bar span:nth-child(3) {
  background: var(--mint);
}

.diagnostic-card {
  padding: 1.25rem;
}

.card-kicker,
.service-number,
.process-grid span {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.diagnostic-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.ticker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.ticker span {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem;
  font-size: 0.86rem;
  font-weight: 900;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-intro {
  max-width: 48rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 3vw, 1.25rem);
}

.service-grid,
.meet-section,
.fit-grid,
.offer-grid,
.process-grid,
.proof-grid {
  display: grid;
  gap: 0.9rem;
}

.service-card,
.fit-grid article,
.offer-card,
.process-grid article,
.proof-card {
  padding: 1.2rem;
}

.service-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.service-image {
  min-height: 13rem;
  max-height: 13rem;
}

.service-image img {
  width: min(86%, 16rem);
  max-height: 12.4rem;
}

.service-card p,
.fit-grid p,
.offer-card p,
.process-grid p,
.proof-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.portfolio-categories {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: 1.8rem;
}

.portfolio-category {
  display: grid;
  gap: 1.15rem;
}

.portfolio-category-heading {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(77, 163, 255, 0.26);
  padding-bottom: 0.85rem;
  text-align: center;
}

.portfolio-category-heading h3,
.portfolio-category-title {
  margin: 0;
  max-width: none;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 4vw, 2.1rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: none;
}

.portfolio-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 23rem));
  align-items: start;
  justify-content: center;
  gap: 1rem;
}

.portfolio-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  overflow: hidden;
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(95, 178, 255, 0.18), transparent 42%),
    var(--panel);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.portfolio-card:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 196, 69, 0.42);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.44), 0 0 24px rgba(77, 163, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(95, 178, 255, 0.24), transparent 44%),
    rgba(13, 55, 122, 0.68);
}

.portfolio-card h3,
.portfolio-card p {
  margin: 0;
}

.portfolio-card h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  line-height: 1.08;
}

.portfolio-card p {
  max-width: 54ch;
}

.portfolio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.portfolio-label {
  width: fit-content;
  border: 1px solid rgba(77, 163, 255, 0.5);
  border-radius: 999px;
  background: rgba(77, 163, 255, 0.12);
  color: #d7eaff;
  padding: 0.22rem 0.58rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-featured {
  width: fit-content;
  border: 1px solid rgba(246, 196, 69, 0.55);
  border-radius: 999px;
  background: rgba(246, 196, 69, 0.14);
  color: var(--gold);
  padding: 0.22rem 0.58rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 0;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(77, 163, 255, 0.42), rgba(255, 59, 48, 0.32));
  background-size: 24px 24px, 24px 24px, auto;
}

.portfolio-media img,
.portfolio-media video,
.portfolio-placeholder {
  width: 100%;
  height: 100%;
  min-height: 12rem;
  object-fit: cover;
  object-position: top center;
  transition: transform 220ms ease, filter 220ms ease;
}

.portfolio-card:hover .portfolio-media img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.015);
}

.portfolio-media video {
  background: #061226;
}

.portfolio-placeholder {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, var(--blue), var(--red));
  background-size: 24px 24px, 24px 24px, auto;
}

.portfolio-button {
  justify-self: start;
  width: 100%;
  margin-top: 0.35rem;
}

.portfolio-empty {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(95, 178, 255, 0.18), rgba(246, 196, 69, 0.1)),
    var(--panel);
  box-shadow: var(--shadow);
  color: var(--muted);
  padding: clamp(1.1rem, 3vw, 1.6rem);
}

.portfolio-empty-small {
  box-shadow: none;
}

.portfolio-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 59, 48, 0.17), rgba(246, 196, 69, 0.13), rgba(95, 178, 255, 0.14)),
    var(--panel);
  padding: clamp(1.1rem, 3vw, 1.45rem);
  text-align: center;
}

.portfolio-cta h3 {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 2rem);
}

.portfolio-cta .button {
  width: 100%;
}

.proof-section > .section-heading {
  justify-items: center;
  text-align: center;
}

.offer-card {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.offer-card p {
  margin-bottom: 0.25rem;
}

.offer-card .button {
  margin-top: auto;
}

.featured-offer {
  background:
    linear-gradient(135deg, rgba(246, 196, 69, 0.18), rgba(255, 59, 48, 0.12), rgba(95, 178, 255, 0.1)),
    rgba(12, 53, 120, 0.68);
}

.split-section {
  display: grid;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.meet-section {
  gap: 1.5rem;
  border-top: 1px solid var(--line);
}

.meet-copy {
  display: grid;
  gap: 1rem;
}

.meet-copy p {
  margin-bottom: 0;
}

.meet-intro {
  display: grid;
  gap: 1rem;
}

.meet-intro > .eyebrow {
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
}

.meet-inline-image {
  display: grid;
  justify-items: center;
  align-self: center;
}

.meet-inline-image img {
  width: min(100%, 15rem);
}

.meet-image,
.trust-image,
.faq-image,
.contact-image {
  align-self: center;
}

.meet-image img,
.trust-image img,
.contact-image img {
  width: min(74%, 18rem);
}

.contact-form {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  width: 100%;
  border-radius: var(--radius);
  background: var(--ink);
  color: #111;
  padding: 1rem;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 3.25rem;
  border: 2px solid #111;
  border-radius: var(--radius);
  padding: 0.8rem;
  font: inherit;
  color: #111;
  background: #fff;
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #5f5b55;
  opacity: 1;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-alert {
  margin: 0;
  border: 3px solid #111;
  border-radius: var(--radius);
  padding: 1rem;
  color: #111;
  font-weight: 900;
  line-height: 1.35;
  scroll-margin-top: 8rem;
  box-shadow: 6px 6px 0 #111;
}

.form-alert-success {
  background: #26d7a3;
}

.form-alert-error {
  background: #ffb8b1;
}

.form-alert:focus {
  outline: 4px solid var(--gold);
  outline-offset: 4px;
}

.form-note {
  margin: 0;
  color: #34312d;
  font-size: 0.88rem;
  line-height: 1.45;
}

.form-note a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.process-grid article {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  box-shadow: none;
}

.process-image {
  min-height: 12rem;
  max-height: 12rem;
}

.process-image img {
  width: min(82%, 12.5rem);
  max-height: 11.5rem;
}

.faq-section {
  display: grid;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 0.75rem 0 0;
}

.faq-image img {
  width: min(70%, 14rem);
}

.proof-image {
  min-height: 11rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, var(--red), var(--gold));
  background-size: 24px 24px, 24px 24px, auto;
}

.image-two {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, var(--mint), var(--blue));
  background-size: 24px 24px, 24px 24px, auto;
}

.image-three {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(135deg, var(--gold), #ff7a3d);
  background-size: 24px 24px, 24px 24px, auto;
}

.final-cta {
  display: grid;
  gap: 1.5rem;
  justify-items: start;
  align-items: center;
  border-top: 1px solid var(--line);
}

.final-cta h2 {
  max-width: 12ch;
}

.final-note {
  max-width: 44rem;
  margin: 0.8rem 0 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: min(var(--max), calc(100% - 1.25rem));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 1.25rem 0 2.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
}

.footer-brand img {
  width: min(72vw, 14rem);
  height: auto;
  border-radius: var(--radius);
}

.site-footer > a {
  display: block;
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
  text-align: center;
}

.footer-brand p {
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
  text-align: center;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 0.9rem;
  z-index: 8;
  display: grid;
  width: auto;
  min-width: 0;
  min-height: 0;
  place-items: center;
  border: 2px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  padding: 0.62rem 1.3rem;
  box-shadow: 4px 4px 0 var(--red), 0 10px 28px rgba(0, 0, 0, 0.38);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  white-space: nowrap;
  transform: translateX(-50%);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.sticky-cta:hover,
.sticky-cta:focus-visible {
  border-color: rgba(0, 0, 0, 0.22);
  background: #f9ce55;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 5px 5px 0 var(--red), 0 14px 32px rgba(0, 0, 0, 0.42), 0 0 28px rgba(246, 196, 69, 0.28);
}

.sticky-cta:active {
  transform: translateX(-50%) translateY(0);
  box-shadow: 2px 2px 0 var(--red), 0 6px 16px rgba(0, 0, 0, 0.28);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy .eyebrow,
  #hero-title,
  .hero-subhead,
  .hero-actions,
  .hero-warning,
  .trust-list,
  .trust-strip,
  .hero-panel {
    animation: hero-rise 260ms ease both;
  }

  #hero-title {
    animation-delay: 20ms;
  }

  .hero-subhead {
    animation-delay: 40ms;
  }

  .hero-actions,
  .hero-panel {
    animation-delay: 60ms;
  }

  .hero-warning,
  .trust-list,
  .trust-strip {
    animation-delay: 80ms;
  }

  .service-card,
  .process-grid article,
  .proof-card {
    animation: rise 600ms ease both;
  }

  .service-card:nth-child(2),
  .process-grid article:nth-child(2),
  .proof-card:nth-child(2) {
    animation-delay: 80ms;
  }

  .service-card:nth-child(3),
  .process-grid article:nth-child(3),
  .proof-card:nth-child(3) {
    animation-delay: 140ms;
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 699px) {
  body {
    padding-bottom: 3.4rem;
  }

  .site-header .nav {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    align-items: center;
    justify-items: start;
    min-height: 0;
    padding: 0.52rem 0;
  }

  .site-header .brand {
    grid-row: 1;
    grid-column: 1;
    justify-self: start;
    width: min(34vw, 8rem);
    min-width: 5.4rem;
  }

  .site-header .brand img {
    height: clamp(2.7rem, 9vw, 3.15rem);
  }

  .site-header .nav-toggle {
    display: inline-flex;
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
  }

  .site-header .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    right: 0.5rem;
    left: 0.5rem;
    z-index: 60;
    flex-direction: column;
    width: auto;
    gap: 0.4rem;
    margin-top: 0.4rem;
    padding: 0.55rem;
    border: 1px solid rgba(218, 233, 255, 0.22);
    border-radius: 16px;
    background: rgba(4, 20, 52, 0.98);
    box-shadow: 0 22px 48px rgba(0, 10, 34, 0.55);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1;
  }

  .site-header.nav-is-open .nav-links {
    display: flex !important;
  }

  .site-header .nav-links a {
    display: block;
    width: 100%;
    min-height: 2.6rem;
    border: 1px solid rgba(218, 233, 255, 0.28);
    border-radius: 12px;
    background:
      linear-gradient(180deg, rgba(95, 178, 255, 0.42), rgba(16, 70, 165, 0.52)),
      rgba(8, 39, 91, 0.72);
    padding: 0.78rem 0.9rem;
    text-align: left;
    text-shadow: none;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }

  .site-header .nav-links a::after {
    display: none;
  }

  .site-header .nav-cta {
    display: none !important;
  }

  .section {
    padding: 1.9rem 0;
  }

  .section:not(.hero) {
    margin-top: 0;
  }

  .hero {
    min-height: auto;
    gap: 0.95rem;
    padding-top: 1.8rem;
  }

  #hero-title {
    font-size: clamp(2.75rem, 13vw, 4.35rem);
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.45rem);
  }

  h2 {
    font-size: clamp(2.65rem, 14vw, 4.7rem);
  }

  .hero-actions {
    margin-top: 1rem;
  }

  .hero-subhead,
  .hero-warning {
    max-width: 34ch;
  }

  .hero-panel {
    display: none;
  }

  .trust-image,
  .faq-image,
  .contact-image {
    display: none;
  }

  .service-image {
    min-height: 8.5rem;
    max-height: 8.5rem;
  }

  .service-image img {
    width: min(68%, 11rem);
    max-height: 8.2rem;
  }

  .process-image {
    min-height: 8rem;
    max-height: 8rem;
  }

  .process-image img {
    width: min(64%, 10rem);
    max-height: 7.7rem;
  }

  .section-heading {
    margin-bottom: 1rem;
  }

  .service-grid,
  .meet-section,
  .fit-grid,
  .offer-grid,
  .process-grid,
  .proof-grid {
    gap: 0.75rem;
  }

  .split-section,
  .meet-section,
  .final-cta {
    gap: 1rem;
  }

  .split-section,
  .meet-section {
    padding-top: 1.9rem;
    padding-bottom: 1.9rem;
  }

  .service-card,
  .fit-grid article,
  .offer-card,
  .process-grid article,
  .proof-card {
    padding: 1rem;
  }

  .trust-list,
  .trust-strip {
    margin-top: 0.8rem;
  }

  .sticky-cta {
    left: 50%;
    right: auto;
    bottom: 0.45rem;
    width: auto;
    min-width: 0;
    min-height: 0;
    max-width: calc(100% - 2rem);
    padding: 0.46rem 0.95rem;
    font-size: 0.82rem;
    line-height: 1.12;
    white-space: normal;
  }

  .site-footer {
    gap: 0.55rem;
    padding-top: 1rem;
    padding-bottom: 1.25rem;
  }
}

@media (min-width: 700px) {
  .nav-links,
  .nav-cta {
    display: flex;
  }

  .nav-cta {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.65rem 0.9rem;
    font-weight: 900;
  }

  .mobile-nav-contact {
    display: none !important;
  }

  .nav-toggle {
    display: none !important;
  }

  .brand {
    width: 9rem;
  }

  .brand img {
    height: 3.6rem;
  }

  .hero-actions {
    flex-direction: row;
  }

  .button {
    width: auto;
  }

  .service-grid,
  .fit-grid,
  .offer-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 23rem));
  }

  .portfolio-button {
    width: auto;
  }

  .portfolio-cta .button {
    width: auto;
  }

  .fit-grid article:last-child {
    grid-column: span 2;
  }

  .sticky-cta {
    right: auto;
    left: 50%;
    width: auto;
    min-width: 0;
    padding-inline: 1.3rem;
  }
}

@media (min-width: 980px) {
  .brand {
    width: 10.5rem;
  }

  .brand img {
    height: 4rem;
  }

  .section {
    padding: 4.75rem 0;
  }

  .hero {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 3.5rem;
    padding-top: 5rem;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-strip li {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .trust-strip li:last-child {
    border-right: 0;
  }

  .split-section,
  .meet-section,
  .faq-section,
  .process-grid,
  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 23rem));
  }

  .meet-section,
  .split-section,
  .faq-section {
    align-items: center;
  }

  .meet-section {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .meet-inline-image img {
    width: min(100%, 18rem);
  }

  .split-section {
    grid-template-columns: 0.95fr 1.2fr 0.85fr;
  }

  .faq-section {
    grid-template-columns: 0.9fr 1.25fr 0.85fr;
  }

  .fit-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .fit-grid article:last-child {
    grid-column: auto;
  }

  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .split-copy,
  .meet-copy {
    columns: auto;
  }

  .final-cta {
    grid-template-columns: 0.95fr 1.1fr 0.55fr;
    align-items: center;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 1.35rem;
    text-align: center;
  }

  .footer-brand {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
  }

  .footer-brand img {
    width: 13rem;
  }
}

@media (max-width: 760px) {
  .hero-video-wrap {
    width: min(100%, 22rem);
    margin-right: auto;
    margin-left: auto;
  }
}

/* Mobile home hero video spacing fix: keeps the fixed CTA from sitting on top of the intro video after the intro paragraph was removed. */
@media (max-width: 699px) {
  .hero-video-wrap {
    width: min(100%, 20rem);
    margin-top: clamp(4.5rem, 14vh, 6.25rem);
    margin-bottom: 1.25rem;
  }

  .hero-video {
    max-height: min(68vh, 35.5rem);
  }

  .hero-warning {
    margin-top: 1.25rem;
  }
}

/* Offers pricing card additions — v20260529 */
.offer-price {
  margin: 0.25rem 0 0.6rem;
  font-size: 1.15rem;
  color: var(--ink, #111);
  font-weight: 700;
}
.offer-price strong {
  font-weight: 900;
}
.offer-list {
  margin: 0 0 0.8rem;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}
.offer-list li {
  margin-bottom: 0.25rem;
}
.offer-note {
  margin: 0.25rem 0 0.9rem;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--muted);
}
.offer-footnote {
  margin: 1rem auto 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 52rem;
}

/* =========================================================
   v20260529b-audit-fixes — visual audit overrides
   Goals: smaller H1s, tighter hero, balanced columns,
   tighter section padding, better fit-grid, better offer cards.
   NOTE: contact form selectors (.contact-form, #contact-*) are
   intentionally untouched.
   ========================================================= */

/* 1. Cap H1/H2 sizes site-wide */
h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.04;
  max-width: 16ch;
}
#hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.04;
  max-width: 18ch;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  max-width: 18ch;
}
h3 {
  font-size: 1.18rem;
  line-height: 1.18;
}

/* 2. Tighten hero spacing + balance columns */
.hero {
  min-height: auto;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  align-items: start;
  gap: 1.5rem;
}
.hero-copy { gap: 1rem; }
.hero-warning { margin-top: 0.9rem; }

/* 3. Add a visible primary CTA pair under the hero warning on home */
.hero-copy .hero-warning + .trust-list {
  margin-top: 0.6rem;
}

/* 4. Tighten section vertical padding globally */
.section {
  padding: 2.2rem 0;
}

/* 5. Fit grid — 3 cols desktop, 2 tablet, 1 mobile (was 5) */
@media (min-width: 980px) {
  .fit-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem;
  }
}
@media (min-width: 700px) and (max-width: 979px) {
  .fit-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* 6. Service cards — tighter, shorter images */
.service-image { min-height: 9rem; max-height: 9rem; }
.service-image img { max-height: 8.6rem; }
.service-card { padding: 1rem; gap: 0.7rem; }

/* 7. Offer (pricing) cards — bigger gap, recommended ribbon */
.offer-grid { gap: 1.5rem !important; }
.offer-card { padding: 1.4rem 1.2rem; }
.featured-offer {
  position: relative;
  border: 2px solid var(--gold);
  box-shadow: 0 18px 50px rgba(0, 14, 41, 0.45);
}
.featured-offer::before {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  content: "Most Popular";
}
.offer-card .service-number {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(95, 178, 255, 0.18);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

/* 9. Add header phone link styling */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 0.8rem;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.header-phone:hover { color: var(--gold); }
@media (max-width: 699px) {
  .header-phone { display: none; }
}

/* 10. Hero CTA button row */
.hero-actions-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0.9rem 0 0.4rem;
}

/* 11. Footer — denser, more info */
.site-footer { padding: 1.6rem 1.25rem; }
.site-footer-meta {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}
.site-footer-meta a { color: var(--ink); text-decoration: underline; }

/* 12. Contact page — phone block under H1 */
.contact-phone-block {
  margin: 0.4rem 0 0.8rem;
  font-size: 1.1rem;
  font-weight: 800;
}
.contact-phone-block a { color: var(--gold); text-decoration: none; }

/* 13. Form trust line */
.form-trust-note {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: italic;
}

/* 14. Diagnostic card label clarity */
.diagnostic-card .card-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

/* =========================================================
   v20260529d-local-seo-privacy
   Approved UX/content adjustments: clearer hero, local proof
   thumbnails, shorter forms, stronger trust signals, lighter
   mobile sticky CTA, and more section contrast.
   ========================================================= */

.hero-checkup-list {
  padding: clamp(1.1rem, 3vw, 1.4rem);
}

.hero-checkup-list ul,
.cta-trust-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-checkup-list li,
.cta-trust-list li {
  border: 1px solid rgba(218, 233, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  padding: 0.7rem 0.8rem;
  font-size: 0.94rem;
  line-height: 1.35;
}

.hero-checkup-list strong {
  color: var(--ink);
}

.hero-video-wrap {
  margin-top: 1rem;
}

.hero-actions-inline + .hero-video-wrap {
  margin-top: 1.05rem;
}

.cta-trust-list {
  margin-top: 1rem;
}

.cta-trust-list li {
  color: var(--ink);
  font-weight: 800;
}

.offer-trust-list,
.contact-trust-list {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}

.optional-label {
  color: #5f5b55;
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  max-width: 34rem;
}

.footer-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  padding: 0.42rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 900;
}

.service-section,
.offer-section,
.proof-section,
.contact-section {
  border-top: 1px solid rgba(218, 233, 255, 0.14);
  border-bottom: 1px solid rgba(218, 233, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(95, 178, 255, 0.09), rgba(246, 196, 69, 0.035)),
    rgba(3, 18, 47, 0.2);
  box-shadow: 0 0 0 100vmax rgba(3, 18, 47, 0.2);
  clip-path: inset(0 -100vmax);
}

.offer-section {
  padding-top: 1.65rem;
}

.offer-heading {
  margin-bottom: 1rem;
}

.offer-heading h1 {
  max-width: 18ch;
}

.fit-grid-split {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)) !important;
}

.comparison-table {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(218, 233, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(3, 18, 47, 0.28);
}

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1fr;
}

.comparison-table [role="row"] + [role="row"] {
  border-top: 1px solid rgba(218, 233, 255, 0.14);
}

.comparison-table span {
  border-right: 1px solid rgba(218, 233, 255, 0.14);
  padding: 0.9rem;
  color: var(--muted);
  font-weight: 800;
}

.comparison-table span:last-child {
  border-right: 0;
}

.comparison-table [role="columnheader"],
.comparison-table [role="rowheader"] {
  color: var(--ink);
  font-weight: 900;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 9.5rem), 1fr));
  gap: 0.7rem;
}

.industry-grid span {
  display: grid;
  min-height: 3.25rem;
  place-items: center;
  border: 1px solid rgba(218, 233, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 39, 91, 0.56);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.service-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.service-icon-card {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(218, 233, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 39, 91, 0.52);
  color: var(--ink);
  padding: 0.9rem 0.55rem;
  text-align: center;
}

.service-icon-card span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(246, 196, 69, 0.4);
  border-radius: 999px;
  background: rgba(246, 196, 69, 0.12);
  color: var(--gold);
  font-weight: 900;
}

.service-icon-card strong {
  font-size: 0.92rem;
  line-height: 1.2;
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  gap: 0.8rem;
}

.related-services-grid a {
  display: grid;
  min-height: 4.4rem;
  place-items: center;
  border: 1px solid rgba(218, 233, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 39, 91, 0.56);
  color: var(--ink);
  padding: 0.85rem;
  font-weight: 900;
  text-align: center;
}

.related-services-grid a:hover,
.related-services-grid a:focus-visible {
  border-color: rgba(246, 196, 69, 0.42);
  color: var(--gold);
}

.service-faq-section {
  align-items: start;
}

@media (min-width: 980px) {
  .service-faq-section {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.expectation-note,
.submit-expectation {
  max-width: 42rem;
  border-left: 3px solid var(--gold);
  background: rgba(246, 196, 69, 0.08);
  color: var(--ink);
  padding: 0.75rem 0.9rem;
  font-weight: 800;
}

.submit-expectation {
  margin: 0.2rem 0 0;
  color: #14213d;
  background: rgba(246, 196, 69, 0.18);
}

.contact-section {
  align-items: start;
  padding-top: clamp(1.4rem, 4vw, 2.3rem);
}

.contact-copy {
  align-self: start;
}

.contact-form {
  gap: 0.62rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 3rem;
}

.contact-form textarea {
  min-height: 7rem;
}

.contact-form .form-trust-note {
  color: #34312d;
}

.form-trust-note a {
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.service-area-section,
.privacy-section {
  border-top: 1px solid rgba(218, 233, 255, 0.14);
  border-bottom: 1px solid rgba(218, 233, 255, 0.14);
}

.service-area-section {
  display: grid;
  gap: 1.2rem;
}

.service-area-copy,
.privacy-grid {
  display: grid;
  gap: 0.9rem;
}

.service-area-copy p,
.privacy-grid p {
  margin: 0;
  color: var(--muted);
}

.privacy-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: clamp(1rem, 3vw, 1.25rem);
  box-shadow: var(--shadow);
}

.privacy-grid h2 {
  max-width: none;
  margin-bottom: 0.65rem;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  font-weight: 900;
  line-height: 1.12;
  text-transform: none;
}

.privacy-grid a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

@media (min-width: 980px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

  .hero-panel {
    margin-top: 0.25rem;
  }

  .hero-video-wrap {
    width: min(100%, 18rem);
  }

  .contact-section {
    grid-template-columns: 0.9fr 1.05fr 0.48fr;
  }

  .contact-section .contact-image img {
    width: min(90%, 14rem);
  }

  .offer-grid {
    align-items: stretch;
  }

  .service-area-section {
    grid-template-columns: 0.95fr 1.1fr;
    align-items: start;
  }

  .privacy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 700px) {
  .sticky-cta {
    right: 1rem;
    left: auto;
    transform: none;
  }

  .sticky-cta:hover,
  .sticky-cta:focus-visible {
    transform: translateY(-2px);
  }

  .sticky-cta:active {
    transform: translateY(0);
  }
}

@media (max-width: 699px) {
  .hero {
    padding-top: 1.2rem;
  }

  .hero-actions-inline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .hero-video-wrap {
    width: min(100%, 18.5rem);
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .hero-video {
    max-height: min(56vh, 29rem);
  }

  .sticky-cta {
    bottom: 0.35rem;
    padding: 0.42rem 0.82rem;
    font-size: 0.78rem;
    box-shadow: 3px 3px 0 var(--red), 0 8px 22px rgba(0, 0, 0, 0.34);
  }

  .contact-section {
    gap: 1rem;
  }

  .contact-form {
    padding: 0.95rem;
  }

  .footer-links {
    gap: 0.38rem;
  }

  .comparison-table {
    gap: 0;
  }

  .comparison-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .comparison-table [role="row"] + [role="row"] {
    border-top: 2px solid rgba(246, 196, 69, 0.26);
  }

  .comparison-table span {
    border-right: 0;
    border-top: 1px solid rgba(218, 233, 255, 0.12);
    padding: 0.75rem 0.85rem;
  }

  .comparison-table [role="row"] span:first-child {
    border-top: 0;
  }

  .comparison-table [role="columnheader"] {
    display: none;
  }

  .comparison-table [role="row"]:first-child {
    display: none;
  }
}

/* =========================================================
   v20260529f-usa-remote
   USA remote service messaging, footer structure, form help,
   thank-you page, preload-aware hero assets, and a11y polish.
   ========================================================= */

.coverage-strip-section {
  width: min(var(--max), calc(100% - 1.25rem));
  margin: 0 auto;
  padding: 0 0 1.3rem;
}

.coverage-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
  gap: 0.55rem;
  border: 1px solid rgba(246, 196, 69, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(246, 196, 69, 0.16), rgba(95, 178, 255, 0.12)),
    rgba(3, 18, 47, 0.42);
  padding: 0.65rem;
  box-shadow: 0 16px 42px rgba(0, 14, 41, 0.22);
}

.coverage-strip span {
  display: grid;
  min-height: 2.45rem;
  place-items: center;
  border: 1px solid rgba(218, 233, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  padding: 0.45rem 0.7rem;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.remote-section,
.remote-process-section,
.location-copy-section,
.usa-fit-section,
.thank-you-section,
.timeline-section,
.prep-section,
.local-page-hero,
.local-service-section {
  border-top: 1px solid rgba(218, 233, 255, 0.14);
  border-bottom: 1px solid rgba(218, 233, 255, 0.14);
}

.remote-section,
.location-copy-section,
.thank-you-section,
.local-page-hero {
  background:
    linear-gradient(135deg, rgba(246, 196, 69, 0.07), rgba(38, 215, 163, 0.05), rgba(95, 178, 255, 0.08)),
    rgba(3, 18, 47, 0.18);
  box-shadow: 0 0 0 100vmax rgba(3, 18, 47, 0.16);
  clip-path: inset(0 -100vmax);
}

.service-blurb-grid,
.location-copy-grid,
.thank-you-grid {
  display: grid;
  gap: 0.9rem;
}

.service-blurb-grid article,
.location-copy-grid article,
.thank-you-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 1.25rem);
}

.service-blurb-grid h3,
.location-copy-grid h3,
.thank-you-grid h2 {
  max-width: none;
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.service-blurb-grid p,
.location-copy-grid p,
.thank-you-grid p {
  margin: 0;
  color: var(--muted);
}

.portfolio-result {
  border-top: 1px solid rgba(218, 233, 255, 0.12);
  padding-top: 0.75rem;
  font-size: 0.92rem;
}

.portfolio-result strong {
  color: var(--ink);
}

.page-jumps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  width: min(var(--max), calc(100% - 1.25rem));
  margin: -0.5rem auto 0;
  padding: 0 0 1rem;
}

.page-jumps a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 900;
}

.pricing-guidance {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 1.15rem;
}

.pricing-guidance article,
.pricing-context-section article {
  border: 1px solid rgba(246, 196, 69, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(246, 196, 69, 0.11), rgba(95, 178, 255, 0.08)),
    rgba(4, 20, 52, 0.56);
  padding: clamp(1rem, 3vw, 1.2rem);
  box-shadow: 0 18px 48px rgba(0, 14, 41, 0.24);
}

.pricing-guidance span {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-guidance h3 {
  max-width: none;
  margin-bottom: 0.45rem;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: none;
}

.pricing-guidance p,
.pricing-context-section p {
  margin: 0;
  color: var(--muted);
}

.offer-fit-note {
  color: var(--ink) !important;
  font-size: 0.96rem;
  font-weight: 800;
}

.offer-price {
  display: grid;
  gap: 0.12rem;
  align-content: center;
  min-height: 5.6rem;
  border: 1px solid rgba(246, 196, 69, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(246, 196, 69, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(3, 18, 47, 0.3);
  padding: 0.8rem;
}

.offer-price span,
.offer-price em {
  color: var(--muted);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-price strong {
  color: var(--ink);
  font-size: clamp(1.85rem, 7vw, 2.75rem);
  line-height: 1;
}

.pricing-context-section {
  border-top: 1px solid rgba(218, 233, 255, 0.14);
  border-bottom: 1px solid rgba(218, 233, 255, 0.14);
}

.thank-you-grid a,
.location-copy-grid a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.form-helper {
  margin: 0 0 0.15rem;
  border: 1px solid rgba(6, 18, 38, 0.18);
  border-radius: var(--radius);
  background: #fff7d7;
  color: #1b1a17;
  padding: 0.75rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #06347d;
  outline: 3px solid #f6c445;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(246, 196, 69, 0.22);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #f6c445;
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(246, 196, 69, 0.16);
}

.footer-grid {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  min-width: 0;
}

.footer-heading {
  max-width: none;
  margin: 0 0 0.2rem;
  color: var(--gold);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.site-footer {
  align-items: stretch;
  border-color: rgba(246, 196, 69, 0.22);
  background:
    linear-gradient(180deg, rgba(3, 18, 47, 0.92), rgba(1, 10, 28, 0.98)),
    #03122f;
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.22);
  padding-top: 1.75rem;
  text-align: left;
}

.footer-brand {
  justify-items: start;
  text-align: left;
}

.footer-brand img {
  width: min(58vw, 12rem);
}

.footer-brand p,
.site-footer-meta {
  max-width: 34rem;
  text-align: left;
}

.site-footer-meta {
  width: 100%;
  border-top: 1px solid rgba(218, 233, 255, 0.16);
  padding-top: 0.85rem;
}

@media (min-width: 700px) {
  .service-blurb-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-blurb-grid article:last-child {
    grid-column: span 2;
  }

  .location-copy-grid,
  .thank-you-grid,
  .pricing-guidance {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (min-width: 980px) {
  .coverage-strip-section {
    padding-bottom: 1.7rem;
  }

  .service-blurb-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .service-blurb-grid article:last-child {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 0.8fr 0.9fr;
    align-items: start;
  }

  .footer-brand {
    grid-column: auto;
  }

  .site-footer {
    align-items: stretch;
    text-align: left;
  }

  .footer-brand {
    align-items: start;
    justify-items: start;
  }

  .footer-brand img {
    width: 12rem;
  }
}

@media (max-width: 699px) {
  .coverage-strip-section {
    padding-bottom: 1rem;
  }

  .coverage-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    padding: 0.5rem;
  }

  .coverage-strip span {
    min-height: 2.3rem;
    padding: 0.42rem 0.45rem;
    font-size: 0.75rem;
  }

  .button {
    width: calc(100% - 0.45rem);
  }

  .section-cta-actions .button {
    width: calc(100% - 0.45rem);
  }

  .button-primary {
    box-shadow: 4px 4px 0 var(--red);
  }

  .button-primary:hover,
  .button-primary:focus-visible {
    box-shadow: 5px 5px 0 var(--red), 0 0 24px rgba(246, 196, 69, 0.22);
  }

  .service-blurb-grid,
  .location-copy-grid,
  .thank-you-grid {
    gap: 0.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .site-footer,
  .footer-brand,
  .footer-brand p {
    text-align: center;
  }

  .site-footer-meta {
    text-align: center;
  }

  .footer-brand {
    justify-items: center;
  }

  .footer-brand img {
    width: min(46vw, 9rem);
  }

  .footer-brand p {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .footer-column {
    justify-items: start;
    gap: 0.35rem;
  }

  .footer-column a {
    width: auto;
    text-align: left;
    font-size: 0.86rem;
  }

  .site-footer {
    padding-top: 1.35rem;
  }

  .site-footer-meta {
    padding-top: 0.7rem;
  }
}

/* =========================================================
   v20260602a-base-clean-services
   Professional CTA path, retired review-first angle, pricing
   updates, footer credit, service icons, referral rewards, and
   cleaner Home mobile sticky behavior.
   ========================================================= */

.footer-credit {
  width: 100%;
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.footer-credit a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.watch-footer-credit {
  margin: 2rem auto 0;
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
}

.watch-footer-credit a {
  color: currentColor;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.referral-section,
.proof-teaser-section,
.ownership-section {
  border-top: 1px solid rgba(218, 233, 255, 0.14);
  border-bottom: 1px solid rgba(218, 233, 255, 0.14);
}

.referral-section {
  background:
    linear-gradient(135deg, rgba(246, 196, 69, 0.13), rgba(255, 59, 48, 0.09), rgba(95, 178, 255, 0.08)),
    rgba(3, 18, 47, 0.22);
  box-shadow: 0 0 0 100vmax rgba(3, 18, 47, 0.18);
  clip-path: inset(0 -100vmax);
}

.proof-teaser-section .section-cta-actions,
.referral-section .expectation-note {
  margin-top: 1rem;
}

.service-icon-card .service-icon {
  position: relative;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(246, 196, 69, 0.4);
  border-radius: 999px;
  background: rgba(246, 196, 69, 0.12);
  color: var(--gold);
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  content: "";
}

.service-icon-mobile::before {
  width: 0.88rem;
  height: 1.35rem;
  border: 2px solid currentColor;
  border-radius: 0.18rem;
}

.service-icon-mobile::after {
  bottom: 0.38rem;
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 999px;
  background: currentColor;
}

.service-icon-search::before {
  width: 0.9rem;
  height: 0.9rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  transform: translate(-0.14rem, -0.12rem);
}

.service-icon-search::after {
  width: 0.55rem;
  height: 2px;
  background: currentColor;
  transform: translate(0.44rem, 0.44rem) rotate(45deg);
}

.service-icon-lead::before,
.service-icon-reply::before {
  width: 1.24rem;
  height: 0.86rem;
  border: 2px solid currentColor;
  border-radius: 0.16rem;
}

.service-icon-lead::after {
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(0.08rem, 0.2rem);
}

.service-icon-reply::after {
  left: 0.62rem;
  bottom: 0.58rem;
  width: 0.52rem;
  height: 0.52rem;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.service-icon-workflow::before {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: currentColor;
  box-shadow: -0.72rem 0.52rem 0 currentColor, 0.72rem 0.52rem 0 currentColor;
}

.service-icon-workflow::after {
  width: 1.42rem;
  height: 0.74rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(0.16rem);
}

.service-icon-tool::before {
  width: 1.28rem;
  height: 0.26rem;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-35deg);
}

.service-icon-tool::after {
  width: 0.44rem;
  height: 0.44rem;
  border: 2px solid currentColor;
  border-radius: 0.1rem;
  transform: translate(0.38rem, -0.32rem) rotate(-35deg);
}

.service-icon-target::before {
  width: 1.34rem;
  height: 1.34rem;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.service-icon-target::after {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: currentColor;
}

.service-icon-megaphone::before {
  width: 1rem;
  height: 0.72rem;
  border: 2px solid currentColor;
  clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 65%);
  transform: translate(-0.12rem, -0.04rem);
}

.service-icon-megaphone::after {
  bottom: 0.5rem;
  left: 0.85rem;
  width: 0.32rem;
  height: 0.62rem;
  border-left: 2px solid currentColor;
  transform: rotate(-12deg);
}

.service-icon-action::before {
  width: 1.22rem;
  height: 1.22rem;
  border: 2px solid currentColor;
  border-radius: 0.22rem;
}

.service-icon-action::after {
  width: 0.62rem;
  height: 0.62rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translate(-0.05rem, 0.06rem);
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (min-width: 980px) {
  .footer-grid {
    grid-template-columns: 1.25fr 0.85fr 0.8fr 0.9fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (min-width: 700px) and (max-width: 979px) {
  .site-header .mobile-nav-contact {
    display: grid !important;
  }

  .site-header .nav {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.6rem;
    padding: 0.55rem 0;
  }

  .site-header .brand {
    justify-self: start;
    width: 8.8rem;
  }

  .site-header .brand img {
    height: 3.25rem;
  }

  .site-header .nav-toggle {
    display: inline-flex !important;
    grid-column: 2;
  }

  .site-header .header-phone {
    grid-column: 3;
    margin-right: 0;
  }

  .site-header .nav-cta {
    display: none !important;
  }

  .site-header .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 60;
    flex-direction: column;
    width: min(20rem, 70vw);
    gap: 0.4rem;
    margin-top: 0.45rem;
    padding: 0.6rem;
    border: 1px solid rgba(218, 233, 255, 0.22);
    border-radius: 16px;
    background: rgba(4, 20, 52, 0.98);
    box-shadow: 0 22px 48px rgba(0, 10, 34, 0.55);
  }

  .site-header.nav-is-open .nav-links {
    display: flex !important;
  }

  .site-header .nav-links a {
    display: block;
    width: 100%;
    min-height: 2.6rem;
    border: 1px solid rgba(218, 233, 255, 0.28);
    border-radius: 12px;
    background: rgba(8, 39, 91, 0.76);
    padding: 0.78rem 0.95rem;
    text-align: left;
  }

  .site-header .nav-links a::after {
    display: none;
  }
}

@media (max-width: 699px) {
  body.page-home .sticky-cta {
    display: none;
  }
}

/* =========================================================
   v20260602b-polish-proof
   Home hero polish, pricing card alignment, shorter Offers,
   broader desktop balance, and matching portfolio screenshots.
   ========================================================= */

:root {
  --max: 1240px;
}

.hero-subhead {
  max-width: 46rem;
  margin: 0.95rem 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2.8vw, 1.42rem);
  font-weight: 750;
  line-height: 1.35;
}

.diagnostic-summary {
  display: grid;
  gap: 0.85rem;
}

.diagnostic-summary h3 {
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-family: Anton, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.diagnostic-summary .button {
  width: 100%;
}

.hero-panel {
  display: grid;
  align-content: start;
}

.page-home .final-cta .section-cta-actions {
  margin-top: 1.1rem;
}

.page-home .section-heading,
.page-offers .section-heading,
.page-proof .section-heading,
.page-meet .service-section .section-heading,
.page-meet .fit-section .section-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.page-home .section-intro,
.page-offers .section-intro,
.page-proof .section-intro,
.page-meet .section-intro {
  margin-inline: auto;
}

.offer-section,
.proof-section,
.page-meet .meet-section,
.page-meet .split-section,
.page-meet .service-section,
.page-meet .fit-section {
  max-width: min(var(--max), calc(100% - 1.25rem));
}

.offer-grid {
  align-items: stretch;
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.offer-card h3 {
  min-height: 2.35rem;
}

.offer-fit-note {
  min-height: 4.7rem;
}

.offer-price {
  min-height: 6.35rem;
  text-align: left;
}

.offer-price strong {
  font-size: clamp(2.25rem, 4.2vw, 3.15rem);
  letter-spacing: 0;
}

.offer-list {
  flex: 1 1 auto;
}

.offer-card .button {
  width: 100%;
  margin-top: auto;
}

.section-cta-actions {
  align-items: stretch;
}

.section-cta-actions .button {
  min-width: min(100%, 12rem);
}

.portfolio-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18.5rem), 1fr));
  align-items: stretch;
  justify-content: center;
}

.portfolio-card {
  grid-template-rows: auto auto auto auto 1fr auto;
  align-content: stretch;
  height: 100%;
}

.portfolio-media {
  aspect-ratio: 16 / 9;
}

.portfolio-card p {
  line-height: 1.48;
}

.portfolio-result {
  align-self: start;
}

.portfolio-button {
  align-self: end;
  justify-self: stretch;
}

@media (min-width: 980px) {
  .nav {
    display: grid;
    grid-template-columns: auto auto minmax(8rem, 1fr) auto auto;
    align-items: center;
  }

  .brand-tagline {
    display: inline-block;
    justify-self: start;
  }

  .nav-links {
    justify-self: center;
  }

  .header-phone {
    justify-self: center;
    margin-right: 0;
  }

  .nav-cta {
    justify-self: end;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.85fr);
    gap: clamp(2rem, 4vw, 4rem);
  }

  .diagnostic-summary h3 {
    max-width: 10ch;
  }

  .offer-fit-note {
    min-height: 5.75rem;
  }

  .final-cta {
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.42fr);
    gap: clamp(1.5rem, 4vw, 3rem);
  }

  .final-cta h2 {
    max-width: 13ch;
  }

  .final-cta .contact-image {
    justify-self: center;
  }

  .page-meet .meet-section {
    grid-template-columns: minmax(22rem, 0.9fr) minmax(24rem, 1.1fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
  }

  .page-meet .meet-inline-image {
    display: none;
  }

  .page-meet .split-section {
    grid-template-columns: minmax(19rem, 0.9fr) minmax(24rem, 1.1fr) minmax(11rem, 0.45fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 700px) and (max-width: 979px) {
  .offer-fit-note {
    min-height: 0;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 699px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header .nav,
  .section,
  .coverage-strip-section,
  .page-jumps,
  .site-footer {
    width: min(calc(100vw - 1rem), 23.5rem);
    max-width: min(calc(100vw - 1rem), 23.5rem);
    margin-right: auto;
    margin-left: 0.5rem;
  }

  .site-header .nav {
    margin-right: auto;
    margin-left: 0.5rem;
  }

  .site-header .nav-toggle {
    min-height: 2.8rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
  }

  .site-header .nav-toggle-label {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
  }

  .page-offers h1,
  .page-proof h1,
  .page-meet h1 {
    max-width: min(100%, 11ch);
    font-size: clamp(2.1rem, 10.5vw, 3.15rem);
  }

  .page-offers .offer-section,
  .page-offers .pricing-guidance,
  .page-offers .offer-grid,
  .page-offers .offer-card,
  .page-offers .pricing-guidance article,
  .page-proof .portfolio-grid,
  .page-proof .portfolio-card {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .page-offers .section-intro,
  .page-offers .pricing-guidance p,
  .page-offers .offer-card p,
  .page-offers .offer-list {
    max-width: 100%;
  }

  .page-jumps {
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 0.2rem;
    scrollbar-width: none;
  }

  .page-jumps::-webkit-scrollbar {
    display: none;
  }

  .hero-subhead {
    font-size: 1.05rem;
  }

  .diagnostic-summary .button,
  .offer-card .button,
  .portfolio-button {
    width: 100%;
  }

  .offer-fit-note,
  .offer-card h3 {
    min-height: 0;
  }
}

/* =========================================================
   v20260602h-fixed-header
   Requested homepage, meet, pricing, and contact simplification.
   ========================================================= */

:root {
  --site-header-space: 5.1rem;
}

html {
  scroll-padding-top: var(--site-header-space);
}

body {
  padding-top: var(--site-header-space);
}

.site-header {
  position: fixed;
  right: 0;
  left: 0;
}

.page-home .hero {
  min-height: auto;
  align-items: start;
  padding-bottom: 2rem;
}

.page-home .hero-copy {
  max-width: 56rem;
}

.page-home .hero-video-wrap {
  margin-top: 1rem;
}

.page-meet .meet-intro {
  justify-items: center;
  text-align: center;
}

.page-meet .meet-intro h1 {
  margin-right: auto;
  margin-left: auto;
}

.contact-form .form-helper,
.contact-form .submit-expectation {
  border-color: rgba(6, 18, 38, 0.22);
  background: #fff0a8;
  color: #061226;
}

.thank-you-grid article:only-child {
  grid-column: 1 / -1;
}

@media (min-width: 980px) {
  .page-home .hero {
    grid-template-columns: minmax(0, 56rem);
    justify-content: start;
    padding-top: 4rem;
  }

  .page-home .service-blurb-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 699px) {
  :root {
    --site-header-space: 4.35rem;
  }

  .page-home .hero {
    padding-top: 1.2rem;
  }

  .page-home .hero-video-wrap {
    width: min(100%, 17.5rem);
  }

  .page-home .hero-video {
    max-height: none;
  }
}

/* =========================================================
   v20260602i-centering
   Requested title/button alignment and Pricing cleanup.
   ========================================================= */

.page-home .hero {
  justify-content: center;
}

.page-home .hero-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.page-home #hero-title {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.page-home #hero-title span {
  display: block;
  white-space: nowrap;
}

.page-home .hero-subhead {
  margin-right: auto;
  margin-left: auto;
}

.page-home .trust-list {
  justify-content: center;
}

.page-home .service-blurb-grid article,
.page-home .final-cta > div {
  text-align: center;
}

.page-home .service-blurb-grid h3,
.page-home .service-blurb-grid .text-link,
.page-home .final-cta h2,
.page-home .final-cta .eyebrow,
.page-meet .final-cta h2,
.page-meet .final-cta .eyebrow,
.page-offers .final-cta h2,
.page-offers .final-cta .eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.page-home .service-blurb-grid .text-link {
  justify-content: center;
  text-align: center;
}

.page-home .final-cta .section-cta-actions,
.page-meet .final-cta .section-cta-actions,
.page-offers .final-cta .section-cta-actions {
  justify-content: center;
}

.page-meet .final-cta > div,
.page-offers .final-cta > div {
  text-align: center;
}

.page-offers .faq-section > div,
.page-contact .contact-faq-section > div {
  display: grid;
  justify-items: center;
  text-align: center;
}

.page-offers .faq-section h2,
.page-contact .contact-faq-section h2 {
  margin-right: auto;
  margin-left: auto;
}

.page-proof .portfolio-card h3,
.page-proof .portfolio-button,
.page-contact .fit-grid-split h3 {
  text-align: center;
}

.page-proof .portfolio-meta {
  justify-content: center;
}

.page-proof .portfolio-label,
.page-proof .portfolio-featured {
  text-align: center;
}

.page-contact .contact-copy .eyebrow,
.page-contact .contact-copy h1 {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.page-contact .prep-section .section-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

/* =========================================================
   v20260602j-polish
   Header tagline, Home hero copy, footer trim, and shared
   responsive polish across service/location pages.
   ========================================================= */

.brand-tagline {
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
  color: var(--gold);
  font-size: clamp(0.72rem, 1.4vw, 0.86rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.page-home #hero-title {
  max-width: min(100%, 14.5ch);
  font-size: clamp(2.15rem, 7.2vw, 4.95rem);
  line-height: 1;
}

.page-home .hero-subhead {
  max-width: 42rem;
  color: var(--ink);
  font-size: clamp(1.08rem, 2.7vw, 1.34rem);
  font-weight: 800;
  line-height: 1.36;
}

.service-detail-hero .section-heading,
.service-detail-section .section-heading,
.related-services-section .section-heading,
.service-faq-section > div,
.timeline-section .section-heading,
.proof-teaser-section .section-heading,
.prep-section .section-heading,
.local-page-hero .section-heading,
.local-service-section .section-heading,
.remote-section .section-heading,
.remote-process-section .section-heading,
.location-copy-section .section-heading,
.usa-fit-section .section-heading,
.privacy-section .section-heading,
.thank-you-section .section-heading,
.industries-section .section-heading {
  display: grid;
  justify-items: center;
  text-align: center;
}

.service-detail-hero .section-intro,
.service-detail-section .section-intro,
.related-services-section .section-intro,
.timeline-section .section-intro,
.proof-teaser-section .section-intro,
.local-page-hero .section-intro,
.local-service-section .section-intro,
.remote-section .section-intro,
.remote-process-section .section-intro,
.location-copy-section .section-intro,
.usa-fit-section .section-intro,
.privacy-section .section-intro,
.thank-you-section .section-intro,
.industries-section .section-intro {
  margin-right: auto;
  margin-left: auto;
}

.service-detail-hero .section-cta-actions,
.service-detail-section .section-cta-actions,
.related-services-section .section-cta-actions,
.local-page-hero .section-cta-actions,
.remote-section .section-cta-actions,
.privacy-section .section-cta-actions,
.thank-you-section .section-cta-actions {
  justify-content: center;
}

.service-detail-section .fit-grid h3,
.location-copy-grid h3,
.thank-you-grid h2,
.process-grid h3,
.fit-grid h3 {
  text-align: center;
}

.process-grid span,
.service-number,
.card-kicker {
  justify-self: center;
  text-align: center;
}

.page-offers .offer-grid {
  align-items: stretch;
}

.page-offers .offer-card {
  height: 100%;
  text-align: center;
}

.page-offers .offer-card .service-number {
  align-self: start;
}

.page-offers .offer-price {
  text-align: center;
}

.page-offers .offer-list {
  text-align: left;
}

.page-offers .offer-note {
  margin-top: auto;
}

.footer-grid {
  align-items: start;
}

.footer-credit {
  width: 100%;
  text-align: center;
}

@media (max-width: 699px) {
  .site-header .nav {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 0.55rem;
  }

  .site-header .brand {
    grid-column: 1;
    width: min(25vw, 6.6rem);
    min-width: 5rem;
  }

  .site-header .brand-tagline {
    display: inline-flex;
    grid-row: 1;
    grid-column: 2;
    align-self: center;
    justify-self: center;
    max-width: 100%;
    line-height: 1.15;
    white-space: nowrap;
  }

  .site-header .nav-toggle {
    grid-column: 3;
    padding: 0.55rem 0.75rem;
  }

  .page-home #hero-title {
    max-width: 100%;
    font-size: clamp(1.95rem, 8.8vw, 2.85rem);
    line-height: 1;
  }

  .page-home .hero-subhead {
    font-size: 1.02rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-column {
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand p,
  .site-footer-meta {
    text-align: center;
  }

  .footer-column a {
    width: auto;
    text-align: center;
  }
}

@media (min-width: 700px) and (max-width: 979px) {
  .site-header .nav {
    grid-template-columns: auto minmax(8rem, 1fr) auto auto;
  }

  .site-header .brand-tagline {
    display: inline-flex;
    grid-column: 2;
    align-self: center;
    justify-self: center;
    white-space: nowrap;
  }

  .site-header .nav-toggle {
    grid-column: 3;
  }

  .site-header .header-phone {
    grid-column: 4;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .site-header .nav {
    grid-template-columns: auto minmax(9rem, 0.75fr) minmax(18rem, 1fr) auto auto;
  }

  .brand-tagline {
    display: inline-flex;
    align-self: center;
    justify-self: center;
    white-space: nowrap;
  }

  .footer-grid {
    grid-template-columns: minmax(14rem, 1.35fr) minmax(9rem, 0.8fr) minmax(11rem, 0.9fr);
  }

  .page-offers .offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-offers .offer-card h3 {
    min-height: 2.55rem;
  }

  .page-offers .offer-fit-note {
    min-height: 5.4rem;
  }

  .page-offers .offer-price {
    min-height: 6.35rem;
  }
}
