:root {
  --navy: var(--hg-navy, #1f303f);
  --navy-2: var(--hg-deep-navy, #172838);
  --gold: var(--hg-gold, #c29a60);
  --gold-deep: var(--hg-deep-gold, #b48a4f);
  --warm: var(--hg-warm-white, #f1eeea);
  --slate: var(--hg-slate, #5f6c76);
  --white: var(--hg-white, #ffffff);
  --line: var(--hg-line, rgba(31, 48, 63, 0.14));
  --shadow: var(--hg-shadow, 0 24px 70px rgba(31, 48, 63, 0.16));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--warm);
}

body {
  margin: 0;
  background: var(--warm);
  color: var(--navy);
  font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.brand-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--navy);
  pointer-events: none;
  animation: loader-out 1.15s ease 0.3s forwards;
}

.brand-loader img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  animation: loader-mark 1.05s ease forwards;
}

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

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 6vw, 84px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(241, 238, 234, 0.88);
  backdrop-filter: blur(18px);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
}

.site-logo img {
  width: 152px;
  max-height: 42px;
  object-fit: contain;
}

.nav-links,
.footer-links,
.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 12px;
  color: rgba(31, 48, 63, 0.82);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
}

.button,
button,
.nav-links .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--gold);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(180, 138, 79, 0.24);
}

.button.secondary,
.nav-links .secondary {
  border: 1px solid rgba(31, 48, 63, 0.18);
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  box-shadow: none;
}

.section,
.hero,
.page-hero {
  padding: clamp(56px, 8vw, 118px) clamp(18px, 7vw, 104px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(31, 48, 63, 0.98), rgba(31, 48, 63, 0.84)),
    url("/assets/website/brand/watermark/logo-watermark-light.png") 8% 16% / min(560px, 58vw) auto no-repeat,
    url("/assets/website/backgrounds/background-floating-particles.png") center / cover no-repeat,
    var(--navy);
  color: var(--white);
}

.hero::after,
.page-hero::after,
.dark::after {
  position: absolute;
  inset: auto 6vw 4vw auto;
  width: min(280px, 40vw);
  aspect-ratio: 1;
  content: "";
  background: url("/assets/website/brand/watermark/logo-watermark-gold-soft.png") center / contain no-repeat;
  opacity: 0.28;
  pointer-events: none;
}

.page-hero,
.dark {
  position: relative;
  overflow: hidden;
}

.hero-grid,
.split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.hero h1,
.page-hero h1 {
  max-width: 980px;
  margin: 14px 0 22px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.96;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(42px, 7vw, 82px);
}

h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.15;
}

p {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--slate);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.hero p {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: -9%;
  z-index: -1;
  content: "";
  background: url("/assets/website/hairline-motion/hero-orbit-lines.svg") center / contain no-repeat;
  opacity: 0.68;
  animation: slow-orbit 15s ease-in-out infinite alternate;
}

.hero-visual > img,
.feature-image {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.float-stack {
  position: absolute;
  inset: auto 0 -30px auto;
  display: grid;
  gap: 10px;
  width: min(260px, 54vw);
}

.float-pill,
.mini-state {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  column-gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  box-shadow: 0 18px 42px rgba(31, 48, 63, 0.16);
  font-weight: 900;
  backdrop-filter: blur(14px);
  animation: float-card 6s ease-in-out infinite;
}

.float-pill img {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.float-pill small {
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 800;
}

.float-pill:nth-child(2) {
  animation-delay: -1.5s;
}

.float-pill:nth-child(3) {
  animation-delay: -3s;
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 24px;
  padding: 28px clamp(18px, 7vw, 104px);
  background: var(--white);
}

.trust-band strong {
  color: var(--navy);
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.15;
}

.cards,
.pricing-grid,
.resource-grid,
.clinic-grid,
.state-grid,
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.price-card,
.resource-card,
.clinic-card,
.state-card,
.form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(31, 48, 63, 0.08);
}

.card,
.price-card,
.resource-card,
.clinic-card,
.state-card,
.form-card {
  position: relative;
  overflow: hidden;
}

.card::after,
.price-card::after,
.resource-card::after,
.clinic-card::after,
.state-card::after,
.form-card::after {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 72px;
  height: 72px;
  content: "";
  background: url("/assets/website/brand/watermark/logo-watermark-dark.png") center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.card img,
.resource-card img,
.clinic-card img,
.state-card img,
.card-mark {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  object-fit: contain;
}

.hg-platform-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 86px);
  padding: clamp(72px, 9vw, 132px) clamp(18px, 7vw, 104px);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 12%, rgba(194, 154, 96, 0.18), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(31, 48, 63, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(241, 238, 234, 0.92));
}

.hg-platform-section::before {
  position: absolute;
  inset: 42px clamp(18px, 5vw, 72px);
  content: "";
  border: 1px solid rgba(194, 154, 96, 0.2);
  border-radius: 44px;
  pointer-events: none;
}

.hg-platform-section__intro {
  position: sticky;
  top: 112px;
  align-self: start;
  max-width: 520px;
  z-index: 1;
}

.hg-platform-section__intro h2 {
  max-width: 9ch;
  margin: 10px 0 18px;
  color: var(--navy);
  font-size: clamp(2.25rem, 5.2vw, 5.25rem);
  line-height: 0.94;
}

.hg-platform-section__intro p {
  max-width: 34rem;
  color: rgba(31, 48, 63, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.hg-platform-section__privacy {
  position: relative;
  margin-top: 24px;
  padding-left: 20px;
  color: var(--navy);
  font-weight: 800;
}

.hg-platform-section__privacy::before {
  position: absolute;
  top: 0.38em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(194, 154, 96, 0.14);
}

.hg-platform-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.hg-platform-card {
  position: relative;
  min-height: 100%;
  padding: clamp(20px, 2.4vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.78);
  box-shadow:
    0 24px 70px rgba(31, 48, 63, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  outline: none;
  transition:
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    transform 0.45s ease;
}

.hg-platform-card:nth-child(even) {
  transform: translateY(34px);
}

.hg-platform-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 78% 12%, rgba(194, 154, 96, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 44%);
  opacity: 0.74;
  pointer-events: none;
}

.hg-platform-card > * {
  position: relative;
  z-index: 1;
}

.hg-platform-card:hover,
.hg-platform-card:focus-visible,
.hg-platform-card.is-visible.is-active {
  border-color: rgba(194, 154, 96, 0.58);
  box-shadow:
    0 28px 80px rgba(31, 48, 63, 0.16),
    0 0 0 1px rgba(194, 154, 96, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.hg-platform-card:hover,
.hg-platform-card:focus-visible {
  transform: translateY(-4px);
}

.hg-platform-card:nth-child(even):hover,
.hg-platform-card:nth-child(even):focus-visible {
  transform: translateY(28px);
}

.hg-platform-card__media {
  display: grid;
  width: clamp(142px, 15vw, 208px);
  aspect-ratio: 1;
  margin-bottom: 22px;
  place-items: center;
}

.hg-platform-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(31, 48, 63, 0.14));
  transition: transform 0.65s ease;
}

.hg-platform-card:hover .hg-platform-icon,
.hg-platform-card:focus-visible .hg-platform-icon,
.hg-platform-card.is-visible.is-active .hg-platform-icon {
  transform: scale(1.025);
}

.hg-platform-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 4px 10px;
  border: 1px solid rgba(194, 154, 96, 0.24);
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(194, 154, 96, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hg-platform-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.68rem);
  line-height: 1.08;
}

.hg-platform-card p {
  margin: 0;
  color: rgba(31, 48, 63, 0.72);
}

.hg-platform-card__accent {
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(194, 154, 96, 0));
  transform-origin: left center;
  transition: width 0.55s ease;
}

.hg-platform-card:hover .hg-platform-card__accent,
.hg-platform-card:focus-visible .hg-platform-card__accent,
.hg-platform-card.is-visible.is-active .hg-platform-card__accent {
  width: 86px;
}

.hg-scroll-reveal {
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: calc(var(--card-index, 0) * 70ms);
}

.hg-reveal-enabled .hg-scroll-reveal {
  opacity: 0;
  transform: translateY(26px);
}

.hg-scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hg-platform-card.hg-scroll-reveal:nth-child(even).is-visible {
  transform: translateY(34px);
}

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

.hg-standard-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 7vw, 104px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(194, 154, 96, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 238, 234, 0.9));
}

.hg-standard-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    url("/assets/website/brand/watermark/logo-watermark-gold-soft.png") left 6vw bottom 8% / min(360px, 42vw) auto no-repeat;
  opacity: 0.38;
  pointer-events: none;
}

.hg-standard-section__content,
.hg-standard-section__visual {
  position: relative;
  z-index: 1;
}

.hg-standard-section__content h2 {
  max-width: 11ch;
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(2.45rem, 5.7vw, 5.4rem);
  line-height: 0.94;
}

.hg-standard-section__content p {
  max-width: 40rem;
}

.hg-standard-section__privacy {
  position: relative;
  padding-left: 20px;
  color: rgba(31, 48, 63, 0.86);
  font-weight: 850;
}

.hg-standard-section__privacy::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(194, 154, 96, 0.16);
}

.hg-standard-section__actions {
  margin-top: 30px;
}

.hg-standard-section__visual {
  margin: 0;
  padding: clamp(10px, 1.4vw, 16px);
  border: 1px solid rgba(194, 154, 96, 0.32);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.62);
  box-shadow:
    0 34px 90px rgba(31, 48, 63, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.78) inset;
}

.hg-standard-section__visual picture,
.hg-standard-section__visual img {
  display: block;
  width: 100%;
}

.hg-standard-section__visual img {
  aspect-ratio: 1600 / 914;
  border-radius: 24px;
  object-fit: cover;
  object-position: 50% 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hg-standard-section__visual::after {
  position: absolute;
  inset: 16px;
  content: "";
  border-radius: 26px;
  background:
    linear-gradient(120deg, rgba(31, 48, 63, 0.16), transparent 36%),
    linear-gradient(0deg, rgba(20, 34, 49, 0.36), transparent 34%);
  pointer-events: none;
}

.hg-standard-floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 176px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy);
  box-shadow: 0 18px 46px rgba(20, 34, 49, 0.2);
  backdrop-filter: blur(16px);
}

.hg-standard-floating-card strong {
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hg-standard-floating-card span {
  color: var(--navy);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 950;
}

.hg-standard-floating-card--recovery {
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 42px);
}

.hg-standard-floating-card--verified {
  top: clamp(18px, 3vw, 42px);
  left: clamp(18px, 3vw, 42px);
}

.hg-privacy-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 7vw, 104px);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 14%, rgba(31, 48, 63, 0.11), transparent 30%),
    radial-gradient(circle at 84% 76%, rgba(194, 154, 96, 0.14), transparent 28%),
    var(--warm);
}

.hg-privacy-section::before {
  position: absolute;
  inset: 40px clamp(18px, 5vw, 72px);
  content: "";
  border: 1px solid rgba(31, 48, 63, 0.1);
  border-radius: 44px;
  pointer-events: none;
}

.hg-privacy-section__content,
.hg-privacy-section__visual {
  position: relative;
  z-index: 1;
}

.hg-privacy-section__content h2 {
  max-width: 12ch;
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(2.35rem, 5.3vw, 5.1rem);
  line-height: 0.95;
}

.hg-privacy-section__content p {
  max-width: 42rem;
}

.hg-privacy-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.hg-privacy-points article {
  position: relative;
  padding: 16px 18px 16px 48px;
  border: 1px solid rgba(31, 48, 63, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 44px rgba(31, 48, 63, 0.07);
}

.hg-privacy-points article::before {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 16px;
  height: 16px;
  content: "";
  border: 2px solid var(--gold);
  border-radius: 6px;
  background: rgba(194, 154, 96, 0.12);
  box-shadow: 0 0 0 6px rgba(194, 154, 96, 0.08);
}

.hg-privacy-points strong,
.hg-privacy-points span {
  display: block;
}

.hg-privacy-points strong {
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 950;
}

.hg-privacy-points span {
  margin-top: 3px;
  color: rgba(31, 48, 63, 0.68);
  font-size: 0.94rem;
}

.hg-privacy-actions {
  margin-top: 30px;
}

.hg-privacy-section__visual {
  margin: 0;
  padding: clamp(10px, 1.4vw, 16px);
  border: 1px solid rgba(194, 154, 96, 0.34);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.46)),
    rgba(255, 255, 255, 0.62);
  box-shadow:
    0 34px 90px rgba(31, 48, 63, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.72) inset;
}

.hg-privacy-section__visual picture,
.hg-privacy-section__visual img {
  display: block;
  width: 100%;
}

.hg-privacy-section__visual img {
  aspect-ratio: 1600 / 914;
  border-radius: 24px;
  object-fit: cover;
  object-position: 50% 50%;
}

.hg-privacy-section__visual::after {
  position: absolute;
  inset: 16px;
  content: "";
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(20, 34, 49, 0.24), transparent 36%),
    linear-gradient(0deg, rgba(20, 34, 49, 0.32), transparent 34%);
  pointer-events: none;
}

.hg-privacy-floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 198px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy);
  box-shadow: 0 18px 46px rgba(20, 34, 49, 0.2);
  backdrop-filter: blur(16px);
}

.hg-privacy-floating-card strong {
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hg-privacy-floating-card span {
  color: var(--navy);
  font-size: clamp(0.96rem, 1.25vw, 1.14rem);
  font-weight: 950;
}

.hg-privacy-floating-card--local {
  top: clamp(18px, 3vw, 42px);
  left: clamp(18px, 3vw, 42px);
}

.hg-privacy-floating-card--verify {
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 42px);
}

.hg-verification-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 7vw, 104px);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 16%, rgba(194, 154, 96, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(31, 48, 63, 0.98), rgba(20, 34, 49, 0.96)),
    var(--navy);
  color: var(--white);
}

.hg-verification-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    url("/assets/website/brand/watermark/logo-watermark-light.png") right 7vw top 12% / min(420px, 48vw) auto no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.hg-verification-section__visual,
.hg-verification-section__content {
  position: relative;
  z-index: 1;
}

.hg-verification-section__content h2 {
  max-width: 12ch;
  margin-top: 10px;
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: 0.95;
}

.hg-verification-section__content p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.78);
}

.hg-verification-section__note {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 850;
}

.hg-verification-section__note::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(194, 154, 96, 0.16);
}

.hg-verification-section__actions {
  margin-top: 30px;
}

.hg-verification-section__actions .secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.hg-certificate-preview {
  position: relative;
  max-width: min(520px, 100%);
  margin: 0 auto;
  padding: clamp(10px, 1.4vw, 16px);
  border: 1px solid rgba(194, 154, 96, 0.42);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transform: perspective(1200px) rotateY(4deg) rotateX(1deg);
}

.hg-certificate-preview picture,
.hg-certificate-preview img {
  display: block;
  width: 100%;
}

.hg-certificate-preview img {
  aspect-ratio: 1400 / 1899;
  border-radius: 24px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.hg-certificate-preview::after {
  position: absolute;
  inset: 16px;
  content: "";
  border-radius: 26px;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.2), transparent 32%),
    linear-gradient(0deg, rgba(20, 34, 49, 0.08), transparent 32%);
  pointer-events: none;
}

.hg-verification-floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 178px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.hg-verification-floating-card strong {
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hg-verification-floating-card span {
  color: var(--navy);
  font-size: clamp(0.96rem, 1.25vw, 1.12rem);
  font-weight: 950;
}

.hg-verification-floating-card--official {
  top: clamp(18px, 3vw, 40px);
  right: clamp(-26px, -2vw, -16px);
}

.hg-verification-floating-card--demo {
  left: clamp(-26px, -2vw, -16px);
  bottom: clamp(18px, 3vw, 40px);
}

.hg-clinic-standard-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 7vw, 104px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(194, 154, 96, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 238, 234, 0.94)),
    var(--warm);
}

.hg-clinic-standard-section::before {
  position: absolute;
  inset: 42px clamp(18px, 5vw, 72px);
  content: "";
  border: 1px solid rgba(194, 154, 96, 0.2);
  border-radius: 44px;
  pointer-events: none;
}

.hg-clinic-standard-section__content,
.hg-clinic-standard-section__visual {
  position: relative;
  z-index: 1;
}

.hg-clinic-standard-section__content h2 {
  max-width: 11ch;
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(2.4rem, 5.5vw, 5.35rem);
  line-height: 0.94;
}

.hg-clinic-standard-section__content p {
  max-width: 42rem;
}

.hg-clinic-standard-section__note {
  position: relative;
  padding-left: 20px;
  color: rgba(31, 48, 63, 0.86);
  font-weight: 850;
}

.hg-clinic-standard-section__note::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(194, 154, 96, 0.16);
}

.hg-clinic-standard-section__actions {
  align-items: center;
  margin-top: 30px;
}

.hg-clinic-standard-section__link {
  color: var(--gold-deep);
  font-weight: 950;
}

.hg-clinic-standard-section__link:focus-visible {
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(194, 154, 96, 0.24);
  outline: none;
}

.hg-clinic-standard-section__visual {
  margin: 0;
  padding: clamp(10px, 1.4vw, 16px);
  border: 1px solid rgba(194, 154, 96, 0.34);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.46)),
    rgba(255, 255, 255, 0.62);
  box-shadow:
    0 34px 90px rgba(31, 48, 63, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.72) inset;
}

.hg-clinic-standard-section__visual picture,
.hg-clinic-standard-section__visual img {
  display: block;
  width: 100%;
}

.hg-clinic-standard-section__visual img {
  aspect-ratio: 1600 / 1227;
  border-radius: 24px;
  object-fit: cover;
  object-position: 50% 50%;
}

.hg-clinic-standard-section__visual::after {
  position: absolute;
  inset: 16px;
  content: "";
  border-radius: 26px;
  background:
    linear-gradient(120deg, rgba(20, 34, 49, 0.14), transparent 34%),
    linear-gradient(0deg, rgba(20, 34, 49, 0.26), transparent 30%);
  pointer-events: none;
}

.hg-clinic-standard-floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 186px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  box-shadow: 0 18px 46px rgba(20, 34, 49, 0.2);
  backdrop-filter: blur(16px);
}

.hg-clinic-standard-floating-card strong {
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hg-clinic-standard-floating-card span {
  color: var(--navy);
  font-size: clamp(0.96rem, 1.25vw, 1.14rem);
  font-weight: 950;
}

.hg-clinic-standard-floating-card--operations {
  top: clamp(18px, 3vw, 42px);
  left: clamp(18px, 3vw, 42px);
}

.hg-clinic-standard-floating-card--verification {
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 42px);
}

.hg-clinic-standard-floating-card--data {
  right: clamp(18px, 3vw, 42px);
  top: clamp(18px, 3vw, 42px);
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
}

.dark {
  background:
    linear-gradient(135deg, rgba(31, 48, 63, 0.98), rgba(23, 40, 56, 0.92)),
    var(--navy);
  color: var(--white);
}

.dark h2,
.dark h3 {
  color: var(--white);
}

.dark p,
.dark li {
  color: rgba(255, 255, 255, 0.78);
}

.gold-line {
  width: 86px;
  height: 4px;
  margin: 26px 0;
  border-radius: 999px;
  background: var(--gold);
}

ul.clean {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

ul.clean li {
  position: relative;
  padding-left: 26px;
  color: var(--slate);
}

ul.clean li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "•";
  font-size: 1.4rem;
  line-height: 1;
}

form {
  display: grid;
  gap: 12px;
}

label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(31, 48, 63, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(194, 154, 96, 0.18);
  outline: none;
}

.notice {
  margin-bottom: 18px;
  border: 1px solid rgba(36, 174, 91, 0.35);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(36, 174, 91, 0.1);
  color: #126a3b;
  font-weight: 850;
}

.notice.error {
  border-color: rgba(184, 58, 58, 0.35);
  background: #fff1ef;
  color: #a33030;
}

.site-footer {
  padding: 42px clamp(18px, 7vw, 104px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(31, 48, 63, 0.98), rgba(20, 34, 49, 0.96)),
    url("/assets/website/brand/watermark/logo-watermark-light.png") right 12% center / min(420px, 52vw) auto no-repeat,
    var(--navy);
  color: var(--white);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.footer-top img {
  width: 152px;
  max-height: 48px;
  object-fit: contain;
}

.site-footer small {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
}

.verify-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes slow-orbit {
  from {
    transform: rotate(-2deg) scale(0.98);
  }
  to {
    transform: rotate(2deg) scale(1.02);
  }
}

@keyframes loader-out {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes loader-mark {
  0% {
    opacity: 0;
    transform: scale(0.88);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1080px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .cards,
  .pricing-grid,
  .resource-grid,
  .clinic-grid,
  .state-grid,
  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hg-platform-section {
    grid-template-columns: 1fr;
  }

  .hg-platform-section__intro {
    position: relative;
    top: auto;
    max-width: 760px;
  }

  .hg-platform-section__intro h2 {
    max-width: 12ch;
  }

  .hg-platform-card:nth-child(even),
  .hg-platform-card.hg-scroll-reveal:nth-child(even).is-visible {
    transform: translateY(0);
  }

  .hg-standard-section {
    grid-template-columns: 1fr;
  }

  .hg-standard-section__content h2 {
    max-width: 12ch;
  }

  .hg-privacy-section {
    grid-template-columns: 1fr;
  }

  .hg-privacy-section__content h2 {
    max-width: 13ch;
  }

  .hg-verification-section {
    grid-template-columns: 1fr;
  }

  .hg-verification-section__content {
    order: -1;
  }

  .hg-verification-section__content h2 {
    max-width: 13ch;
  }

  .hg-certificate-preview {
    transform: none;
  }

  .hg-clinic-standard-section {
    grid-template-columns: 1fr;
  }

  .hg-clinic-standard-section__content h2 {
    max-width: 12ch;
  }
}

@media (max-width: 680px) {
  .section,
  .hero,
  .page-hero {
    padding: 48px 18px;
  }

  .hero {
    min-height: auto;
  }

  .nav-links a:not(.cta) {
    display: none;
  }

  .cards,
  .pricing-grid,
  .resource-grid,
  .clinic-grid,
  .state-grid,
  .timeline-grid,
  .verify-form {
    grid-template-columns: 1fr;
  }

  .hg-platform-section {
    padding: 56px 18px;
  }

  .hg-platform-section::before {
    inset: 18px;
    border-radius: 28px;
  }

  .hg-platform-grid {
    grid-template-columns: 1fr;
  }

  .hg-platform-card {
    border-radius: 24px;
  }

  .hg-platform-card__media {
    width: clamp(128px, 48vw, 188px);
  }

  .hg-standard-section {
    padding: 56px 18px;
  }

  .hg-standard-section__visual {
    padding: 8px;
    border-radius: 26px;
  }

  .hg-standard-section__visual img {
    min-height: 320px;
    border-radius: 20px;
    object-position: 38% 50%;
  }

  .hg-standard-section__visual::after {
    inset: 8px;
    border-radius: 20px;
  }

  .hg-standard-floating-card {
    min-width: 142px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .hg-standard-floating-card strong {
    font-size: 0.68rem;
  }

  .hg-standard-floating-card span {
    font-size: 0.92rem;
  }

  .hg-standard-floating-card--verified {
    top: 14px;
    left: 14px;
  }

  .hg-standard-floating-card--recovery {
    right: 14px;
    bottom: 14px;
  }

  .hg-privacy-section {
    padding: 56px 18px;
  }

  .hg-privacy-section::before {
    inset: 18px;
    border-radius: 28px;
  }

  .hg-privacy-points article {
    padding: 14px 14px 14px 42px;
  }

  .hg-privacy-section__visual {
    padding: 8px;
    border-radius: 26px;
  }

  .hg-privacy-section__visual img {
    min-height: 340px;
    border-radius: 20px;
    object-position: 52% 50%;
  }

  .hg-privacy-section__visual::after {
    inset: 8px;
    border-radius: 20px;
  }

  .hg-privacy-floating-card {
    position: relative;
    inset: auto;
    min-width: 0;
    margin: 10px 8px 0;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .hg-privacy-floating-card strong {
    font-size: 0.68rem;
  }

  .hg-privacy-floating-card span {
    font-size: 0.92rem;
  }

  .hg-verification-section {
    padding: 56px 18px;
  }

  .hg-certificate-preview {
    max-width: 420px;
    padding: 8px;
    border-radius: 26px;
  }

  .hg-certificate-preview img {
    border-radius: 20px;
  }

  .hg-certificate-preview::after {
    inset: 8px;
    border-radius: 20px;
  }

  .hg-verification-floating-card {
    position: relative;
    inset: auto;
    min-width: 0;
    margin: 10px 8px 0;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .hg-verification-floating-card strong {
    font-size: 0.66rem;
  }

  .hg-verification-floating-card span {
    font-size: 0.92rem;
  }

  .hg-clinic-standard-section {
    padding: 56px 18px;
  }

  .hg-clinic-standard-section::before {
    inset: 18px;
    border-radius: 28px;
  }

  .hg-clinic-standard-section__actions {
    align-items: stretch;
  }

  .hg-clinic-standard-section__link {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    padding: 10px 0;
  }

  .hg-clinic-standard-section__visual {
    padding: 8px;
    border-radius: 26px;
  }

  .hg-clinic-standard-section__visual img {
    min-height: 320px;
    border-radius: 20px;
    object-position: 50% 50%;
  }

  .hg-clinic-standard-section__visual::after {
    inset: 8px;
    border-radius: 20px;
  }

  .hg-clinic-standard-floating-card {
    position: relative;
    inset: auto;
    min-width: 0;
    margin: 10px 8px 0;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .hg-clinic-standard-floating-card strong {
    font-size: 0.66rem;
  }

  .hg-clinic-standard-floating-card span {
    font-size: 0.92rem;
  }

  .float-stack {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .footer-top {
    display: grid;
  }

  .cta-row,
  .button,
  button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .hg-platform-card,
  .hg-platform-icon,
  .hg-standard-section *,
  .hg-standard-floating-card,
  .hg-privacy-section *,
  .hg-privacy-floating-card,
  .hg-verification-section *,
  .hg-verification-floating-card,
  .hg-clinic-standard-section *,
  .hg-clinic-standard-floating-card,
  .hg-scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
