:root {
  --ink: #0b1726;
  --ink-2: #13263b;
  --navy: #07121f;
  --navy-soft: #0d2033;
  --green: #37c84a;
  --green-dark: #116f24;
  --green-soft: #e9f8ec;
  --white: #ffffff;
  --cloud: #f4f7f9;
  --line: #dce5ea;
  --muted: #526477;
  --muted-light: #b9c6d1;
  --danger: #b42318;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 10px 30px rgba(10, 31, 49, 0.08);
  --shadow: 0 24px 70px rgba(7, 25, 42, 0.14);
  --container: 1180px;
}

.onboarding-card { max-width: 860px; margin: 0 auto; }
.verification-summary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.verification-summary div { padding: 1rem; border: 1px solid #dce5ea; border-radius: 12px; background: #f4f7f9; }
.verification-summary dt { color: #526477; font-size: .85rem; font-weight: 700; text-transform: uppercase; }
.verification-summary dd { margin: .35rem 0 0; color: #0b1726; font-weight: 700; overflow-wrap: anywhere; }
@media (max-width: 600px) { .verification-summary { grid-template-columns: 1fr; } }

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 136px;
}

body {
  margin: 0;
  padding-top: 44px;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid #88e694;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 1000;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  top: 52px;
}

.global-call-cta {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: .55rem 1rem;
  background: var(--green-dark);
  color: var(--white);
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: .01em;
  text-align: center;
}

.global-call-cta:hover {
  background: #0d5d1d;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 820px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 44px;
  z-index: 100;
  min-height: 74px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 18, 31, 0.96);
  box-shadow: 0 8px 24px rgba(3, 14, 25, 0.12);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  flex: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 11px rgba(55, 200, 74, 0.2));
}

.brand-name {
  display: grid;
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 850;
  font-size: 1.04rem;
}

.brand-name strong {
  color: var(--green);
  font-weight: 850;
}

.brand-name small {
  margin-top: 0.25rem;
  color: var(--muted-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.45rem;
}

.primary-nav > a:not(.button),
.nav-dropdown-toggle {
  position: relative;
  color: #dbe5ec;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.primary-nav > a:not(.button)::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.primary-nav > a:hover,
.primary-nav > a[aria-current="page"],
.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown:has(a[aria-current="page"]) .nav-dropdown-toggle {
  color: var(--white);
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after,
.nav-dropdown:has(a[aria-current="page"]) .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 160ms ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1.15rem);
  left: 50%;
  z-index: 20;
  display: grid;
  width: min(390px, calc(100vw - 2rem));
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: #0d2033;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: grid;
  gap: 0.18rem;
  padding: 0.9rem 1rem;
  border-radius: 11px;
  color: var(--white);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a[aria-current="page"] {
  background: rgba(55, 200, 74, 0.13);
}

.nav-dropdown-menu strong {
  font-size: 0.9rem;
}

.nav-dropdown-menu span {
  color: var(--muted-light);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.45;
  white-space: normal;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
}

.menu-toggle svg {
  width: 23px;
  height: 23px;
}

.button,
.primary-button,
.secondary-button,
.tertiary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover,
.primary-button:hover,
.secondary-button:hover,
.tertiary-button:hover {
  transform: translateY(-1px);
}

.button-primary,
.primary-button {
  border-color: var(--green);
  background: var(--green);
  color: #06130a;
  box-shadow: 0 10px 24px rgba(55, 200, 74, 0.2);
}

.button-primary:hover,
.primary-button:hover {
  border-color: #50d861;
  background: #50d861;
  box-shadow: 0 14px 30px rgba(55, 200, 74, 0.26);
}

.button-dark {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.button-outline,
.secondary-button,
.tertiary-button {
  border-color: #afbec8;
  background: transparent;
  color: var(--ink);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button-sm {
  min-height: 42px;
  padding-inline: 1rem;
  font-size: 0.84rem;
}

.button svg {
  width: 18px;
  height: 18px;
}

.eyebrow,
.section-kicker,
.check-eyebrow,
.result-eyebrow {
  margin: 0 0 0.85rem;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-dark .eyebrow,
.band-dark .section-kicker {
  color: #70e07e;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.75rem, 6vw, 5.4rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  font-weight: 820;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.hero-dark h1,
.hero-dark h2,
.band-dark h2,
.band-dark h3 {
  color: var(--white);
}

.lead {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.22rem);
}

.gateway-hero h1,
.repair-hero h1 {
  font-size: clamp(2.7rem, 5.4vw, 5rem);
}

.brand-visual {
  display: grid;
  place-items: center;
  min-height: 390px;
  padding: clamp(1.5rem, 4vw, 3.25rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  text-align: center;
}

.brand-visual img {
  width: min(100%, 420px);
  max-height: 260px;
  object-fit: contain;
}

.brand-visual p {
  max-width: 38rem;
  margin: 1.25rem 0 0;
  color: #dbe5ec;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.path-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.path-card-primary {
  border-color: #9ce6a5;
  background: var(--green-soft);
}

.benefit-list {
  display: grid;
  gap: 0.85rem;
}

.benefit-list div {
  display: grid;
  gap: 0.15rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
}

.benefit-list strong { color: var(--white); }
.benefit-list span { color: var(--muted-light); }

.compact-process {
  grid-template-columns: 1fr;
}

.compact-process .process-card {
  padding: 1.1rem;
}

.compact-process .process-card > span {
  color: #70e07e;
  font-weight: 900;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-top: 1.25rem;
  font-weight: 800;
}

.contact-strip a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.phone-chooser {
  position: relative;
  z-index: 12;
}

.phone-chooser > summary {
  min-height: 44px;
  list-style: none;
}

.phone-chooser > summary::-webkit-details-marker {
  display: none;
}

.phone-chooser > summary::after {
  content: " ▾";
}

.phone-chooser[open] > summary::after {
  content: " ▴";
}

.phone-chooser-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  display: grid;
  min-width: 190px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow);
}

.phone-chooser-menu a {
  min-height: 48px;
  padding: .75rem 1rem;
  color: var(--ink);
  font-weight: 800;
}

.phone-chooser-menu a + a {
  border-top: 1px solid var(--line);
}

.phone-chooser-menu a:hover,
.phone-chooser-menu a:focus-visible {
  background: var(--green-soft);
  color: var(--green-dark);
}

.contact-strip .phone-chooser {
  min-width: 220px;
}

.contact-strip .phone-chooser > summary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1rem;
  color: var(--green-dark);
  font-weight: 800;
}

.notice-card,
.mail-in-terms,
.portal-panel {
  margin-top: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.notice-card {
  border-left: 5px solid var(--green);
}

.portal-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
}

.portal-panel h2,
.mail-in-terms h3 {
  margin-top: 0;
}

.portal-panel .submission-message {
  grid-column: 1 / -1;
}

.centered-actions,
.stacked-actions,
.error-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.5rem;
}

.stacked-actions {
  align-items: stretch;
  flex-direction: column;
  margin: 0;
}

.about-owner-mark {
  width: min(100%, 260px);
  max-height: 280px;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 4rem 0;
  background: var(--cloud);
}

.error-links a {
  min-height: 44px;
  padding: .65rem .85rem;
  color: var(--green-dark);
  font-weight: 800;
}

.text-link-light {
  color: var(--white);
}

@media (max-width: 760px) {
  .path-grid { grid-template-columns: 1fr; }
  .brand-visual { min-height: 280px; }
  .gateway-hero .hero-actions .button,
  .repair-hero .hero-actions .button { width: 100%; }
}

.hero-dark .lead,
.band-dark .lead {
  color: #c4d1da;
}

.hero-dark .check-list li {
  color: #d1dbe3;
}

.hero-dark .check-list li::before {
  color: #70e07e;
}

.hero-dark {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8.5rem) 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(55, 200, 74, 0.19), transparent 28rem),
    linear-gradient(135deg, #07121f 0%, #0a1c2e 58%, #0a2530 100%);
  color: var(--white);
}

.hero-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.hero-copy {
  max-width: 730px;
}

.hero-copy h1 span {
  color: #72e17f;
}

.hero-actions,
.cta-row,
.contact-actions,
.result-actions,
.lead-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.hero-actions {
  margin-top: 1.8rem;
}

.trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.3rem;
  margin-top: 1.6rem;
  color: #becbd5;
  font-size: 0.88rem;
  font-weight: 650;
}

.trust-inline span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-inline svg {
  width: 17px;
  height: 17px;
  color: #6de27a;
}

.executive-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.executive-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -65px;
  top: -70px;
  border-radius: 50%;
  background: rgba(55, 200, 74, 0.14);
  filter: blur(4px);
}

.hero-brand-mark {
  width: 84px;
  height: 84px;
  margin-bottom: 1.25rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.metric {
  min-height: 108px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.12);
}

.metric strong {
  display: block;
  color: var(--white);
  font-size: 1.32rem;
  line-height: 1.15;
}

.metric span {
  display: block;
  margin-top: 0.35rem;
  color: #b9c9d4;
  font-size: 0.78rem;
}

.trust-bar {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-bar-grid {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
}

.trust-point {
  padding: 0.8rem 1.2rem;
  border-right: 1px solid var(--line);
}

.trust-point:last-child {
  border-right: 0;
}

.trust-point strong,
.trust-point span {
  display: block;
}

.trust-point strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.trust-point span {
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.section-soft {
  background: var(--cloud);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-copy {
  max-width: 66ch;
  color: var(--muted);
  font-size: 1.04rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.content-card,
.value-card,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.card,
.content-card,
.value-card {
  padding: 1.5rem;
}

.card p,
.content-card p,
.value-card p {
  color: var(--muted);
}

.icon-tile {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.icon-tile svg {
  width: 24px;
  height: 24px;
}

.service-meta,
.meta,
.plan-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-price {
  margin: 1rem 0 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.feature-list,
.check-list,
.plan-benefits,
.result-list,
.contact-list,
.steps {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li,
.plan-benefits li,
.result-list li,
.contact-list li,
.steps li {
  position: relative;
  margin: 0.7rem 0;
  padding-left: 1.65rem;
  color: var(--muted);
}

.feature-list li::before,
.check-list li::before,
.plan-benefits li::before,
.result-list li::before,
.contact-list li::before,
.steps li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green-dark);
  font-weight: 900;
}

.band-dark {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: linear-gradient(135deg, #07121f, #10283b);
  color: var(--white);
}

.band-dark p,
.band-dark li {
  color: #c0ced8;
}

.band-dark .feature-list li::before,
.band-dark .check-list li::before {
  color: #70e07e;
}

.price-accordion {
  display: grid;
  gap: 0.75rem;
}

.price-accordion details,
.faq-list details,
.plan-card details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.price-accordion summary,
.faq-list summary,
.plan-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

.price-accordion summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker,
.plan-card summary::-webkit-details-marker {
  display: none;
}

.price-accordion summary::after,
.faq-list summary::after,
.plan-card summary::after {
  content: "+";
  flex: none;
  color: var(--green-dark);
  font-size: 1.3rem;
}

.price-accordion details[open] summary::after,
.faq-list details[open] summary::after,
.plan-card details[open] summary::after {
  content: "−";
}

.price-table {
  padding: 0 1.15rem 1rem;
}

.price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
}

.price-row span {
  color: var(--muted);
}

.price-row strong {
  color: var(--ink);
  white-space: nowrap;
}

.booking-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.booking-header h3,
.booking-header p {
  margin: 0;
}

.booking-header p {
  color: var(--muted);
  font-size: 0.88rem;
}

.calendar-frame {
  min-height: 680px;
  background: var(--white);
}

.calendar-frame > div {
  min-height: 680px;
}

.deposit-note {
  margin: 0;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--green-soft);
  color: #274c31;
  font-size: 0.9rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.plan-card.featured {
  border-color: rgba(55, 200, 74, 0.75);
  box-shadow: 0 24px 70px rgba(31, 157, 52, 0.15);
}

.best-value {
  position: absolute;
  top: 0;
  right: 1.25rem;
  transform: translateY(-50%);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--green);
  color: #07120a;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-price,
.price {
  margin: 0.9rem 0;
  color: var(--ink);
  font-size: 2.25rem;
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1;
}

.plan-price small,
.price small {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 650;
  letter-spacing: 0;
}

.plan-card > p {
  color: var(--muted);
}

.plan-card .plan-benefits {
  flex: 1;
}

.plan-card .button,
.plan-card > button {
  width: 100%;
}

.plan-card details {
  margin-top: 0.9rem;
  box-shadow: none;
}

.details-body {
  padding: 0 1rem 1rem;
}

.comparison-wrap {
  margin-top: 1.4rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.stripe-pricing-shell {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: clamp(1rem, 2.5vw, 1.75rem);
  border: 1px solid #dce5ea;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.stripe-pricing-shell stripe-pricing-table {
  display: block;
  width: 100%;
  min-width: 0;
}

.pricing-table-status,
.pricing-support-note {
  color: #526477;
  text-align: center;
}

.pricing-table-status {
  margin: 1rem 0 0;
}

.pricing-support-note {
  max-width: 760px;
  margin: 1.25rem auto 0;
}

.pricing-table-fallback {
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid #dce5ea;
  border-radius: 18px;
  background: #f4f7f9;
  color: #0b1726;
  text-align: center;
}

.pricing-table-fallback h3 {
  margin-top: 0;
}

.pricing-table-fallback .hero-actions {
  justify-content: center;
}

.checkout-backup-toggle {
  margin: .75rem 0 0;
  text-align: center;
}

.checkout-backup-toggle .secondary-link {
  min-height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.checkout-fallback-form {
  display: grid;
  gap: 1.15rem;
  max-width: 820px;
  margin: 1.5rem auto;
  text-align: left;
}

.checkout-quantity-field {
  max-width: 360px;
}

.checkout-quantity-field label,
.checkout-plan-options legend {
  display: block;
  margin-bottom: .45rem;
  color: var(--ink);
  font-weight: 850;
}

.checkout-quantity-field input,
.checkout-quantity-field select {
  width: 100%;
  min-height: 48px;
  padding: .7rem .8rem;
  border: 1px solid #aab8c4;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.checkout-plan-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.checkout-plan-options legend {
  grid-column: 1 / -1;
}

.checkout-plan-button {
  display: grid;
  gap: .35rem;
  align-content: start;
  min-height: 190px;
  padding: 1rem;
  border: 2px solid #cdd8df;
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  text-align: left;
}

.checkout-plan-button:focus-within {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(31, 157, 52, .16);
}

.checkout-plan-button span {
  color: var(--green-dark);
  font-size: .88rem;
  font-weight: 750;
}

.checkout-fallback-form[aria-busy="true"] input,
.checkout-fallback-form[aria-busy="true"] select {
  cursor: wait;
  opacity: .65;
}

.checkout-plan-stepper {
  display: grid;
  grid-template-columns: 64px minmax(64px, 1fr) 64px;
  align-items: center;
  gap: .65rem;
  margin-top: auto;
  padding-top: .8rem;
}

.checkout-plan-stepper button {
  min-width: 64px;
  min-height: 60px;
  border: 2px solid var(--green-dark);
  border-radius: 12px;
  background: var(--white);
  color: var(--green-dark);
  cursor: pointer;
  font: 900 1.75rem/1 system-ui, sans-serif;
}

.checkout-plan-stepper button:last-child {
  background: var(--green-dark);
  color: var(--white);
}

.checkout-plan-stepper button:hover,
.checkout-plan-stepper button:focus-visible {
  box-shadow: 0 0 0 4px rgba(31, 157, 52, .2);
  transform: translateY(-1px);
}

.checkout-plan-stepper button:disabled {
  cursor: wait;
  opacity: .6;
}

.checkout-plan-stepper output {
  display: grid;
  min-height: 60px;
  place-items: center;
  border: 2px solid #aab8c4;
  border-radius: 12px;
  background: #f7faf8;
  color: var(--ink);
  font-size: 1.5rem;
  font-weight: 900;
}

.checkout-total {
  margin: 0;
  padding: .9rem 1rem;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--ink);
  font-weight: 800;
}

.checkout-consent,
.checkout-consent .checkbox-row,
.checkout-consent .field-note {
  font-size: .78rem;
  line-height: 1.5;
}

.checkout-consent .checkbox-row label {
  font-size: inherit;
  font-weight: 400;
}

.checkout-cart {
  padding: 1rem;
  border: 1px solid #cdd8df;
  border-radius: 14px;
  background: var(--white);
}

.checkout-cart h4 {
  margin: 0 0 .75rem;
}

.checkout-cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 0;
  border-top: 1px solid var(--line);
}

.checkout-cart-item:first-child {
  border-top: 0;
}

.checkout-cart-item strong,
.checkout-cart-item span {
  display: block;
}

.checkout-cart-item span {
  color: var(--muted);
  font-size: .88rem;
}

.checkout-cart-actions {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.checkout-cart-actions button {
  min-width: 40px;
  min-height: 40px;
  border: 1px solid #aab8c4;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
}

.checkout-cart-actions .checkout-cart-remove {
  padding-inline: .7rem;
  color: var(--danger);
  font-size: .78rem;
}

.checkout-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.checkout-status.is-error {
  color: var(--danger);
}

.checkout-status.is-pending {
  color: var(--green-dark);
}

.checkout-support-copy {
  margin-top: 1.25rem;
}

.split-grid,
.os-instructions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stripe-pricing-shell {
  margin-top: 2rem;
}

#secure-enrollment {
  margin: clamp(2rem, 5vw, 4rem) 0 0;
  border-color: rgba(31, 157, 52, .35);
  box-shadow: 0 22px 55px rgba(11, 23, 38, .12);
  scroll-margin-top: 6rem;
}

#secure-enrollment > h2 {
  margin-bottom: .35rem;
  text-align: center;
}

#secure-enrollment .pricing-table-fallback {
  margin-top: 1rem;
}

#secure-enrollment .checkout-submit {
  width: 100%;
  min-height: 54px;
  font-size: 1rem;
}

.plain-list {
  padding-left: 1.25rem;
}

.os-instructions article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
}

.mobile-enrollment-bar {
  display: none;
}

@media (max-width: 760px) {
  .checkout-plan-options {
    grid-template-columns: 1fr;
  }

  .checkout-plan-button {
    min-height: 88px;
  }

  .checkout-fallback-form .button,
  .pricing-table-fallback .hero-actions .button {
    width: 100%;
  }

  .checkout-cart-item {
    align-items: stretch;
    flex-direction: column;
  }
}

.consent-panel {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  width: min(calc(100% - 2rem), 560px);
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow);
}

.consent-panel p {
  margin-top: 0;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: center;
}

.consent-actions button {
  min-height: 44px;
  padding: .65rem .85rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.consent-actions button:last-of-type {
  background: var(--ink);
  color: var(--white);
}

.comparison-wrap table {
  width: 100%;
  min-width: 740px;
  border-collapse: collapse;
}

.comparison-wrap th,
.comparison-wrap td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-wrap th {
  background: var(--navy);
  color: var(--white);
  font-size: 0.84rem;
}

.comparison-wrap tr:last-child td {
  border-bottom: 0;
}

.assessment-shell {
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.assessment {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.progress-shell {
  margin-bottom: 1.2rem;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6edf1;
}

.progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  transition: width 220ms ease;
}

.check-panel {
  padding: 0;
}

.check-panel h3 {
  max-width: 760px;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.check-help,
.field-note,
.result-reason,
.result-statement,
.result-total,
.support-note,
.note,
.small-note,
.card-note {
  color: var(--muted);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0;
  padding: 0;
  border: 0;
}

.choice-card {
  position: relative;
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid #cfdbe2;
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.choice-card:has(input:checked) {
  border-color: var(--green-dark);
  background: var(--green-soft);
  box-shadow: 0 0 0 2px rgba(55, 200, 74, 0.08);
}

.choice-card input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--green-dark);
  flex: none;
}

.check-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.secondary-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.submission-message,
.field-error {
  margin: 0.85rem 0 0;
  color: var(--danger);
  font-size: 0.88rem;
  font-weight: 700;
}

.summary-stage > .result-card,
.result-card:not([data-result-stage]) {
  padding: 1.5rem;
  border: 1px solid rgba(55, 200, 74, 0.38);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #f4fbf5, #ffffff);
  box-shadow: var(--shadow-sm);
}

.result-card h3 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.result-price {
  margin: 0.75rem 0 0.3rem;
  color: var(--green-dark);
  font-size: 1.35rem;
  font-weight: 850;
}

.result-highlight {
  display: inline-flex;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: #fff4d6;
  color: #6e4b00;
  font-size: 0.82rem;
  font-weight: 750;
}

.secondary-link {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-card {
  margin-top: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cloud);
}

.contact-card h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.field {
  min-width: 0;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea,
.contact-methods select {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.8rem;
  border: 1px solid #bdcbd4;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
}

.contact-methods {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--muted);
  font-size: 0.82rem;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 0.16rem;
  accent-color: var(--green-dark);
}

.checkbox-row a {
  color: var(--green-dark);
  font-weight: 750;
  text-decoration: underline;
}

.web-design-hero {
  overflow: hidden;
}

.web-preview-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: #f7fafb;
  color: var(--ink);
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.28);
  transform: rotate(1.5deg);
}

.web-preview-toolbar {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 0.38rem;
  padding: 0 1rem;
  border-bottom: 1px solid var(--line);
  background: #eaf0f3;
}

.web-preview-toolbar > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9caab4;
}

.web-preview-toolbar > span:first-child {
  background: #f0746e;
}

.web-preview-toolbar > span:nth-child(2) {
  background: #e4b84f;
}

.web-preview-toolbar > span:nth-child(3) {
  background: var(--green);
}

.web-preview-toolbar small {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.web-preview-screen {
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 90% 10%, rgba(55, 200, 74, 0.18), transparent 34%),
    linear-gradient(145deg, #ffffff, #f1f7f3);
}

.web-preview-screen h2 {
  max-width: 430px;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.7rem);
}

.web-preview-screen p:not(.eyebrow) {
  max-width: 470px;
  color: var(--muted);
}

.web-preview-actions {
  display: flex;
  gap: 0.65rem;
  margin: 1.4rem 0 2rem;
}

.web-preview-actions span {
  width: 118px;
  height: 34px;
  border-radius: 999px;
  background: var(--green);
}

.web-preview-actions span:last-child {
  width: 88px;
  border: 1px solid #9aabb5;
  background: transparent;
}

.web-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.web-preview-grid span {
  height: 76px;
  border: 1px solid #d8e3e7;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.deliverables-grid {
  display: grid;
  gap: 0.8rem;
}

.deliverables-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.deliverables-grid article > span,
.form-section-heading > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.deliverables-grid h3 {
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.deliverables-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.consultation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.consultation-intro {
  position: sticky;
  top: 118px;
}

.consultation-contact {
  display: grid;
  gap: 0.35rem;
  margin: 1.5rem 0;
}

.consultation-contact p {
  margin: 0 0 0.2rem;
}

.consultation-contact a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consultation-form-card {
  padding: clamp(1.25rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-section-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  margin: 2.2rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.form-section-heading:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.form-section-heading h3 {
  font-size: 1.18rem;
}

.form-section-heading p {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-span-full {
  grid-column: 1 / -1;
}

.field textarea {
  resize: vertical;
}

.bot-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consultation-consent {
  margin-top: 1.3rem;
}

.web-design-form-status {
  min-height: 1.5em;
}

.web-design-form-status.is-success {
  color: var(--green-dark);
}

.web-design-form-status.is-pending {
  color: var(--muted);
}

.faq-list-light .faq-body {
  color: var(--muted);
  border-top-color: var(--line);
}

.contact-actions {
  margin-top: 1.25rem;
}

.contact-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-body {
  padding: 0 1.15rem 1rem;
  color: var(--muted);
}

.faq-body p:last-child {
  margin-bottom: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: steps;
}

.process-grid.process-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  counter-increment: steps;
}

.process-card::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 1.6rem;
  color: #70e07e;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-cards .card {
  min-height: 100%;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.business-grid .card {
  display: flex;
  flex-direction: column;
}

.business-grid .feature-list {
  flex: 1;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0a1c2e, #0c3240);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.cta-panel p {
  margin-bottom: 0;
  color: #c3d1da;
}

.legal-hero {
  padding: 4.5rem 0 3rem;
  background: var(--navy);
  color: var(--white);
}

.legal-hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.3rem);
}

.legal-hero .lead {
  color: #c4d1da;
}

.legal-hero .eyebrow {
  color: #70e07e;
}

.legal-content {
  padding: 4rem 0 6rem;
}

.legal-content h2 {
  margin-top: 2.5rem;
  font-size: 1.45rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-page-width {
  width: min(calc(100% - 2rem), 980px);
  margin-inline: auto;
}

.legal-dates { color: #d5e0e8; }
.legal-content section,
.legal-content h2,
.legal-content h3 { scroll-margin-top: 96px; }
.legal-content h3 { margin-top: 1.75rem; font-size: 1.15rem; }
.legal-content a { color: var(--green-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 0.16em; }

.legal-toc {
  margin: 0 0 3rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cloud);
}

.legal-toc h2 { margin: 0 0 0.8rem; font-size: 1.3rem; }
.legal-toc ol { display: grid; gap: 0.45rem; margin: 0; padding-left: 1.35rem; }

.legal-table-wrap {
  max-width: 100%;
  margin: 1.25rem 0 1.5rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.legal-table-wrap table { width: 100%; min-width: 620px; border-collapse: collapse; }
.legal-table-wrap th,
.legal-table-wrap td { padding: 0.9rem; border-bottom: 1px solid var(--line); color: var(--ink); text-align: left; vertical-align: top; }
.legal-table-wrap thead th { background: var(--navy); color: var(--white); }
.legal-table-wrap tr:last-child th,
.legal-table-wrap tr:last-child td { border-bottom: 0; }
.legal-back-to-top { margin-top: 3rem; }

@media print {
  .global-call-cta, .site-header, .skip-link, .site-footer, .legal-toc, .legal-back-to-top { display: none !important; }
  body, .legal-hero, .legal-content, .legal-content p, .legal-content li, .legal-table-wrap th, .legal-table-wrap td { color: #000 !important; background: #fff !important; }
  .legal-hero, .legal-content { padding: 0 0 1rem; }
  .legal-content h2, .legal-content h3 { break-after: avoid; }
  .legal-table-wrap { overflow: visible; border: 0; }
  .legal-table-wrap table { min-width: 0; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; font-weight: 400; }
}

.notice {
  padding: 1rem 1.1rem;
  border-left: 4px solid #d6a318;
  border-radius: 8px;
  background: #fff8dd;
  color: #614a05;
}

.site-footer {
  padding: 3.8rem 0 1.5rem;
  background: #06101b;
  color: #c0ccd5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 0.7fr));
  gap: 2rem;
}

.footer-brand p {
  max-width: 34ch;
  margin-top: 1rem;
  color: #aab9c4;
  font-size: 0.88rem;
}

.footer-title {
  margin-bottom: 0.9rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: #b5c2cc;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: #70e07e;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.8rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #95a6b3;
  font-size: 0.78rem;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 1020px) {
  .primary-nav {
    gap: 1rem;
  }

  .primary-nav > a:not(.button) {
    font-size: 0.82rem;
  }

  .nav-dropdown-toggle {
    font-size: 0.82rem;
  }

  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 68px;
  }

  .site-header {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    display: none;
    align-items: stretch;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #07121f;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.3);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav > a:not(.button),
  .nav-dropdown-toggle {
    padding: 0.8rem 0.4rem;
    font-size: 1rem;
  }

  .primary-nav > a:not(.button)::after,
  .nav-dropdown-toggle::after {
    display: none;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 0.2rem;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 0.85rem;
  }

  .primary-nav .button {
    margin-top: 0.3rem;
  }

  .hero-grid,
  .split,
  .cta-panel,
  .consultation-layout {
    grid-template-columns: 1fr;
  }

  .consultation-intro {
    position: static;
  }

  .web-preview-card {
    transform: none;
  }

  .hero-dark {
    padding: 4.8rem 0;
  }

  .trust-bar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-point:nth-child(2) {
    border-right: 0;
  }

  .trust-point:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .plan-grid,
  .process-grid,
  .card-grid,
  .contact-columns,
  .split-grid,
  .os-instructions,
  .audience-grid,
  .process-grid-four,
  .process-grid.process-grid-four {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    margin-top: 0.6rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .container,
  .narrow {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .brand-name {
    font-size: 0.94rem;
  }

  .brand-name small {
    font-size: 0.56rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.8rem);
  }

  .hero-actions,
  .cta-row,
  .contact-actions,
  .result-actions,
  .lead-actions,
  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .cta-row .button,
  .contact-actions .button,
  .result-actions .button,
  .actions .button,
  .contact-actions button,
  .result-actions button {
    width: 100%;
  }

  .metric-grid,
  .trust-bar-grid,
  .service-cards,
  .business-grid,
  .card-grid.two,
  .form-grid,
  .choice-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-point,
  .trust-point:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-point:last-child {
    border-bottom: 0;
  }

  .booking-header {
    grid-template-columns: 1fr;
  }

  .calendar-frame,
  .calendar-frame > div {
    min-height: 620px;
  }

  .check-actions {
    flex-direction: column-reverse;
  }

  .check-actions button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .hero-actions .phone-chooser,
  .hero-actions .phone-chooser > summary {
    width: 100%;
  }

  .phone-chooser-menu {
    right: 0;
    min-width: 100%;
  }

  .portal-panel {
    grid-template-columns: 1fr;
  }

  body:has(.mobile-enrollment-bar) {
    padding-bottom: 72px;
  }

  .mobile-enrollment-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    padding: .55rem .75rem;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 -8px 24px rgba(7, 25, 42, .12);
  }

  .mobile-enrollment-bar .button {
    padding: .65rem .9rem;
  }

  .mobile-enrollment-bar > a:last-child {
    color: var(--green-dark);
    font-weight: 800;
  }

  .consent-panel {
    bottom: 74px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.environment-banner {
  position: relative;
  z-index: 200;
  padding: .65rem 1rem;
  border-bottom: 2px solid #5c4300;
  background: #fff1a8;
  color: #2d2400;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-align: center;
}

.environment-checkout-label {
  margin: 1rem auto;
  padding: .7rem 1rem;
  border: 2px solid #5c4300;
  border-radius: .5rem;
  background: #fff8d6;
  color: #2d2400;
  font-weight: 900;
  text-align: center;
}

.privacy-preference-button {
  position: fixed;
  z-index: 120;
  right: 1rem;
  bottom: 1rem;
  padding: .55rem .8rem;
  border: 2px solid var(--green-dark);
  border-radius: 999px;
  background: #fff;
  color: var(--green-dark);
  font: inherit;
  font-size: .85rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 .25rem 1rem rgb(0 0 0 / 18%);
}

.privacy-preference-button:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

/* Approved Catlin Care sales-page presentation */
[data-catlin-care-page] {
  --care-navy: #061723;
  --care-navy-2: #092131;
  --care-green: #31da61;
  --care-green-soft: #f1fff4;
  --care-soft: #f4f7f8;
}

.care-trust-line {
  padding: .48rem 1rem;
  background: #04131d;
  color: #b7f6c7;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-align: center;
}

[data-catlin-care-page] .site-header {
  background: var(--care-navy);
}

[data-catlin-care-page] .hero-dark {
  position: relative;
  overflow: hidden;
  padding: clamp(4.75rem, 9vw, 7.25rem) 0;
  background:
    radial-gradient(circle at 78% 27%, rgba(49, 218, 97, .15), transparent 24%),
    radial-gradient(circle at 96% 75%, rgba(49, 218, 97, .07), transparent 25%),
    var(--care-navy);
}

[data-catlin-care-page] .hero-dark::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .2;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

[data-catlin-care-page] .hero-grid {
  position: relative;
  gap: clamp(2.5rem, 7vw, 5rem);
}

[data-catlin-care-page] .hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6.3vw, 5.25rem);
  line-height: .98;
}

[data-catlin-care-page] .hero-copy .lead {
  max-width: 680px;
  color: #c7d4da;
}

[data-catlin-care-page] .executive-card {
  border: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .045));
  box-shadow: 0 26px 80px rgba(0, 0, 0, .28);
  backdrop-filter: blur(10px);
}

[data-catlin-care-page] .trust-bar {
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 36px rgba(7, 27, 40, .08);
}

[data-catlin-care-page] .trust-point {
  padding-block: 1.5rem;
}

.care-value-section {
  background: var(--care-soft);
}

.care-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.care-benefit-card {
  padding: 1.5rem;
  border: 1px solid #dfe7eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(7, 27, 40, .06);
}

.care-benefit-card > span {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #ddf9e5;
  color: #116f24;
  font-size: .75rem;
  font-weight: 900;
}

.care-benefit-card h3,
.care-benefit-card p {
  margin-top: 0;
}

.care-benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.care-value-note {
  max-width: 820px;
  margin: 1.5rem auto 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--care-green);
  border-radius: 0 12px 12px 0;
  background: #ddf9e5;
  color: #173f25;
  text-align: center;
}

[data-catlin-care-page] #plans {
  background: #fff;
}

[data-catlin-care-page] .plan-card {
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border-radius: 22px;
}

[data-catlin-care-page] .plan-card.featured {
  border: 2px solid #26c852;
  background: linear-gradient(180deg, var(--care-green-soft), #fff 38%);
  box-shadow: 0 25px 70px rgba(38, 200, 82, .18);
}

[data-catlin-care-page] .best-value {
  top: .75rem;
  right: .75rem;
  max-width: 11rem;
  transform: none;
  background: #26c852;
  text-align: center;
}

.shield-callout {
  margin: -.2rem 0 1rem !important;
  padding: .65rem .75rem;
  border-radius: 10px;
  background: #ddf9e5;
  color: #116f24 !important;
  font-size: .88rem;
  font-weight: 850;
}

[data-catlin-care-page] #secure-enrollment {
  border: 1px solid #cfe0d4;
  background: #fbfefc;
}

[data-catlin-care-page] .pricing-table-fallback {
  background: #fff;
}

.care-plan-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid #dfe7eb;
  border-radius: 18px;
  background: var(--care-soft);
}

.care-plan-help h3,
.care-plan-help p {
  margin-top: 0;
}

.care-plan-help p:last-child {
  margin-bottom: 0;
}

[data-catlin-care-page] .band-dark {
  background: var(--care-navy);
}

@media (max-width: 900px) {
  .care-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [data-catlin-care-page] .plan-card.featured {
    grid-row: 1;
  }
}

@media (max-width: 620px) {
  .care-trust-line {
    font-size: .7rem;
  }

  [data-catlin-care-page] .hero-dark {
    padding: 4rem 0;
  }

  [data-catlin-care-page] .hero-copy h1 {
    font-size: clamp(2.55rem, 13.5vw, 3.6rem);
  }

  .care-benefit-grid {
    grid-template-columns: 1fr;
  }

  .care-plan-help {
    align-items: stretch;
    flex-direction: column;
  }

  [data-catlin-care-page] .best-value {
    max-width: 9rem;
    font-size: .58rem;
  }
}
