:root {
  --navy: #071522;
  --navy-2: #102a3d;
  --ink: #172231;
  --muted: #66717f;
  --line: #e8e1d6;
  --ivory: #fbf7ef;
  --white: #fffdf8;
  --gold: #b98b45;
  --eyebrow-gold: #b7833a;
  --gold-dark: #8d6329;
  --aqua: #6fb7bf;
  --shadow: 0 28px 80px rgba(7, 21, 34, 0.16);
  --radius: 8px;
  --header: 82px;
  --quote-cta-opacity: 0;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

:focus-visible {
  outline: 3px solid rgba(185, 139, 69, 0.66);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}

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

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  height: var(--header);
  color: #3f4146;
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(255, 253, 248, 0.98);
  color: var(--navy);
  border-bottom: 1px solid rgba(7, 21, 34, 0.08);
  box-shadow: 0 12px 34px rgba(7, 21, 34, 0.1);
}

.header-inner {
  width: calc(100% - 96px);
  max-width: none;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: clamp(170px, 19vw, 236px);
  min-height: 46px;
}

.brand-logo {
  width: 100%;
  height: auto;
  transition: opacity 220ms ease;
}

.brand-logo-mobile {
  display: none;
  width: 42px;
  height: auto;
}

.brand-logo-dark {
  position: absolute;
  inset: auto 0;
  opacity: 1;
}

.brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light,
.site-header.menu-active .brand-logo-light,
.site-header .brand-logo-light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.menu-active .brand-logo-dark,
.site-header .brand-logo-dark {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.header-contact,
.header-schedule {
  display: none;
}

.header-schedule {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: none;
  white-space: nowrap;
}

.quote-short,
.schedule-mobile-copy {
  display: none;
}

.header-schedule::before,
.menu-schedule::before,
.modal-schedule-link::before {
  content: "";
  width: 1em;
  height: 1em;
  flex: 0 0 1em;
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 8H3M16 2V5M8 2V5M12 18V12M9 15H15M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z' stroke='%23b98b45' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.header-quote {
  display: none;
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.78rem;
  color: #fff;
  background: #1769aa;
  border-color: #1769aa;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hamburger {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  border: 1px solid rgba(63, 65, 70, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.site-header.is-scrolled .hamburger,
.site-header.menu-active .hamburger {
  border-color: rgba(7, 21, 34, 0.16);
}

.hamburger span {
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-overlay,
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(7, 21, 34, 0.46);
  backdrop-filter: blur(4px);
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(430px, calc(100vw - 24px));
  height: 100vh;
  padding: 28px;
  overflow-y: auto;
  color: var(--navy);
  background: var(--white);
  border-left: 1px solid var(--line);
  box-shadow: -28px 0 80px rgba(7, 21, 34, 0.2);
  transform: translateX(104%);
  transition: transform 260ms ease;
}

.side-menu.is-open {
  transform: translateX(0);
}

.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.menu-label {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.menu-close {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
}

.menu-nav {
  display: grid;
  gap: 22px;
}

.menu-links {
  gap: 0;
}

.menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 4px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 1.08rem;
  text-decoration: none;
}

.menu-links a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  opacity: 0.45;
}

.menu-group {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.menu-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  font-size: 1.15rem;
}

.menu-chevron {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

.menu-accordion-trigger[aria-expanded="true"] .menu-chevron {
  transform: rotate(225deg);
}

.menu-submenu {
  max-height: 0;
  overflow: hidden;
  display: grid;
  gap: 10px;
  transition: max-height 240ms ease, padding-top 240ms ease;
}

.menu-accordion-trigger[aria-expanded="true"] + .menu-submenu {
  max-height: 180px;
  padding-top: 13px;
}

.menu-submenu a {
  padding-left: 16px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.94rem;
  text-decoration: none;
}

.menu-submenu .menu-muted {
  color: #8c877e;
}

.menu-callout {
  margin-top: 32px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
}

.menu-phone {
  display: block;
  margin-bottom: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.menu-schedule {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.menu-schedule:hover {
  color: #f1c879;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: start center;
  overflow: hidden;
  color: #3f4146;
  background: #f5f3ed url("../images/hero-main.jpg") center / cover no-repeat;
}

.hero-visual {
  position: absolute;
  inset: -5%;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.78) 0%, rgba(255, 253, 248, 0.36) 42%, rgba(255, 253, 248, 0.08) 100%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.34), rgba(255, 253, 248, 0.08) 50%, rgba(255, 253, 248, 0.04)),
    url("../images/hero-main.jpg") center / cover no-repeat;
  animation: heroZoom 24s ease-in-out infinite alternate;
}

.hero-gradient,
.hero-geometry {
  position: absolute;
  inset: 0;
}

.hero-gradient {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 253, 248, 0.64), transparent 33%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.32), rgba(255, 253, 248, 0.02) 58%);
}

.hero-geometry {
  opacity: 0;
  background-image:
    linear-gradient(120deg, transparent 0 47%, rgba(63, 65, 70, 0.28) 47% 48%, transparent 48%),
    linear-gradient(60deg, transparent 0 46%, rgba(185, 139, 69, 0.34) 46% 47%, transparent 47%);
  background-size: 340px 340px, 430px 430px;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(96vw, 1780px);
  max-width: none;
  padding: clamp(150px, 22vh, 230px) 0 0;
  text-align: center;
}

body .eyebrow {
  margin: 0 0 14px;
  color: var(--eyebrow-gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  font-weight: 500;
}

h1,
h2,
h3 {
  font-family: "Segoe UI Light", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 200;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 6.4vw, 6.1rem);
}

h2 {
  font-size: clamp(2.15rem, 4.4vw, 4.4rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.28rem, 2vw, 1.78rem);
}

.hero-message {
  display: grid;
  justify-items: center;
  gap: 0.08em;
  width: 100%;
  margin: 0 auto;
}

.hero-line {
  display: block;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  white-space: nowrap;
  text-wrap: balance;
  color: #3f4146;
  font-family: "Segoe UI Light", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(1.75rem, 2vw, 2.25rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.hero-cta {
  min-height: 40px;
  margin-top: 34px;
  padding: 9px 17px;
  font-size: 0.78rem;
}

.hero .hero-cta {
  color: #fff;
  background: #1769aa;
  border-color: #1769aa;
  box-shadow: 0 12px 28px rgba(23, 105, 170, 0.16);
}

.menu-callout .button {
  background: #1769aa;
  border-color: #1769aa;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.button-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.site-header .header-quote {
  display: inline-flex;
  opacity: var(--quote-cta-opacity);
  visibility: visible;
  pointer-events: none;
  transform: translateY(calc((1 - var(--quote-cta-opacity)) * -4px));
  white-space: nowrap;
  transition:
    opacity 80ms linear,
    transform 80ms linear,
    border-color 220ms ease,
    background 220ms ease;
}

.site-header .header-quote[aria-hidden="false"] {
  pointer-events: auto;
}

.side-menu .menu-quote {
  display: inline-flex;
  min-height: 50px;
  opacity: var(--quote-cta-opacity);
  visibility: visible;
  pointer-events: none;
  transform: translateY(calc((1 - var(--quote-cta-opacity)) * -4px));
  transition: opacity 80ms linear, transform 80ms linear, border-color 220ms ease, background 220ms ease;
}

.side-menu .menu-quote[aria-hidden="false"] {
  pointer-events: auto;
}

.site-header .header-quote.button-gold,
.hero .hero-cta.button-gold,
.menu-callout .button.button-gold {
  color: #fff;
  background: #1769aa;
  border-color: #1769aa;
}

.site-header .header-quote.button-gold:hover,
.hero .hero-cta.button-gold:hover,
.menu-callout .button.button-gold:hover {
  background: #0f5f9e;
  border-color: #0f5f9e;
}

.button-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.07);
}

.button-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.button-muted {
  color: #d8e4e7;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.overlap-section {
  position: relative;
  z-index: 4;
  margin-top: -92px;
  padding-bottom: clamp(48px, 7vw, 88px);
}

.scroll-anchor {
  position: absolute;
  top: -150px;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.overlap-panel {
  position: relative;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow);
}

.overlap-panel .split-layout {
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
  gap: clamp(44px, 4vw, 58px);
}

.overlap-panel .split-layout > div:first-child {
  transform: translateY(-16px);
}

#intro-title {
  max-width: 540px;
  font-family: "Segoe UI Light", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3.15rem, 4.15vw, 4.35rem);
  font-weight: 600;
  line-height: 1.04;
}

#intro-title .title-line {
  display: block;
}

.overlap-panel .section-copy {
  max-width: 560px;
  transform: translateY(18px);
}

.overlap-panel .section-copy p {
  margin: 0 0 18px;
  color: #5f6a76;
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.42;
}

.panel-chevron {
  position: absolute;
  top: -23px;
  left: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(7, 21, 34, 0.12);
  animation: cuePulse 2.6s ease-in-out infinite;
}

.panel-chevron span {
  width: 12px;
  height: 12px;
  border-right: 1.5px solid var(--gold-dark);
  border-bottom: 1.5px solid var(--gold-dark);
  transform: translateY(-2px) rotate(45deg);
}

.split-layout,
.image-story,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.section-copy p,
.section-heading p,
.story-copy p,
.coverage-card p,
.process-card p,
.resource-card p,
.comparison-card li {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

.text-button {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.problem-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(185, 139, 69, 0.24);
  border-radius: 999px;
  color: var(--muted);
  background: #fff8eb;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
}

.section {
  padding: clamp(78px, 10vw, 132px) 0;
}

.trust-strip {
  padding: 28px 0;
  background: var(--navy);
  color: #fff;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-strip-grid div {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 12px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.trust-strip-grid span {
  color: var(--gold);
  font-size: 0.78rem;
}

.about-section,
.editorial-alt,
.resources-section,
.additional-section {
  background: var(--white);
}

.profile-placeholder,
.editorial-image {
  position: relative;
  min-height: clamp(380px, 44vw, 620px);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    linear-gradient(145deg, rgba(7, 21, 34, 0.12), rgba(7, 21, 34, 0.58)),
    radial-gradient(circle at 24% 20%, rgba(185, 139, 69, 0.38), transparent 24%),
    linear-gradient(135deg, #efe7d9, #d9e6e8 46%, #15344a);
}

.profile-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-placeholder::before,
.editorial-image::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(120deg, transparent 0 47%, #fff 47% 48%, transparent 48%),
    linear-gradient(60deg, transparent 0 47%, var(--gold) 47% 48%, transparent 48%);
  background-size: 230px 230px, 320px 320px;
}

.profile-placeholder::before {
  opacity: 0;
}

.profile-card {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: min(300px, calc(100% - 52px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(7, 21, 34, 0.72);
  color: #fff;
  backdrop-filter: blur(10px);
}

.profile-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.profile-card strong {
  font-size: 1.5rem;
  line-height: 1.08;
  font-weight: 500;
}

.story-copy {
  display: grid;
  gap: 0;
}

.story-copy .eyebrow {
  margin-bottom: 18px;
  color: var(--eyebrow-gold);
}

.story-copy h2 {
  margin-bottom: 28px;
}

.story-copy p:not(.eyebrow):not(.agent-conversation-cta) {
  margin: 0 0 8px;
}

.agent-conversation-cta {
  margin-top: 16px;
  color: var(--ink);
}

.agent-conversation-cta .text-button {
  display: inline;
  color: var(--ink);
}

.founder-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: calc(var(--header) + 18px);
  background:
    radial-gradient(circle at 78% 26%, rgba(185, 139, 69, 0.16), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #fbf5ea 100%);
}

.founder-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(185, 139, 69, 0.08), transparent 14%, transparent 86%, rgba(185, 139, 69, 0.08)),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.72), transparent 32%);
}

.founder-layout {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: start;
}

.founder-copy {
  max-width: 690px;
}

.founder-copy .eyebrow {
  margin: 0 0 12px;
  color: var(--eyebrow-gold);
}

.founder-copy h2 {
  max-width: 680px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 4.4vw, 4.35rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0;
}

.founder-divider {
  display: block;
  width: 74px;
  height: 2px;
  margin: 26px 0 28px;
  background: linear-gradient(90deg, var(--gold), rgba(185, 139, 69, 0.14));
}

.founder-copy p {
  max-width: 660px;
  margin: 0 0 14px;
  color: #172231;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.62;
}

.founder-copy strong {
  color: #071522;
  font-weight: 800;
}

.founder-service-note {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  max-width: 650px;
  margin: 20px 0 20px;
  padding: 16px 18px;
  border: 1px solid rgba(185, 139, 69, 0.18);
  border-radius: var(--radius);
  background: rgba(185, 139, 69, 0.1);
  box-shadow: 0 18px 44px rgba(7, 21, 34, 0.05);
}

.founder-service-note p {
  margin: 0;
}

.founder-note-icon,
.founder-trust-item span,
.founder-nameplate-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.founder-note-icon {
  border-radius: 6px;
  text-decoration: none;
}

.founder-note-icon svg,
.founder-trust-item svg,
.founder-nameplate-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.founder-trust-item polygon {
  fill: currentColor;
  stroke: none;
}

.founder-note-icon img,
.founder-trust-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(54%) sepia(67%) saturate(448%) hue-rotate(357deg) brightness(88%) contrast(86%);
}

.founder-note-icon {
  width: 34px;
  height: 34px;
}

.founder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  margin-top: 22px;
}

.founder-primary-cta {
  min-width: 244px;
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 16px 34px rgba(7, 21, 34, 0.2);
}

.founder-primary-cta:hover {
  background: #102a3d;
  border-color: #102a3d;
}

.founder-review-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.founder-trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 760px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(7, 21, 34, 0.1);
}

.founder-trust-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 60px;
  padding: 0 18px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.founder-trust-item:first-child {
  padding-left: 0;
}

.founder-trust-item + .founder-trust-item {
  border-left: 1px solid rgba(7, 21, 34, 0.12);
}

.founder-trust-item span {
  width: 34px;
  height: 34px;
}

.founder-trust-item strong {
  font-size: 0.96rem;
  line-height: 1.26;
}

.founder-visual {
  display: flex;
  justify-content: center;
  padding-top: clamp(56px, 8vw, 132px);
}

.founder-portrait-frame {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 0.84;
  filter: drop-shadow(0 28px 48px rgba(7, 21, 34, 0.2));
}

.founder-portrait-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.founder-portrait-border {
  fill: var(--gold);
}

.founder-portrait-image {
  background: #d9e6e8;
}

.founder-nameplate {
  position: absolute;
  right: 14%;
  bottom: 8%;
  left: 14%;
  display: grid;
  justify-items: center;
  padding: 24px 22px 18px;
  border: 2px solid rgba(185, 139, 69, 0.9);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(7, 21, 34, 0.96), rgba(4, 28, 49, 0.96));
  color: #fff;
  text-align: center;
  box-shadow: 0 16px 36px rgba(7, 21, 34, 0.28);
}

.founder-nameplate-mark {
  position: absolute;
  top: -22px;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: #071522;
}

.founder-nameplate strong {
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.05;
}

.founder-nameplate span,
.founder-nameplate em {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.35;
}

.founder-nameplate span {
  margin-top: 7px;
  color: #f1bd5d;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.founder-nameplate em {
  max-width: 230px;
  margin-top: 9px;
  color: #fff;
  font-size: 0.94rem;
  font-style: normal;
}

.comparison-section,
.process-section {
  background: linear-gradient(180deg, var(--ivory), #f6efe5);
}

.process-section .section-heading {
  max-width: 1100px;
}

.process-section .section-heading .eyebrow {
  color: var(--eyebrow-gold);
}

.process-section .section-heading h2 {
  white-space: nowrap;
}

.process-section .section-heading p:not(.eyebrow) {
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.08rem, 1.16vw, 1.2rem);
  line-height: 1.66;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 60px);
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.comparison-card,
.coverage-card,
.process-card,
.resource-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 54px rgba(7, 21, 34, 0.06);
}

.comparison-card {
  padding: clamp(26px, 4vw, 42px);
}

.comparison-card.featured {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.comparison-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.comparison-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding-left: 20px;
}

.private-aca-section .container {
  width: min(1180px, calc(100% - 32px));
}

.private-aca-section .section-heading {
  max-width: 960px;
}

.private-aca-section .section-heading .eyebrow {
  color: var(--eyebrow-gold);
}

.private-aca-section .section-heading h2 {
  font-weight: 600;
}

.private-aca-section .section-heading p:not(.eyebrow) {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  line-height: 1.72;
}

.private-aca-section .comparison-panel-head {
  justify-items: center;
  padding-right: 18px;
  padding-left: 18px;
  text-align: center;
}

.private-aca-section .private-aca-panel h3 {
  max-width: 100%;
  font-weight: 600;
}

.private-aca-table {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(185, 139, 69, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(185, 139, 69, 0.32) calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
    #fffdf8;
  box-shadow: 0 24px 68px rgba(7, 21, 34, 0.08);
}

.private-aca-table::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(185, 139, 69, 0.18), var(--eyebrow-gold), rgba(111, 183, 191, 0.28));
}

.private-aca-panel {
  position: relative;
  display: grid;
  grid-template-rows: minmax(146px, auto) 1fr;
  padding: clamp(28px, 4vw, 48px);
}

.private-aca-panel-private {
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.86), rgba(255, 253, 248, 0.94)),
    #fffdf8;
}

.private-aca-panel-aca {
  background:
    linear-gradient(180deg, rgba(237, 245, 246, 0.78), rgba(255, 253, 248, 0.94)),
    #fffdf8;
}

.comparison-label {
  margin: 0 0 14px;
  color: var(--eyebrow-gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.comparison-panel-head {
  display: grid;
  align-content: start;
  padding: 0 18px 28px 42px;
}

.private-aca-panel h3 {
  max-width: 420px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.16;
}

.comparison-list {
  display: grid;
  gap: 0;
  grid-template-rows: repeat(5, minmax(86px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(7, 21, 34, 0.08);
}

.comparison-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 18px 18px 18px 42px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

.comparison-list li:nth-child(odd) {
  background: rgba(255, 248, 235, 0.58);
}

.private-aca-panel-aca .comparison-list li:nth-child(odd) {
  background: rgba(237, 245, 246, 0.66);
}

.comparison-list li + li {
  border-top: 1px solid rgba(7, 21, 34, 0.08);
}

.comparison-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  width: 9px;
  height: 9px;
  border: 2px solid rgba(185, 139, 69, 0.72);
  border-radius: 50%;
  background: #fffdf8;
  transform: translateY(-50%);
}

.private-aca-note {
  max-width: 840px;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.04rem, 1.16vw, 1.18rem);
  line-height: 1.68;
}

.private-aca-close {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 36px;
  text-align: center;
}

.private-aca-cta {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
}

.private-aca-cta .text-button {
  display: inline;
  color: var(--ink);
  text-decoration: none;
}

.agent-comparison-section .container {
  width: min(1180px, calc(100% - 32px));
}

.agent-comparison-section .section-heading {
  max-width: 980px;
}

.agent-comparison-section .section-heading .eyebrow {
  color: var(--eyebrow-gold);
}

.agent-comparison-section .section-heading h2,
.agent-comparison-section .private-aca-panel h3 {
  font-weight: 600;
}

.agent-comparison-section .section-heading p:not(.eyebrow) {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  line-height: 1.72;
}

.agent-comparison-section .comparison-list {
  grid-template-rows: repeat(4, minmax(92px, 1fr));
}

.agent-comparison-section .comparison-list li {
  min-height: 92px;
}

.agent-comparison-section .comparison-panel-head {
  justify-items: center;
  padding-right: 18px;
  padding-left: 18px;
  text-align: center;
}

.agent-comparison-section .private-aca-panel h3 {
  max-width: 100%;
}

.agent-comparison-note {
  max-width: 840px;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.04rem, 1.16vw, 1.18rem);
  line-height: 1.68;
}

.agent-comparison-close {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 36px;
  text-align: center;
}

.agent-comparison-cta {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
}

.agent-comparison-cta .text-button {
  display: inline;
  color: var(--ink);
}

.coverage-section {
  background: var(--white);
}

.coverage-section .container {
  max-width: 1200px;
}

.coverage-section .section-heading {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-bottom: clamp(38px, 4.5vw, 58px);
  margin-left: auto;
  text-align: center;
}

.coverage-section .section-heading .eyebrow {
  color: var(--eyebrow-gold);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
}

.coverage-section .section-heading h2 {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  color: #3f4146;
  font-family: "Segoe UI Light", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.9rem, 3.45vw, 3.65rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 34px;
}

.coverage-section .section-heading p {
  max-width: 1180px;
  margin: 0 auto 11px;
  font-size: clamp(0.98rem, 1.02vw, 1.06rem);
  line-height: 1.56;
  text-wrap: pretty;
}

.coverage-section .section-heading p:last-child {
  margin-bottom: 0;
}

.coverage-section .section-heading .copy-line {
  display: block;
  white-space: nowrap;
}

.coverage-section .coverage-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.supplemental-section,
.faq-section {
  background: var(--ivory);
}

.supplemental-section .section-heading {
  max-width: 1160px;
  margin-bottom: clamp(30px, 4vw, 50px);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.supplemental-section .section-heading .eyebrow {
  color: var(--eyebrow-gold);
}

.supplemental-section .section-heading h2 {
  font-size: clamp(3rem, 5.1vw, 4.35rem);
  font-weight: 600;
  white-space: nowrap;
}

.supplemental-section .section-heading p:not(.eyebrow) {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.08rem, 1.16vw, 1.2rem);
  line-height: 1.66;
}

.supplemental-section .section-heading h2 + p {
  margin-top: clamp(28px, 3vw, 42px);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.coverage-card {
  grid-column: span 2;
  min-height: 252px;
  padding: 26px;
}

.coverage-card.primary {
  grid-column: span 3;
  min-height: 310px;
  background: linear-gradient(180deg, #fff, #fbf5ea);
}

.coverage-card.wide {
  grid-column: span 6;
}

.supplemental-grid,
.additional-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

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

.additional-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin-inline: auto;
}

.supplemental-grid .coverage-card,
.additional-grid .coverage-card {
  grid-column: auto;
  min-height: 230px;
}

.additional-section .section-heading {
  max-width: 1050px;
  margin-inline: auto;
  text-align: center;
}

.additional-section .section-heading .eyebrow {
  color: var(--eyebrow-gold);
}

.additional-section .section-heading h2 {
  white-space: nowrap;
}

.additional-section .section-heading p:not(.eyebrow) {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(1.08rem, 1.16vw, 1.2rem);
  line-height: 1.66;
}

.additional-section .comparison-note {
  max-width: 940px;
  line-height: 1.6;
}

.coverage-card span,
.resource-card span {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 7px 11px;
  border: 1px solid rgba(185, 139, 69, 0.3);
  border-radius: 999px;
  color: var(--gold-dark);
  background: #fff8eb;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison-note {
  max-width: 880px;
  margin: 32px auto 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  text-align: center;
}

.process-grid,
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-card,
.resource-card {
  min-height: 280px;
  padding: clamp(24px, 4vw, 36px);
}

.process-cta {
  margin: 34px 0 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  text-align: center;
}

.process-cta .text-button {
  display: inline;
  color: var(--ink);
}

.process-card span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(185, 139, 69, 0.35);
  border-radius: 50%;
  color: var(--gold-dark);
  background: #fff8eb;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.coverage-card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration-color: var(--gold);
}

.service-page {
  background: linear-gradient(180deg, var(--ivory), var(--white) 42%, var(--ivory));
}

.service-page .site-header {
  position: sticky;
  background: rgba(255, 253, 248, 0.98);
  border-bottom: 1px solid rgba(7, 21, 34, 0.08);
  color: var(--navy);
}

.service-page .brand-logo-light {
  display: none;
}

.service-page .brand-logo-dark {
  display: block;
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 8vw, 118px) 0 clamp(66px, 7vw, 104px);
  background:
    linear-gradient(115deg, rgba(7, 21, 34, 0.05), transparent 42%),
    radial-gradient(circle at 84% 16%, rgba(185, 139, 69, 0.2), transparent 31%),
    radial-gradient(circle at 8% 92%, rgba(111, 183, 191, 0.18), transparent 32%),
    linear-gradient(135deg, #fbf7ef 0%, #fffdf8 52%, #f4eadb 100%);
}

.service-hero::after {
  content: "";
  position: absolute;
  right: min(7vw, 92px);
  bottom: clamp(36px, 7vw, 86px);
  width: clamp(180px, 28vw, 430px);
  height: clamp(180px, 28vw, 430px);
  border: 1px solid rgba(185, 139, 69, 0.28);
  border-radius: 42% 58% 47% 53%;
  background:
    linear-gradient(135deg, rgba(7, 21, 34, 0.86), rgba(16, 42, 61, 0.8)),
    var(--navy);
  box-shadow: 0 34px 90px rgba(7, 21, 34, 0.16);
  opacity: 0.08;
  pointer-events: none;
}

.service-hero-inner {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 900px;
  text-align: center;
}

.service-hero-copy {
  max-width: 860px;
  margin: 0 auto;
}

.service-hero .eyebrow,
.service-section .eyebrow,
.service-guidance-section .eyebrow,
.tradeoff-panel .eyebrow {
  color: var(--eyebrow-gold);
}

.service-hero h1 {
  max-width: 840px;
  margin: 0 auto 24px;
  color: var(--navy);
  font-size: clamp(3.25rem, 5.6vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.service-hero-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.03rem, 1.2vw, 1.2rem);
  line-height: 1.72;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.service-phone-link,
.service-text-link {
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-decoration-color: var(--gold);
}

.service-hero-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  padding: 11px 15px;
  border: 1px solid rgba(185, 139, 69, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  color: var(--gold-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(7, 21, 34, 0.06);
}

.service-hero-note::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
}

.service-hero-card {
  display: none;
}

.service-section {
  position: relative;
}

.service-section.alt {
  background:
    radial-gradient(circle at 88% 12%, rgba(185, 139, 69, 0.1), transparent 30%),
    var(--ivory);
}

.service-section .container,
.service-guidance-section .container {
  width: min(1180px, calc(100% - 32px));
}

.service-section .section-heading {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.service-section .section-heading h2,
.service-guidance-copy h2,
.tradeoff-panel h2 {
  font-weight: 600;
}

.service-section .section-heading p:not(.eyebrow) {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.04rem, 1.13vw, 1.17rem);
  line-height: 1.72;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.audience-card {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 104px;
  padding: 22px 20px;
  border: 1px solid rgba(185, 139, 69, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 18px 42px rgba(7, 21, 34, 0.07);
}

.audience-card span {
  width: 16px;
  height: 16px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  box-shadow: inset 0 0 0 4px rgba(185, 139, 69, 0.12);
}

.audience-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.28;
  font-weight: 800;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

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

.service-card {
  grid-column: span 2;
  min-height: 238px;
  padding: clamp(24px, 2.8vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffdf8, #fbf5ea);
  box-shadow: 0 24px 58px rgba(7, 21, 34, 0.09);
}

.service-card-grid:not(.three) .service-card:nth-child(-n + 2) {
  grid-column: span 3;
}

.service-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.25rem, 1.7vw, 1.75rem);
  line-height: 1.1;
}

.service-card-warning {
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.96), rgba(245, 234, 211, 0.96)),
    var(--ivory);
  border-color: rgba(185, 139, 69, 0.34);
}

.service-card p,
.service-note,
.service-guidance-copy p {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.service-card p {
  margin: 0;
}

.service-note {
  max-width: 920px;
  margin: 34px auto 0;
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 253, 248, 0.72);
  text-align: center;
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  font-weight: 700;
  box-shadow: 0 14px 38px rgba(7, 21, 34, 0.06);
}

.tradeoff-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(185, 139, 69, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.96), rgba(251, 245, 234, 0.94)),
    var(--white);
  box-shadow: var(--shadow);
}

.tradeoff-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--gold);
}

.tradeoff-content {
  max-width: 930px;
}

.tradeoff-panel h2 {
  max-width: 860px;
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(2.3rem, 4vw, 4.25rem);
  line-height: 1.02;
}

.tradeoff-panel p:not(.eyebrow) {
  max-width: 880px;
  margin-top: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.02rem, 1.12vw, 1.16rem);
  line-height: 1.72;
}

.tradeoff-panel p:last-child {
  margin-bottom: 0;
}

.service-guidance-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(111, 183, 191, 0.12), transparent 30%),
    linear-gradient(180deg, var(--white), var(--ivory));
}

.service-guidance-panel {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(185, 139, 69, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(251, 245, 234, 0.9)),
    var(--white);
  box-shadow: var(--shadow);
}

.service-guidance-copy {
  max-width: 760px;
}

.service-guidance-copy h2 {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: clamp(2.7rem, 4.8vw, 5rem);
  line-height: 1.02;
}

.service-guidance-copy p:not(.eyebrow) {
  margin: 0 0 13px;
  line-height: 1.72;
}

.service-guidance-card {
  order: -1;
  overflow: hidden;
  border: 1px solid rgba(185, 139, 69, 0.28);
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  box-shadow: 0 30px 68px rgba(7, 21, 34, 0.2);
}

.service-guidance-card img {
  width: 100%;
  aspect-ratio: 4 / 3.3;
  object-fit: cover;
  object-position: 50% 24%;
}

.service-guidance-card div {
  padding: 24px;
  text-align: center;
}

.service-guidance-card strong,
.service-guidance-card span {
  display: block;
}

.service-guidance-card strong {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.service-guidance-card span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-family: Arial, Helvetica, sans-serif;
}

.service-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.final-cta .service-phone-link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration-color: var(--gold);
}

.service-page .faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-page .faq-section .section-heading {
  text-align: center;
}

.service-page .final-cta {
  min-height: 0;
  padding: clamp(78px, 8vw, 118px) 0;
}

.service-page .final-cta-inner {
  gap: clamp(24px, 4vw, 56px);
}

.service-page .final-actions {
  min-width: min(100%, 330px);
}

.service-page .service-hero {
  min-height: clamp(520px, 56vw, 700px);
  display: grid;
  align-items: center;
  padding: clamp(76px, 8vw, 116px) 0 clamp(64px, 6vw, 92px);
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.94) 0%, rgba(255, 253, 248, 0.8) 48%, rgba(255, 253, 248, 0.5) 100%),
    var(--ivory);
}

.service-page .service-hero::after {
  display: none;
}

.service-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  background: url("../images/private-health-hero-poster.jpg") center / cover no-repeat;
  overflow: hidden;
  pointer-events: none;
}

.service-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.97) 0%, rgba(251, 247, 239, 0.86) 38%, rgba(251, 247, 239, 0.54) 100%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.46), rgba(255, 253, 248, 0.88));
}

.service-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(0.95);
}

.service-page .service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
}

.service-page .service-hero-copy {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.service-page .service-hero h1 {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(3rem, 4.8vw, 5.25rem);
  line-height: 0.96;
}

.service-page .service-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.62;
}

.service-page .service-hero-actions {
  justify-content: center;
}

.service-page .service-section {
  padding: clamp(54px, 6vw, 82px) 0;
}

.service-page .audience-grid {
  gap: 18px;
}

.service-page .audience-card {
  background: rgba(255, 253, 248, 0.94);
}

.service-page .service-card-grid {
  align-items: stretch;
}

.service-page .private-aca-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(185, 139, 69, 0.12), transparent 34%),
    var(--ivory);
}

.service-page .private-aca-table {
  box-shadow: var(--shadow);
}

.service-mid-band {
  padding: clamp(58px, 6vw, 86px) 0;
  background: linear-gradient(180deg, var(--white), var(--ivory));
}

.service-three-column {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
}

.service-mid-column,
.tradeoff-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.service-mid-column {
  padding: 0;
}

.service-mid-column h2,
.tradeoff-card h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.55rem, 1.8vw, 2.18rem);
  line-height: 1.08;
  font-weight: 600;
}

.service-mid-column p:not(.eyebrow),
.tradeoff-card p:not(.eyebrow) {
  margin-top: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  line-height: 1.54;
}

.service-mini-grid {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.service-supplemental-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
  padding-top: 0;
}

.service-mini-card {
  min-height: 0;
  padding: 14px;
  border: 1px solid rgba(185, 139, 69, 0.17);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 12px 28px rgba(7, 21, 34, 0.06);
}

.service-mini-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-mini-card h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  font-weight: 700;
  line-height: 1.15;
}

.service-supplemental-mini-grid .service-mini-card {
  display: grid;
  min-height: 84px;
  place-items: center;
  text-align: center;
}

.service-supplemental-mini-grid .service-mini-card h3 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
}

.service-mini-card p {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  line-height: 1.44;
}

.service-mini-card-warning,
.tradeoff-card {
  border-color: rgba(185, 139, 69, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.95), rgba(246, 235, 214, 0.95)),
    var(--ivory);
}

.tradeoff-card {
  position: relative;
  justify-content: flex-start;
  height: auto;
  padding: clamp(18px, 2.2vw, 26px);
  box-shadow: 0 18px 44px rgba(7, 21, 34, 0.08);
}

.tradeoff-card::before {
  content: "";
  width: 64px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--gold);
}

.tradeoff-card p:last-child {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(185, 139, 69, 0.24);
}

.service-page .service-guidance-panel {
  grid-template-columns: minmax(190px, 280px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(24px, 3.4vw, 40px);
  background:
    linear-gradient(120deg, rgba(238, 247, 248, 0.9), rgba(255, 253, 248, 0.95)),
    var(--white);
}

.service-page .service-guidance-card {
  align-self: center;
}

.service-page .service-guidance-copy {
  max-width: 840px;
}

.service-page .service-guidance-copy h2 {
  font-size: clamp(2.35rem, 3.1vw, 3.4rem);
}

.service-page .service-guidance-card img {
  height: 210px;
  min-height: 0;
  aspect-ratio: auto;
  object-position: 50% 18%;
}

.service-page .service-cta-row {
  align-self: auto;
  flex-direction: row;
  min-width: 220px;
}

.editorial-section {
  background: var(--ivory);
}

.image-story.image-left {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
}

.image-story.image-right {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

.editorial-image-one {
  background:
    linear-gradient(145deg, rgba(7, 21, 34, 0.1), rgba(7, 21, 34, 0.56)),
    radial-gradient(circle at 30% 28%, rgba(111, 183, 191, 0.36), transparent 26%),
    linear-gradient(135deg, #f3eadb, #dce7e4 45%, #102a3d);
}

.editorial-image-two {
  background:
    linear-gradient(145deg, rgba(7, 21, 34, 0.12), rgba(7, 21, 34, 0.6)),
    radial-gradient(circle at 74% 22%, rgba(185, 139, 69, 0.34), transparent 27%),
    linear-gradient(135deg, #f7f0e5, #d7e4e6 44%, #071522);
}

.reviews-section {
  background: linear-gradient(180deg, var(--white), var(--ivory));
}

.reviews-heading {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: clamp(38px, 4.5vw, 58px);
  text-align: center;
}

.reviews-heading .eyebrow {
  color: var(--eyebrow-gold);
}

.reviews-heading h2 {
  font-size: clamp(2.35rem, 4vw, 4.05rem);
  white-space: nowrap;
}

.reviews-heading p:not(.eyebrow) {
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.08rem, 1.16vw, 1.2rem);
  line-height: 1.66;
}

.reviews-widget {
  max-width: 1160px;
  margin: 0 auto;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  transition: opacity 220ms ease, transform 220ms ease;
}

.reviews-track.is-transitioning {
  opacity: 0;
  transform: translateY(8px);
}

.review-card {
  min-height: 280px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: var(--gold-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.review-card blockquote {
  margin: 20px 0;
  color: var(--ink);
  font-size: 1.02rem;
}

.review-meta {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
}

.review-meta strong {
  display: block;
  color: var(--navy);
}

.review-meta span,
.review-meta em {
  display: block;
  margin-top: 5px;
  font-style: normal;
}

.review-meta em {
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reviews-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.faq-grid {
  max-width: 1040px;
  margin-inline: auto;
  grid-template-columns: 1fr;
  gap: 12px;
}

.faq-card {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(7, 21, 34, 0.04);
}

.faq-section .section-heading {
  max-width: 1040px;
  margin-inline: auto;
  text-align: center;
}

.faq-section .section-heading .eyebrow {
  color: var(--eyebrow-gold);
}

.faq-section .section-heading h2 {
  max-width: 1040px;
  margin-inline: auto;
  font-size: clamp(2.5rem, 3.55vw, 3.65rem);
  text-align: center;
  white-space: nowrap;
}

.faq-card h3 {
  margin: 0;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(20px, 3vw, 30px);
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: clamp(1.08rem, 1.28vw, 1.24rem);
  font-weight: 600;
  line-height: 1.28;
  text-align: left;
  cursor: pointer;
}

.faq-trigger:focus-visible {
  outline: 3px solid rgba(185, 139, 69, 0.34);
  outline-offset: -5px;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--eyebrow-gold);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-trigger[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-card.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-card p {
  max-width: 900px;
  margin: 0;
  padding: 0 clamp(20px, 3vw, 30px) 24px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1vw, 1.08rem);
  line-height: 1.66;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.carousel-arrow {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
}

.carousel-dots button.is-active {
  background: var(--gold);
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: clamp(660px, 50vw, 840px);
  display: grid;
  align-items: center;
  padding: clamp(140px, 15vw, 200px) 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 21, 34, 0.92), rgba(7, 21, 34, 0.66)),
    url("../images/final-cta-couple-reviewing-screen.jpg") center / cover no-repeat,
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.final-cta .eyebrow {
  color: var(--eyebrow-gold);
}

.final-cta h2 {
  max-width: 850px;
  font-size: clamp(2.35rem, 3.05vw, 3.45rem);
  line-height: 1.05;
  white-space: nowrap;
}

.final-cta p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.62;
}

.final-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  min-width: 250px;
}

.final-actions .button-gold {
  background: #1769aa;
  border-color: #1769aa;
  color: #fff;
  box-shadow: 0 16px 34px rgba(23, 105, 170, 0.2);
}

.site-footer {
  padding: 58px 0 34px;
  color: rgba(255, 255, 255, 0.76);
  background: #06111c;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-logo {
  width: 210px;
  margin-bottom: 18px;
}

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

.footer-grid a,
.footer-grid strong {
  color: #fff;
}

.footer-legal {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
}

.legal-page {
  background: linear-gradient(180deg, var(--ivory), var(--white));
}

.legal-page .site-header {
  position: sticky;
}

.legal-page .brand-logo-light {
  display: none;
}

.legal-page .brand-logo-dark {
  display: block;
}

.legal-hero {
  padding: clamp(80px, 10vw, 132px) 0 clamp(38px, 5vw, 64px);
  background:
    radial-gradient(circle at 82% 14%, rgba(185, 139, 69, 0.13), transparent 28%),
    linear-gradient(180deg, #fffdf8, #fbf7ef);
}

.legal-hero .container,
.legal-layout {
  width: min(960px, calc(100% - 32px));
}

.legal-hero h1 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.25rem);
  font-weight: 700;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 780px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.7;
}

.legal-updated {
  margin-top: 22px;
  color: var(--gold-dark);
  font-weight: 800;
}

.legal-content {
  padding: 0 0 clamp(72px, 9vw, 118px);
}

.legal-layout {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(185, 139, 69, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 18px 46px rgba(7, 21, 34, 0.04);
}

.legal-card h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0;
}

.legal-card p,
.legal-card li {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

.legal-card p {
  margin: 0 0 12px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  margin: 0;
  padding-left: 22px;
}

.legal-card a {
  color: var(--navy);
  font-weight: 800;
  text-decoration-color: var(--gold);
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: #fff;
}

.quote-modal.is-open {
  display: flex;
}

.modal-shell {
  position: relative;
  width: min(920px, 100%);
  max-height: min(90vh, 860px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(7, 21, 34, 0.98), rgba(14, 37, 54, 0.98)),
    radial-gradient(circle at 90% 10%, rgba(185, 139, 69, 0.18), transparent 30%);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42);
}

.modal-form {
  display: flex;
  min-height: 0;
  flex-direction: column;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.modal-intro {
  max-width: 640px;
  padding-right: 80px;
}

.modal-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-family: Arial, Helvetica, sans-serif;
}

.modal-schedule-link {
  display: none;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 28px 0;
}

.form-progress span {
  height: 6px;
  overflow: hidden;
  color: transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.form-progress span.is-active,
.form-progress span.is-complete {
  background: var(--gold);
}

.form-status {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(111, 183, 191, 0.16);
  color: #dff5f6;
  font-family: Arial, Helvetica, sans-serif;
}

.form-status.is-error {
  background: rgba(185, 78, 54, 0.18);
  color: #ffd9d1;
}

.form-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step.is-active {
  display: block;
}

.form-step legend {
  margin-bottom: 22px;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.1;
}

.choice-grid,
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.choice-grid label {
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
}

.choice-grid span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.choice-grid input:checked + span,
.choice-grid input:focus-visible + span {
  border-color: var(--gold);
  background: rgba(185, 139, 69, 0.18);
}

.form-grid label,
.sms-consent {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  height: 48px;
  min-height: 48px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1.25;
  appearance: none;
  -webkit-appearance: none;
}

.form-grid option {
  color: var(--navy);
}

.form-grid textarea {
  height: auto;
  min-height: 112px;
}

.form-wide {
  grid-column: 1 / -1;
}

.optional {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 400;
}

.sms-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
}

.cf-turnstile {
  margin-top: 18px;
}

.turnstile-note {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
}

.consent {
  color: rgba(255, 255, 255, 0.64);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
}

.form-actions {
  position: sticky;
  bottom: -42px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
  padding: 18px 0 0;
}

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-enabled .coverage-grid [data-reveal]:nth-child(2),
.reveal-enabled .process-grid [data-reveal]:nth-child(2),
.reveal-enabled .resources-grid [data-reveal]:nth-child(2) {
  transition-delay: 80ms;
}

.reveal-enabled .coverage-grid [data-reveal]:nth-child(3),
.reveal-enabled .process-grid [data-reveal]:nth-child(3),
.reveal-enabled .resources-grid [data-reveal]:nth-child(3) {
  transition-delay: 160ms;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.075);
  }
}

@keyframes cuePulse {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

@media (min-width: 760px) {
  .header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
  }

  .header-phone,
  .header-schedule {
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }

  .header-schedule {
    justify-content: flex-end;
  }
}

@media (max-width: 980px) {
  :root {
    --header: 74px;
  }

  .split-layout,
  .image-story,
  .image-story.image-left,
  .image-story.image-right,
  .founder-layout,
  .footer-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .founder-copy {
    max-width: 760px;
  }

  .founder-visual {
    justify-content: flex-start;
    padding-top: 0;
  }

  .founder-portrait-frame {
    width: min(100%, 460px);
  }

  .private-aca-table {
    grid-template-columns: 1fr;
    background: #fffdf8;
  }

  .private-aca-panel + .private-aca-panel {
    border-top: 1px solid rgba(185, 139, 69, 0.24);
  }

  .private-aca-panel h3 {
    max-width: 100%;
  }

  .private-aca-panel {
    grid-template-rows: auto auto;
  }

  .service-hero-inner,
  .service-guidance-panel,
  .service-card-grid,
  .service-card-grid.three {
    grid-template-columns: 1fr;
  }

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

  .service-card,
  .service-card-grid:not(.three) .service-card:nth-child(-n + 2) {
    grid-column: auto;
  }

  .service-hero-inner {
    max-width: 820px;
  }

  .service-hero h1 {
    font-size: clamp(2.65rem, 9vw, 4.45rem);
  }

  .service-guidance-card {
    max-width: 420px;
  }

  .service-page .faq-list {
    grid-template-columns: 1fr;
  }

  .service-hero-media {
    width: 100%;
    opacity: 0.22;
  }

  .service-hero-media::before {
    background:
      linear-gradient(180deg, rgba(251, 247, 239, 0.9), rgba(251, 247, 239, 0.74)),
      linear-gradient(90deg, rgba(251, 247, 239, 0.92), rgba(251, 247, 239, 0.52));
  }

  .service-page .service-hero-copy {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }

  .service-page .service-hero h1,
  .service-page .service-hero-copy p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .service-page .service-hero-actions {
    justify-content: center;
  }

  .service-three-column,
  .service-page .service-guidance-panel {
    grid-template-columns: 1fr;
  }

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

  .service-page .service-guidance-card {
    max-width: 420px;
  }

  .service-page .service-cta-row {
    align-self: stretch;
    flex-direction: row;
  }

  .comparison-panel-head {
    min-height: 0;
    padding-bottom: 24px;
  }

  .comparison-list {
    grid-template-rows: none;
  }

  .overlap-panel .split-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .overlap-panel .split-layout > div:first-child {
    transform: none;
  }

  #intro-title,
  .overlap-panel .section-copy {
    max-width: 680px;
  }

  .overlap-panel .section-copy {
    transform: none;
  }

  .trust-strip-grid,
  .process-grid,
  .resources-grid,
  .founder-trust-list,
  .supplemental-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-trust-item {
    padding: 14px 18px;
  }

  .founder-trust-item:first-child {
    padding-left: 18px;
  }

  .founder-trust-item + .founder-trust-item {
    border-left: 0;
  }

  .founder-trust-item:nth-child(odd) {
    padding-left: 0;
  }

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

  .coverage-card,
  .coverage-card.primary,
  .coverage-card.wide {
    grid-column: auto;
  }

  .coverage-section .section-heading {
    max-width: 100%;
    margin-bottom: 34px;
  }

  .coverage-section .section-heading h2 {
    white-space: normal;
    font-size: clamp(2.15rem, 5.5vw, 3rem);
    margin-bottom: 22px;
  }

  .coverage-section .section-heading p {
    max-width: 100%;
  }

  .coverage-section .section-heading .copy-line {
    display: inline;
    white-space: normal;
  }

  .supplemental-section .section-heading h2 {
    white-space: normal;
    font-size: clamp(2.35rem, 7vw, 3.35rem);
  }

  .additional-section .section-heading h2 {
    white-space: normal;
  }

  .faq-section .section-heading h2 {
    white-space: normal;
  }

  .reviews-heading h2 {
    white-space: normal;
  }

  .process-section .section-heading h2 {
    white-space: normal;
  }

  .reviews-track {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .final-cta h2 {
    white-space: normal;
  }

  .hero-line {
    font-size: clamp(1.65rem, 3vw, 2.1rem);
  }
}

@media (max-width: 680px) {
  :root {
    --header: 92px;
  }

  .container {
    width: min(100% - 24px, 1160px);
  }

  .header-inner {
    width: calc(100% - 20px);
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 52px;
    grid-template-rows: auto auto;
    align-content: center;
    align-items: center;
    gap: 3px 8px;
  }

  .menu-toggle-label {
    display: none;
  }

  .header-actions {
    display: contents;
  }

  .site-header .header-quote {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: min(100%, 190px);
    min-height: 38px;
    padding: 8px 14px;
    font-size: 0.74rem;
    transform: translateY(calc((1 - var(--quote-cta-opacity)) * -4px));
  }

  .brand {
    grid-column: 1;
    grid-row: 1 / 3;
    justify-self: start;
    align-self: center;
    width: 44px;
    min-height: 40px;
  }

  .brand-logo-light,
  .brand-logo-dark {
    display: none;
  }

  .brand-logo-mobile {
    display: block;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1 / 3;
    justify-self: end;
    align-self: center;
    width: 50px;
    height: 50px;
    padding: 0;
  }

  .header-contact {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    margin-top: 3px;
  }

  .header-phone {
    display: none;
  }

  .header-schedule {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    opacity: var(--quote-cta-opacity);
    transform: translateY(calc((1 - var(--quote-cta-opacity)) * -4px));
    transition: opacity 80ms linear, transform 80ms linear;
  }

  .header-schedule::before {
    width: 1.08em;
    height: 1.08em;
  }

  .quote-full,
  .schedule-desktop-copy {
    display: none !important;
  }

  .quote-short,
  .schedule-mobile-copy {
    display: inline !important;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero-content {
    width: min(100% - 24px, 760px);
    padding: clamp(130px, 20vh, 190px) 0 0;
  }

  .hero-message {
    gap: 0.14em;
  }

  .hero-line {
    white-space: normal;
    font-size: clamp(1.55rem, 6vw, 1.9rem);
    line-height: 1.28;
  }

  .overlap-section {
    margin-top: -60px;
  }

  #intro-title {
    font-size: clamp(2.15rem, 9vw, 3.25rem);
  }

  .overlap-panel .section-copy p {
    font-size: 1rem;
    line-height: 1.48;
  }

  .trust-strip-grid,
  .process-grid,
  .resources-grid,
  .founder-trust-list,
  .supplemental-grid,
  .additional-grid,
  .faq-grid,
  .coverage-grid,
  .choice-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-hero {
    padding-top: 46px;
    padding-bottom: 58px;
  }

  .service-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-hero-card {
    display: none;
  }

  .service-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.15rem);
    line-height: 1.02;
  }

  .service-hero-copy p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .service-hero-actions,
  .service-cta-row,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .service-hero-actions .button,
  .service-phone-link,
  .service-cta-row .button,
  .service-text-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .audience-grid,
  .service-card-grid,
  .service-card-grid.three,
  .service-guidance-panel {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 82px;
  }

  .service-card {
    min-height: 0;
  }

  .tradeoff-panel,
  .service-guidance-panel {
    padding: 26px 20px;
  }

  .tradeoff-panel h2,
  .service-guidance-copy h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .service-guidance-card {
    max-width: 100%;
  }

  .service-page .faq-list {
    grid-template-columns: 1fr;
  }

  .service-page .service-hero {
    min-height: 0;
  }

  .service-hero-media {
    opacity: 0.18;
  }

  .service-hero-video {
    display: none;
  }

  .service-hero-media {
    background: url("../images/private-health-hero-poster.jpg") center / cover no-repeat;
  }

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

  .service-supplemental-mini-grid .service-mini-card {
    min-height: 84px;
  }

  .service-page .service-guidance-card img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .service-page .service-cta-row {
    flex-direction: column;
  }

  .founder-section {
    padding-top: 68px;
    padding-bottom: 78px;
  }

  .founder-layout {
    gap: 38px;
  }

  .founder-copy h2 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
    line-height: 1.06;
  }

  .founder-service-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .founder-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .founder-primary-cta,
  .founder-review-link {
    width: 100%;
    justify-content: center;
  }

  .founder-trust-list {
    gap: 10px;
    padding-top: 18px;
  }

  .founder-trust-item,
  .founder-trust-item:first-child,
  .founder-trust-item:nth-child(odd) {
    min-height: 0;
    padding: 12px 0;
  }

  .founder-visual {
    justify-content: center;
  }

  .founder-portrait-frame {
    width: min(100%, 360px);
  }

  .founder-nameplate {
    right: 10%;
    bottom: 7%;
    left: 10%;
    padding: 20px 14px 14px;
    border-radius: 12px;
  }

  .founder-nameplate-mark {
    top: -19px;
    width: 40px;
    height: 40px;
    padding: 9px;
  }

  .founder-nameplate strong {
    font-size: clamp(1.18rem, 6.5vw, 1.55rem);
  }

  .founder-nameplate span {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .founder-nameplate em {
    margin-top: 7px;
    font-size: 0.82rem;
  }

  .profile-placeholder,
  .editorial-image {
    min-height: 330px;
  }

  .profile-card {
    right: auto;
    bottom: 12px;
    left: 12px;
    width: min(168px, calc(100% - 24px));
    padding: 10px 12px;
  }

  .profile-card span {
    margin-bottom: 5px;
    font-size: 0.62rem;
  }

  .profile-card strong {
    font-size: 0.78rem;
    line-height: 1.12;
  }

  .modal-shell {
    max-height: 92vh;
    padding: 24px 18px;
  }

  .modal-intro {
    padding-right: 64px;
  }

  .modal-schedule-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
    color: var(--gold);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }
}

@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;
  }

  .reveal-enabled [data-reveal] {
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }
}
