@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700;800&display=swap');

:root {
  --bg: #0a1220;
  --bg-soft: #101d31;
  --panel: rgba(16, 29, 49, 0.86);
  --panel-solid: #112240;
  --text: #f4f7fb;
  --muted: #b7c3d0;
  --line: rgba(105, 183, 255, 0.18);
  --blue: #42b8ff;
  --blue-soft: #93deff;
  --cyan-head: #7fd8ff;
  --gold: #cda23a;
  --gold-deep: #8a6416;
  --green: #21e66b;
  --green-dark: #0f9b46;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --max: 1680px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, #07101c 0%, #0a1424 42%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
}

body.is-locked {
  overflow: hidden;
}

a { color: var(--blue-soft); }
img { max-width: 100%; display: block; }

.shell { position: relative; z-index: 1; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #07101c;
  border-bottom: 1px solid rgba(105, 183, 255, 0.12);
}

.header-inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.floating-brand {
  display: inline-flex;
  align-items: center;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.floating-brand img {
  width: clamp(230px, 18vw, 340px);
  max-height: 132px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.28));
}

body.logo-docked .floating-brand {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-integrated {
  position: relative;
  padding: 4px 10px 4px 0;
}

.brand-integrated::after {
  content: none;
}

.brand-integrated img {
  position: relative;
  z-index: 1;
  width: clamp(220px, 17vw, 320px);
  max-height: 122px;
  object-fit: contain;
  opacity: 0.98;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.26));
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 10px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(66, 184, 255, 0.08);
}

.site-nav a.availability-chip {
  position: relative;
  display: inline-flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 166px;
  min-height: 42px;
  padding: 0 17px 0 34px;
  border-radius: 999px;
  border: 1px solid rgba(127, 216, 255, 0.2);
  background: rgba(7, 19, 34, 0.86);
  color: rgba(244,247,251,0.84);
  font-size: 12px;
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255,255,255,0.08);
  text-align: center;
  line-height: 1.1;
  overflow: hidden;
  isolation: isolate;
}

.site-nav a.availability-chip:hover,
.site-nav a.availability-chip:focus-visible,
.site-nav a.availability-chip:visited {
  color: rgba(244,247,251,0.94);
  -webkit-text-fill-color: currentColor;
  background: rgba(9, 24, 42, 0.96);
}

.site-nav a.availability-chip:hover,
.site-nav a.availability-chip:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255,255,255,0.1);
}

.site-nav a.availability-chip.is-live {
  border-color: rgba(33, 230, 107, 0.34);
  background: rgba(33, 230, 107, 0.1);
  color: #dfffe9;
  -webkit-text-fill-color: #dfffe9;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(33, 230, 107, 0.06);
  animation: livePillBreathe 3.8s ease-in-out infinite;
}

.site-nav a.availability-chip::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -38%;
  width: 18%;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.08) 36%, rgba(255,255,255,0.22) 50%, rgba(255,255,255,0.08) 64%, transparent 100%);
  transform: translateX(0) skewX(-18deg);
  opacity: 0;
  z-index: 1;
  animation: availabilityGlimmer 7.6s ease-in-out infinite;
}

.site-nav a.availability-chip.is-live:hover,
.site-nav a.availability-chip.is-live:focus-visible,
.site-nav a.availability-chip.is-live:visited {
  background: rgba(33, 230, 107, 0.14);
}

.site-nav a.availability-chip.is-live:hover,
.site-nav a.availability-chip.is-live:focus-visible {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(33, 230, 107, 0.1);
}

.availability-chip::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(127, 216, 255, 0.86);
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(127, 216, 255, 0.08);
  z-index: 2;
}

.availability-chip.is-live::before {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(33, 230, 107, 0.12);
}

.availability-chip-top,
.availability-chip-bottom {
  display: block;
  position: relative;
  z-index: 2;
}

@keyframes availabilityGlimmer {
  0%, 58% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }
  66% {
    opacity: 1;
  }
  82%, 100% {
    transform: translateX(780%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes livePillBreathe {
  0%, 100% {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(33, 230, 107, 0.06);
  }
  50% {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(33, 230, 107, 0.14), 0 0 24px rgba(33, 230, 107, 0.16);
  }
}

.availability-chip-top {
  font-size: 12px;
  font-weight: 800;
}

.availability-chip-bottom {
  display: none;
}


.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  --pill-rgb: 127, 216, 255;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 238px;
  min-height: 60px;
  padding: 0 36px 0 84px;
  border-radius: 999px;
  border: 1px solid rgba(var(--pill-rgb), 0.5);
  background:
    radial-gradient(circle at 22% 50%, rgba(var(--pill-rgb), 0.22), rgba(var(--pill-rgb), 0) 34%),
    radial-gradient(circle at 50% 118%, rgba(var(--pill-rgb), 0.3), rgba(var(--pill-rgb), 0) 56%),
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02) 46%, rgba(0,0,0,0.18)),
    rgba(7, 19, 34, 0.9);
  text-decoration: none;
  font-weight: 800;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #ffffff;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 18px 36px rgba(0,0,0,0.26),
    0 0 0 1px rgba(var(--pill-rgb), 0.12),
    0 0 28px rgba(var(--pill-rgb), 0.12),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -18px 32px rgba(var(--pill-rgb), 0.08);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: rgb(var(--pill-rgb));
  box-shadow:
    0 0 0 7px rgba(var(--pill-rgb), 0.14),
    0 0 26px rgba(var(--pill-rgb), 0.55),
    0 0 46px rgba(var(--pill-rgb), 0.22);
  z-index: 2;
}

.btn::after {
  content: "";
  position: absolute;
  top: -38%;
  bottom: -38%;
  left: -42%;
  width: 30%;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.08) 28%, rgba(255,255,255,0.42) 50%, rgba(var(--pill-rgb), 0.22) 64%, transparent 100%);
  transform: translateX(0) skewX(-18deg);
  opacity: 0;
  z-index: 1;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px) scale(1.012);
  filter: saturate(1.14) brightness(1.04);
  border-color: rgba(var(--pill-rgb), 0.86);
  background:
    radial-gradient(circle at 22% 50%, rgba(var(--pill-rgb), 0.34), rgba(var(--pill-rgb), 0) 35%),
    radial-gradient(circle at 50% 112%, rgba(var(--pill-rgb), 0.44), rgba(var(--pill-rgb), 0) 60%),
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.03) 44%, rgba(0,0,0,0.14)),
    rgba(var(--pill-rgb), 0.17);
  box-shadow:
    0 24px 46px rgba(0,0,0,0.32),
    0 0 0 1px rgba(var(--pill-rgb), 0.28),
    0 0 38px rgba(var(--pill-rgb), 0.32),
    0 0 80px rgba(var(--pill-rgb), 0.12),
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -20px 36px rgba(var(--pill-rgb), 0.13);
}

.btn:focus-visible,
.site-nav a.availability-chip:focus-visible,
.footer-contact-link:focus-visible {
  outline: none;
}

.btn:hover::after,
.btn:focus-visible::after {
  animation: actionPillSweep 0.95s ease-out both;
}

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

.btn-call {
  --pill-rgb: 33, 230, 107;
  border-color: rgba(33, 230, 107, 0.58);
  background:
    radial-gradient(circle at 22% 50%, rgba(33, 230, 107, 0.24), transparent 34%),
    radial-gradient(circle at 50% 118%, rgba(33, 230, 107, 0.26), transparent 58%),
    rgba(33, 230, 107, 0.11);
  color: #dfffe9;
  -webkit-text-fill-color: #dfffe9;
  box-shadow: 0 18px 36px rgba(0,0,0,0.26), 0 0 0 1px rgba(33, 230, 107, 0.14), 0 0 34px rgba(33, 230, 107, 0.14);
}
.btn-call::before {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(33, 230, 107, 0.12);
}
.btn-call:hover,
.btn-call:focus-visible {
  background:
    radial-gradient(circle at 22% 50%, rgba(33, 230, 107, 0.34), transparent 34%),
    radial-gradient(circle at 50% 112%, rgba(33, 230, 107, 0.42), transparent 60%),
    rgba(33, 230, 107, 0.17);
  border-color: rgba(33, 230, 107, 0.86);
  box-shadow: 0 24px 46px rgba(0,0,0,0.32), 0 0 0 3px rgba(33, 230, 107, 0.16), 0 0 46px rgba(33, 230, 107, 0.28);
}
.btn-book {
  --pill-rgb: 127, 216, 255;
  border-color: rgba(127, 216, 255, 0.56);
  background:
    radial-gradient(circle at 22% 50%, rgba(127, 216, 255, 0.24), transparent 34%),
    radial-gradient(circle at 50% 118%, rgba(66, 184, 255, 0.26), transparent 58%),
    rgba(66, 184, 255, 0.11);
  color: #e9f8ff;
  -webkit-text-fill-color: #e9f8ff;
  box-shadow: 0 18px 36px rgba(0,0,0,0.26), 0 0 0 1px rgba(127, 216, 255, 0.14), 0 0 34px rgba(66, 184, 255, 0.14);
}
.btn-book::before {
  background: var(--blue-soft);
  box-shadow: 0 0 0 5px rgba(127, 216, 255, 0.12);
}
.btn-book:hover,
.btn-book:focus-visible {
  background:
    radial-gradient(circle at 22% 50%, rgba(127, 216, 255, 0.34), transparent 34%),
    radial-gradient(circle at 50% 112%, rgba(66, 184, 255, 0.42), transparent 60%),
    rgba(66, 184, 255, 0.17);
  border-color: rgba(127, 216, 255, 0.86);
  box-shadow: 0 24px 46px rgba(0,0,0,0.32), 0 0 44px rgba(66, 184, 255, 0.28);
}
.btn-ghost { border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,0.02); }
.btn-pricing {
  --pill-rgb: 0, 229, 255;
  border-color: rgba(0, 229, 255, 0.42);
  background: rgba(0, 229, 255, 0.1);
  color: #effdff;
  -webkit-text-fill-color: #effdff;
  box-shadow: 0 12px 24px rgba(0,0,0,0.18), 0 0 0 1px rgba(0, 229, 255, 0.08);
}
.btn-pricing::before {
  background: #00e5ff;
  box-shadow: 0 0 0 5px rgba(0, 229, 255, 0.13);
}
.btn-pricing:hover,
.btn-pricing:focus-visible {
  background: rgba(0, 229, 255, 0.15);
  border-color: rgba(0, 229, 255, 0.58);
  box-shadow: 0 16px 32px rgba(0,0,0,0.24), 0 0 24px rgba(0, 229, 255, 0.16);
}

.btn-email-accent {
  --pill-rgb: 212, 166, 58;
  min-width: 238px;
  padding-left: 78px;
  background: rgba(212, 166, 58, 0.12);
  border: 1px solid rgba(212, 166, 58, 0.46);
  color: #fff2c4;
  -webkit-text-fill-color: #fff2c4;
  box-shadow: 0 12px 24px rgba(0,0,0,0.18), 0 0 0 1px rgba(212, 166, 58, 0.08);
}

.btn-email-accent::before {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(212, 166, 58, 0.14);
}

.btn-email-accent:hover,
.btn-email-accent:focus-visible {
  background: rgba(212, 166, 58, 0.18);
  border-color: rgba(212, 166, 58, 0.68);
  box-shadow: 0 16px 32px rgba(0,0,0,0.24), 0 0 24px rgba(212, 166, 58, 0.18);
}

.about-cta-row .btn {
  text-shadow: none;
}

.hero {
  padding: 68px 0 18px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(13, 24, 42, 0.22), rgba(13, 24, 42, 0)),
    linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  justify-items: center;
  position: relative;
  z-index: 1;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  display: none;
}

.panel {
  border: 1px solid var(--line);
  background: #071322;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.12);
}

.hero-copy,
.hero-card {
  border: 1px solid var(--line);
  background: #071322;
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.14);
}

.hero-copy {
  padding: 8px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  height: 100%;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}

.hero-copy-layout {
  display: block;
  width: 100%;
}

.hero-brand-lockup {
  display: grid;
  width: min(100%, 390px);
  padding: 0;
  justify-items: start;
  margin-top: -16px;
  margin-bottom: -4px;
}

.hero-brand-logo {
  width: min(100%, 300px);
  margin: 0;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.26));
}

.hero-composition {
  display: grid;
  grid-template-columns: minmax(0, 720px) 260px;
  gap: 56px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-main {
  display: grid;
  gap: 18px;
  min-width: 0;
  max-width: 720px;
}

.hero-side {
  display: grid;
  gap: 14px;
  width: 300px;
  align-self: start;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 7vw, 72px);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 650;
  line-height: 0.92;
  letter-spacing: 0;
  color: #f7feff;
  text-wrap: balance;
}

.houston-page h1,
.houston-page h2,
.houston-page p,
.houston-page .section-copy,
.houston-page .section-label,
.houston-page .bullet strong,
.houston-page .bullet span,
.houston-page .faq-item strong,
.houston-page .faq-item p {
  font-family: "Montserrat", Arial, sans-serif;
}

.houston-page .section-label {
  letter-spacing: 0.12em;
}

.houston-hero-heading {
  line-height: 0.88;
  letter-spacing: 0;
}

.houston-hero-line {
  display: block;
}

.hero p,
.page-hero p,
.section-copy {
  color: var(--muted);
  font-size: 18px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.75;
}

.hero-live-copy h3,
.section h2,
.profile-card h3 {
  font-family: "Montserrat", Arial, sans-serif;
}

.hero {
  padding: 88px 0 54px;
}

.hero-grid {
  justify-items: stretch;
}

.hero-copy {
  max-width: none;
}

.hero-ambient {
  inset: -2% -1% 4%;
}

.hero-wash {
  position: absolute;
  border-radius: 999px;
  filter: blur(52px);
  opacity: 0.9;
}

.hero-wash-primary {
  width: 58%;
  height: 78%;
  left: -4%;
  top: 2%;
  background:
    radial-gradient(circle at 42% 42%, rgba(74, 141, 223, 0.3) 0%, rgba(74, 141, 223, 0.16) 32%, rgba(74, 141, 223, 0) 74%);
}

.hero-wash-secondary {
  width: 42%;
  height: 56%;
  right: 6%;
  bottom: 10%;
  background:
    radial-gradient(circle at 50% 50%, rgba(216, 176, 79, 0.16) 0%, rgba(216, 176, 79, 0.08) 34%, rgba(216, 176, 79, 0) 76%);
}

.hero-composition {
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.7fr);
  gap: clamp(34px, 4.5vw, 76px);
  align-items: stretch;
}

.hero-main {
  max-width: none;
  gap: 12px;
  align-content: start;
}

.hero-side {
  width: auto;
  max-width: 420px;
  justify-self: end;
  align-self: stretch;
}

.hero-copy-block {
  display: grid;
  gap: 12px;
}

.hero-kicker {
  color: var(--blue-soft);
  font-size: 13px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-main h1 {
  font-size: clamp(42px, 4.6vw, 62px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 11ch;
  color: #ffffff;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
}

.hero-title-accent,
.hero-title-line-gold {
  color: var(--gold);
}

.hero-panel-title-accent {
  color: var(--gold);
}

.hero-title-tight {
  display: inline-block;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 45ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.42;
  white-space: normal;
  text-wrap: pretty;
  text-shadow: none;
}

.hero-price-line {
  margin: -2px 0 0;
  color: rgba(244,247,251,0.76);
  font-size: clamp(14px, 1.1vw, 16px);
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.hero-price-line span {
  color: var(--gold);
  font-weight: 600;
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-call-shell {
  position: relative;
  min-width: 210px;
}

.hero-action-row .btn,
.hero-call-shell {
  min-width: 210px;
}

.hero-action-row .btn {
  position: relative;
  display: inline-flex;
  min-height: 66px;
  padding: 0 30px 0 48px;
  border: 1px solid rgba(127, 216, 255, 0.2);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.hero-action-row .btn::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-action-row .btn::after {
  content: "";
  position: absolute;
  top: -38%;
  bottom: -38%;
  left: -42%;
  width: 30%;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.08) 28%, rgba(255,255,255,0.42) 50%, rgba(var(--pill-rgb), 0.22) 64%, transparent 100%);
  transform: translateX(0) skewX(-18deg);
  opacity: 0;
  z-index: 1;
}

.hero-action-row .btn:hover,
.hero-action-row .btn:focus-visible {
  transform: translateY(-3px);
}

.hero-action-row .btn:hover::after,
.hero-action-row .btn:focus-visible::after {
  animation: actionPillSweep 0.86s ease-out both;
}

.hero-action-row .btn:active {
  transform: translateY(-1px) scale(0.99);
}

.hero-action-row .hero-primary-cta {
  min-height: 66px;
  border-color: rgba(33, 230, 107, 0.74);
  background:
    radial-gradient(circle at 18% 50%, rgba(33, 230, 107, 0.38), transparent 34%),
    linear-gradient(90deg, rgba(33, 230, 107, 0.18), rgba(33, 230, 107, 0.06) 58%, rgba(33, 230, 107, 0.18)),
    rgba(33, 230, 107, 0.14);
  color: #e7ffef;
  -webkit-text-fill-color: #e7ffef;
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(33, 230, 107, 0.22),
    0 0 46px rgba(33, 230, 107, 0.2);
  animation: ctaGlowBreathGreen 3.2s ease-in-out infinite;
}

.hero-action-row .hero-primary-cta::before {
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(33, 230, 107, 0.13);
}

.hero-action-row .hero-primary-cta:hover,
.hero-action-row .hero-primary-cta:focus-visible {
  background:
    radial-gradient(circle at 18% 50%, rgba(33, 230, 107, 0.48), transparent 35%),
    linear-gradient(90deg, rgba(33, 230, 107, 0.24), rgba(33, 230, 107, 0.1) 58%, rgba(33, 230, 107, 0.24)),
    rgba(33, 230, 107, 0.2);
  border-color: rgba(33, 230, 107, 0.95);
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.34), 0 0 0 3px rgba(33, 230, 107, 0.16), 0 0 60px rgba(33, 230, 107, 0.34);
}

.hero-action-row .hero-call-cta {
  min-height: 66px;
  border-color: rgba(127, 216, 255, 0.62);
  background:
    radial-gradient(circle at 18% 50%, rgba(127, 216, 255, 0.3), transparent 34%),
    linear-gradient(90deg, rgba(66, 184, 255, 0.18), rgba(66, 184, 255, 0.06) 58%, rgba(66, 184, 255, 0.16)),
    rgba(66, 184, 255, 0.14);
  color: #e9f8ff;
  -webkit-text-fill-color: #e9f8ff;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(127, 216, 255, 0.18), 0 0 42px rgba(66, 184, 255, 0.18);
}

.hero-action-row .hero-call-cta::before {
  background: var(--blue-soft);
  box-shadow: 0 0 0 6px rgba(127, 216, 255, 0.12);
}

.hero-action-row .hero-call-cta:hover,
.hero-action-row .hero-call-cta:focus-visible {
  background:
    radial-gradient(circle at 18% 50%, rgba(127, 216, 255, 0.4), transparent 35%),
    linear-gradient(90deg, rgba(66, 184, 255, 0.24), rgba(66, 184, 255, 0.1) 58%, rgba(66, 184, 255, 0.22)),
    rgba(66, 184, 255, 0.2);
  border-color: rgba(127, 216, 255, 0.92);
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.32), 0 0 0 3px rgba(127, 216, 255, 0.14), 0 0 58px rgba(66, 184, 255, 0.32);
}

.hero-action-row .btn-email-accent {
  --pill-rgb: 212, 166, 58;
  min-height: 62px;
  background:
    radial-gradient(circle at 18% 50%, rgba(212, 166, 58, 0.28), transparent 34%),
    linear-gradient(90deg, rgba(212, 166, 58, 0.18), rgba(212, 166, 58, 0.06) 58%, rgba(212, 166, 58, 0.18)),
    rgba(212, 166, 58, 0.14) !important;
  border: 1px solid rgba(212, 166, 58, 0.64) !important;
  color: #fff2c4 !important;
  -webkit-text-fill-color: #fff2c4 !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(212, 166, 58, 0.18), 0 0 34px rgba(212, 166, 58, 0.16);
}

.hero-action-row .btn-email-accent::before {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(212, 166, 58, 0.14);
}

.hero-action-row .btn-email-accent:hover,
.hero-action-row .btn-email-accent:focus-visible {
  background:
    radial-gradient(circle at 18% 50%, rgba(212, 166, 58, 0.4), transparent 35%),
    linear-gradient(90deg, rgba(212, 166, 58, 0.24), rgba(212, 166, 58, 0.1) 58%, rgba(212, 166, 58, 0.24)),
    rgba(212, 166, 58, 0.2) !important;
  border-color: rgba(212, 166, 58, 0.92) !important;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.31), 0 0 0 3px rgba(212, 166, 58, 0.14), 0 0 48px rgba(212, 166, 58, 0.28);
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(244,247,251,0.88);
  font-size: 13px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(205, 162, 58, 0.22);
  border-radius: 999px;
  background: rgba(205, 162, 58, 0.08);
}

.hero-call-help {
  position: absolute;
  left: 0;
  bottom: calc(100% + 12px);
  display: grid;
  gap: 5px;
  width: min(82vw, 248px);
  padding: 11px 13px 12px;
  border-radius: 16px 16px 16px 6px;
  border: 1px solid rgba(147, 222, 255, 0.18);
  background: #08111f;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(1, 7, 16, 0.26), inset 0 1px 0 rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(8px) scale(0.84);
  transform-origin: 26px 100%;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.16, 1.18, 0.32, 1);
  z-index: 35;
}

.hero-call-help::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  border-right: 1px solid rgba(147, 222, 255, 0.18);
  border-bottom: 1px solid rgba(147, 222, 255, 0.18);
  background: #08111f;
  transform: rotate(45deg);
}

body.has-idle-help .hero-call-help {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: bubbleBloop 0.48s cubic-bezier(0.16, 1.18, 0.32, 1) both;
}

.hero-call-help-title {
  font-size: 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-soft);
}

.hero-call-help-copy {
  margin: 0;
  color: rgba(235, 243, 250, 0.82);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.hero-call-help-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38ef81 0%, var(--green) 52%, var(--green-dark) 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.05;
  text-shadow: none;
  box-shadow: 0 10px 18px rgba(9, 89, 38, 0.2), inset 0 1px 0 rgba(255,255,255,0.18);
}

.hero-call-help-link:hover {
  text-decoration: none;
}

@keyframes bubbleBloop {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.84);
  }
  62% {
    opacity: 1;
    transform: translateY(-2px) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes actionPillSweep {
  0% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  100% {
    transform: translateX(780%) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes ctaGlowBreathGreen {
  0%, 100% {
    box-shadow:
      0 22px 44px rgba(0, 0, 0, 0.28),
      0 0 0 1px rgba(33, 230, 107, 0.48),
      0 0 70px rgba(33, 230, 107, 0.42),
      0 0 130px rgba(33, 230, 107, 0.16);
  }
  50% {
    box-shadow:
      0 24px 48px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(33, 230, 107, 0.7),
      0 0 92px rgba(33, 230, 107, 0.56),
      0 0 160px rgba(33, 230, 107, 0.24);
  }
}

@keyframes ctaGlowBreathCyan {
  0%, 100% {
    box-shadow:
      0 24px 46px rgba(0, 0, 0, 0.32),
      0 0 0 1px rgba(0, 229, 255, 0.52),
      0 0 84px rgba(0, 229, 255, 0.48),
      0 0 140px rgba(0, 229, 255, 0.2),
      inset 0 -22px 36px rgba(0, 229, 255, 0.2);
  }
  50% {
    box-shadow:
      0 26px 50px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(0, 229, 255, 0.76),
      0 0 108px rgba(0, 229, 255, 0.62),
      0 0 180px rgba(0, 229, 255, 0.28),
      inset 0 -22px 36px rgba(0, 229, 255, 0.26);
  }
}

.hero-trust-line {
  margin: 0;
  color: rgba(233, 242, 250, 0.62);
  font-size: 12px;
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.45;
}

.notary-stamps-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: min(100%, 136px);
  padding: 8px 10px;
  border: 1px solid rgba(127, 216, 255, 0.14);
  border-radius: 14px;
  background: rgba(244, 247, 251, 0.03);
  opacity: 0.82;
}

.notary-stamps-badge img,
.notary-stamps-badge iframe,
.notary-stamps-badge object,
.notary-stamps-badge embed,
.notary-stamps-badge table {
  max-width: 108px !important;
  width: auto !important;
  height: auto !important;
}

.notary-stamps-badge a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-notary-stamps-badge {
  margin-top: -4px;
}

.hero-notary-stamps-badge img {
  max-width: 92px !important;
}

.about-notary-stamps-badge {
  margin: -2px auto 18px;
}

.hero-card-heading {
  margin: 0;
  color: #fff;
  font-size: clamp(29px, 2.6vw, 39px);
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.045em;
  max-width: 12ch;
  text-transform: uppercase;
  text-wrap: pretty;
}

.hero-status-panel {
  display: grid;
  gap: 22px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(127, 216, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(15, 31, 52, 0.94), rgba(7, 18, 32, 0.98)),
    #071322;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.hero-status-topline {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(33, 230, 107, 0.34);
  border-radius: 999px;
  background: rgba(33, 230, 107, 0.1);
  color: #dfffe9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(33, 230, 107, 0.12);
}

.hero-status-summary {
  margin: 0;
  color: rgba(244,247,251,0.72);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.58;
}

.hero-status-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(127, 216, 255, 0.14);
  border-radius: 16px;
  background: rgba(127, 216, 255, 0.1);
}

.hero-status-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 13px;
  row-gap: 4px;
  padding: 16px;
  background: #071322;
}

.hero-status-item span {
  grid-row: 1 / span 2;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.45;
}

.hero-status-item strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.hero-status-item p {
  margin: 0;
  color: rgba(244,247,251,0.64);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.hero-bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  height: 100%;
}

.hero-bento-card {
  display: grid;
  align-content: space-between;
  gap: 14px;
  min-height: 136px;
  padding: 18px;
  border: 1px solid rgba(127, 216, 255, 0.16);
  border-radius: 18px;
  background: #071322;
  font-family: "Montserrat", "Inter", sans-serif;
}

.hero-bento-card-main {
  grid-column: 1 / -1;
  min-height: 230px;
  padding: 24px;
  border-color: rgba(212, 166, 58, 0.32);
  background: #091727;
}

.hero-bento-card-accent {
  border-color: rgba(212, 166, 58, 0.28);
  background: #0c1723;
}

.hero-bento-kicker,
.hero-bento-card > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-bento-card strong {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.hero-bento-card p {
  margin: 0;
  color: rgba(244,247,251,0.68);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.55;
}

.hero-bento-card-main p {
  max-width: 30ch;
  font-size: 15px;
  line-height: 1.6;
}

.hero-card-line {
  display: block;
  color: #fff;
}

.hero-card-line-gold {
  color: var(--gold);
}

.hero-status-copy {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}

.text-live-gold {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-hours-glass {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(147, 222, 255, 0.12);
  background: #091727;
  box-shadow: 0 20px 40px rgba(1, 7, 16, 0.18);
}

.hero-hours-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-hours-list {
  display: grid;
  gap: 10px;
}

.hero-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
  font-size: 14px;
}

.hero-hours-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.hero-hours-row strong {
  color: #f7feff;
  font-weight: 700;
}

.hero-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.hero-step-card {
  display: grid;
  gap: 13px;
  padding: 24px 22px 22px;
  border-radius: 16px;
  border: 1px solid rgba(147, 222, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(13, 28, 47, 0.8), rgba(7, 17, 30, 0.92));
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-step-card:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 176, 79, 0.34);
  background:
    linear-gradient(180deg, rgba(15, 32, 53, 0.88), rgba(8, 20, 34, 0.96));
  box-shadow: 0 14px 28px rgba(2, 8, 18, 0.18);
}

.hero-step-rule {
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(216, 176, 79, 0));
}

.hero-step-number {
  color: rgba(216, 176, 79, 0.92);
  font-size: 12px;
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero-step-card strong {
  color: #f7feff;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hero-step-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.service-tile {
  padding: 14px 14px 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #071322;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.service-tile strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Montserrat", Arial, sans-serif;
}

.service-tile span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
  font-family: "Montserrat", Arial, sans-serif;
}

.service-tile:hover,
.bullet:hover,
.mini-card:hover,
.compact-step:hover {
  transform: translateY(-2px);
  border-color: rgba(147, 222, 255, 0.3);
  background: rgba(255,255,255,0.045);
}

.compact-flow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
}

.compact-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 11px 13px;
  border-radius: 14px;
  width: fit-content;
  min-width: 250px;
  max-width: 78%;
  background: #071322;
  border: 1px solid rgba(147, 222, 255, 0.12);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.compact-step strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(127, 216, 255, 0.12);
  color: var(--cyan-head);
}

.compact-step span {
  color: var(--muted);
  line-height: 1.5;
}

.step-list,
.bullet-list,
.faq-list {
  display: grid;
  gap: 14px;
}

.step,
.bullet,
.faq-item,
.mini-card {
  padding: 16px 16px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.016);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.step strong,
.bullet strong,
.faq-item strong { display: block; margin-bottom: 6px; font-family: "Montserrat", Arial, sans-serif; }

.step span,
.bullet span,
.faq-item p,
.mini-card p { color: var(--muted); line-height: 1.65; margin: 0; font-family: "Montserrat", Arial, sans-serif; }

.bullet-compact {
  padding: 12px 14px 11px;
}

.bullet-compact strong {
  margin-bottom: 4px;
  font-size: 17px;
  line-height: 1.15;
}

.bullet-compact span {
  font-size: 14px;
  line-height: 1.45;
}

.payment-card {
  display: grid;
  gap: 10px;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.payment-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 8px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 34, 64, 0.08);
  box-shadow: 0 10px 24px rgba(5, 11, 20, 0.12);
}

.payment-brand {
  display: block;
  height: 22px;
  width: auto;
  max-width: 138px;
  object-fit: contain;
}

.payment-brand.mastercard {
  height: 26px;
}

.payment-brand.discover,
.payment-brand.applepay {
  height: 20px;
}

.payment-brand.amex {
  height: 24px;
}

.footer-card-legal {
  display: grid;
  gap: 10px;
}

.footer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-brandline {
  display: grid;
  gap: 4px;
}

.footer-mark {
  color: rgba(244,247,251,0.86);
  font-size: 13px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
}

.footer-submark {
  color: rgba(244,247,251,0.64);
  font-size: 11px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
}

.footer-copy {
  color: rgba(244,247,251,0.5);
  font-size: 11px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
}

.footer-links a {
  display: inline-block;
  padding: 0;
  color: rgba(187, 208, 228, 0.62);
  text-decoration: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-links a:hover {
  color: rgba(233, 242, 250, 0.86);
  opacity: 1;
}

.footer-contact {
  max-width: none;
  color: rgba(244,247,251,0.72);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
}

.footer-contact strong {
  color: rgba(247, 254, 255, 0.92);
  font-weight: 700;
}

.footer-contact a {
  color: #7fd8ff;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-contact-actions {
  display: block;
}

.footer-contact-link {
  display: inline;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: #fff;
}

.footer-legal,
.footer-disclaimer {
  max-width: none;
  color: rgba(244,247,251,0.54);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
}

.footer-legal {
  margin-top: 12px;
}

.footer-disclaimer {
  margin-top: 4px;
}

.policy-card {
  padding: 28px;
  border-radius: 24px;
}

.policy-card h2 {
  margin: 22px 0 10px;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.75;
}

.policy-card ul {
  margin: 0 0 0 18px;
  padding: 0;
}

.page-hero {
  padding: 52px 0 18px;
}

.page-hero-card {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #071322;
}

.thank-you-card {
  max-width: 820px;
  margin: 0 auto;
}

.thank-you-card h1 {
  max-width: 10ch;
  margin-bottom: 18px;
}

.thank-you-kicker {
  color: var(--blue-soft);
}

.thank-you-gold {
  color: var(--gold);
}

.thank-you-card p {
  max-width: 58ch;
}

.thank-you-card .cta-row {
  margin-top: 26px;
}

.section {
  padding: 28px 0;
}

.hero + .section {
  padding-top: 12px;
}

.section-columns {
  padding-top: 4px;
}

.section-columns-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.section-column {
  min-width: 0;
}

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

.section-column .bullet-list {
  align-items: start;
}

.section-column .bullet-list .bullet-compact {
  width: min(100%, 82%);
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 36px);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 650;
  line-height: 0.94;
  letter-spacing: 0;
  color: #fff;
  text-wrap: balance;
}

.section-columns h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0;
}

.section-label {
  margin-bottom: 10px;
  color: var(--blue-soft);
  font-size: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-columns .section-label {
  color: var(--cyan-head);
}

.section-columns h2 {
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.42);
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 18px;
}

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

.reveal-grid > * {
  animation: softReveal 0.55s ease both;
}

.reveal-grid > *:nth-child(2) { animation-delay: 0.08s; }
.reveal-grid > *:nth-child(3) { animation-delay: 0.16s; }
.reveal-grid > *:nth-child(4) { animation-delay: 0.24s; }
.reveal-grid > *:nth-child(5) { animation-delay: 0.32s; }
.reveal-grid > *:nth-child(6) { animation-delay: 0.4s; }

@keyframes softReveal {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 26px;
  align-items: start;
}

.profile-card {
  padding: 24px;
  border-radius: 24px;
  text-align: center;
}

.profile-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  margin: 0 auto 18px;
  border: 2px solid rgba(147, 222, 255, 0.26);
}

.profile-card h3 { margin: 0 0 6px; font-size: 28px; }
.profile-card p { margin: 0 0 18px; color: var(--muted); }

.commission-card {
  margin: 0 0 18px;
  padding: 16px 18px;
  border: 1px solid rgba(147, 222, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  text-align: left;
}

.commission-kicker {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-soft);
}

.commission-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  color: var(--muted);
  font-size: 15px;
}

.commission-line strong {
  color: var(--text);
  font-weight: 700;
}

.price-card,
.contact-card,
.map-card {
  padding: 28px;
  border-radius: 24px;
}

.map-card {
  position: relative;
  overflow: hidden;
}

.service-bento-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.72fr);
  grid-template-areas:
    "head coverage"
    "copy coverage";
  gap: 16px;
  align-items: stretch;
  padding: clamp(22px, 3vw, 34px);
  border-color: rgba(127, 216, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(8, 20, 35, 0.98), rgba(5, 13, 25, 0.99)),
    #071322;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.service-bento-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(127, 216, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(127, 216, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(135deg, rgba(0,0,0,0.5), transparent 70%);
}

.service-bento-section > * {
  position: relative;
  z-index: 1;
}

.service-bento-head,
.map-card-text,
.service-bento-card,
.map-card .cta-row {
  border: 1px solid rgba(127, 216, 255, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)),
    rgba(7, 19, 34, 0.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}

.service-bento-head {
  grid-area: head;
  display: grid;
  align-content: space-between;
  min-height: 240px;
  padding: clamp(22px, 3vw, 30px);
}

.map-card-copy {
  display: contents;
}

.map-card-heading {
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5.8vw, 82px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.map-card-heading-line {
  display: block;
}

.map-card-heading-gold {
  color: var(--gold);
}

.text-gold {
  color: var(--gold);
}

.map-card-copy .section-copy {
  margin: 0;
  max-width: 56ch;
}

.apostille-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.58fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: center;
  overflow: hidden;
  border-color: rgba(212, 166, 58, 0.2);
  background:
    radial-gradient(circle at 82% 22%, rgba(212, 166, 58, 0.12), transparent 34%),
    radial-gradient(circle at 16% 88%, rgba(127, 216, 255, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(11, 24, 42, 0.96), rgba(5, 14, 26, 0.98));
}

.apostille-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(127, 216, 255, 0.08);
  border-radius: 18px;
  pointer-events: none;
}

.apostille-card::after {
  content: "";
  position: absolute;
  right: clamp(24px, 6vw, 96px);
  top: 50%;
  width: clamp(170px, 22vw, 310px);
  aspect-ratio: 0.72;
  border: 1px solid rgba(244, 247, 251, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 20%, rgba(127, 216, 255, 0.08) 20% 21%, transparent 21%),
    repeating-linear-gradient(180deg, rgba(244,247,251,0.12) 0 2px, transparent 2px 24px),
    rgba(255,255,255,0.03);
  transform: translateY(-50%) rotate(4deg);
  opacity: 0.18;
  pointer-events: none;
}

.apostille-copy,
.apostille-panel {
  position: relative;
  z-index: 1;
}

.apostille-copy {
  display: grid;
  gap: 16px;
}

.apostille-copy h1,
.apostille-copy h2 {
  max-width: 15ch;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.apostille-copy p {
  max-width: 660px;
  margin: 0;
  color: rgba(244,247,251,0.74);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 500;
  line-height: 1.65;
}

.apostille-copy strong {
  color: #7fd8ff;
}

.apostille-compliance-note {
  display: grid;
  gap: 8px;
  max-width: 690px;
  padding: 16px 18px;
  border: 1px solid rgba(127, 216, 255, 0.3);
  border-radius: 14px;
  background: rgba(127, 216, 255, 0.07);
  color: rgba(244,247,251,0.76);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.apostille-compliance-note strong {
  color: #9dccff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.apostille-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(127, 216, 255, 0.14);
  border-radius: 20px;
  background: rgba(5, 15, 27, 0.72);
  box-shadow: 0 22px 46px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.06);
}

.apostille-status {
  justify-self: start;
  border-color: rgba(33, 230, 107, 0.34);
  background: rgba(33, 230, 107, 0.1);
  color: #dfffe9;
}

.apostille-status .hero-status-dot {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(33, 230, 107, 0.12), 0 0 22px rgba(33, 230, 107, 0.32);
}

.apostille-doc-list {
  display: grid;
  gap: 10px;
}

.apostille-doc-list span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(127, 216, 255, 0.12);
  border-radius: 13px;
  background: rgba(7, 19, 34, 0.72);
  color: rgba(244,247,251,0.82);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.apostille-actions {
  display: grid;
  gap: 12px;
}

.apostille-actions .btn {
  width: 100%;
  min-width: 0;
  min-height: 74px;
  padding-left: 92px;
  padding-right: 26px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  justify-content: flex-start;
  overflow: hidden;
  text-shadow: 0 0 22px rgba(var(--pill-rgb), 0.24);
}

.apostille-actions .btn::before {
  left: 34px;
  width: 13px;
  height: 13px;
}

.apostille-actions .btn::after {
  opacity: 0.74;
  background:
    radial-gradient(circle at 18% 50%, rgba(var(--pill-rgb), 0.24), transparent 28%),
    linear-gradient(90deg, transparent, rgba(var(--pill-rgb), 0.2), transparent);
}

.apostille-quote-cta {
  --pill-rgb: 0, 229, 255;
  border-color: rgba(0, 229, 255, 0.78);
  background:
    radial-gradient(circle at 22% 50%, rgba(0, 229, 255, 0.42), transparent 34%),
    radial-gradient(circle at 50% 118%, rgba(0, 229, 255, 0.34), transparent 58%),
    linear-gradient(90deg, rgba(0, 229, 255, 0.2), rgba(0, 229, 255, 0.06) 58%, rgba(0, 229, 255, 0.18)),
    rgba(0, 229, 255, 0.13);
  color: #effdff;
  -webkit-text-fill-color: #effdff;
  box-shadow:
    0 24px 46px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(0, 229, 255, 0.28),
    0 0 54px rgba(0, 229, 255, 0.24),
    inset 0 -22px 36px rgba(0, 229, 255, 0.1);
  animation: ctaGlowBreathCyan 3.4s ease-in-out infinite;
}

.apostille-quote-cta::before {
  background: #00e5ff;
  box-shadow:
    0 0 0 7px rgba(0, 229, 255, 0.14),
    0 0 24px rgba(0, 229, 255, 0.5);
}

.apostille-quote-cta:hover,
.apostille-quote-cta:focus-visible {
  border-color: rgba(0, 229, 255, 0.82);
  background:
    radial-gradient(circle at 22% 50%, rgba(0, 229, 255, 0.54), transparent 35%),
    radial-gradient(circle at 50% 112%, rgba(0, 229, 255, 0.46), transparent 60%),
    linear-gradient(90deg, rgba(0, 229, 255, 0.28), rgba(0, 229, 255, 0.1) 58%, rgba(0, 229, 255, 0.26)),
    rgba(0, 229, 255, 0.2);
  box-shadow:
    0 30px 56px rgba(0, 0, 0, 0.36),
    0 0 0 3px rgba(0, 229, 255, 0.13),
    0 0 70px rgba(0, 229, 255, 0.4);
}

.apostille-photo-cta {
  --pill-rgb: 33, 230, 107;
  border-color: rgba(33, 230, 107, 0.72);
  background:
    radial-gradient(circle at 22% 50%, rgba(33, 230, 107, 0.34), transparent 34%),
    radial-gradient(circle at 50% 118%, rgba(33, 230, 107, 0.3), transparent 58%),
    linear-gradient(90deg, rgba(33, 230, 107, 0.18), rgba(33, 230, 107, 0.06) 58%, rgba(33, 230, 107, 0.18)),
    rgba(33, 230, 107, 0.12);
  color: #eafff1;
  -webkit-text-fill-color: #eafff1;
  box-shadow:
    0 24px 46px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(33, 230, 107, 0.24),
    0 0 48px rgba(33, 230, 107, 0.22);
}

.btn,
.hero-action-row .hero-primary-cta,
.hero-action-row .hero-call-cta,
.hero-action-row .btn-email-accent,
.apostille-quote-cta,
.apostille-photo-cta {
  border-color: rgba(var(--pill-rgb), 0.48) !important;
  background:
    radial-gradient(circle at 20% 50%, rgba(var(--pill-rgb), 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(7, 19, 34, 0.94) !important;
  color: #f8fbff !important;
  -webkit-text-fill-color: #f8fbff !important;
  text-shadow: none !important;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(var(--pill-rgb), 0.08),
    0 0 22px rgba(var(--pill-rgb), 0.12),
    inset 0 1px 0 rgba(255,255,255,0.12) !important;
  animation: none !important;
}

.btn::before,
.hero-action-row .hero-primary-cta::before,
.hero-action-row .hero-call-cta::before,
.hero-action-row .btn-email-accent::before,
.apostille-quote-cta::before,
.apostille-photo-cta::before {
  background: rgb(var(--pill-rgb)) !important;
  box-shadow:
    0 0 0 6px rgba(var(--pill-rgb), 0.14),
    0 0 22px rgba(var(--pill-rgb), 0.36) !important;
}

.btn:hover,
.btn:focus-visible,
.hero-action-row .hero-primary-cta:hover,
.hero-action-row .hero-primary-cta:focus-visible,
.hero-action-row .hero-call-cta:hover,
.hero-action-row .hero-call-cta:focus-visible,
.hero-action-row .btn-email-accent:hover,
.hero-action-row .btn-email-accent:focus-visible,
.apostille-quote-cta:hover,
.apostille-quote-cta:focus-visible,
.apostille-photo-cta:hover,
.apostille-photo-cta:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(var(--pill-rgb), 0.72) !important;
  background:
    radial-gradient(circle at 20% 50%, rgba(var(--pill-rgb), 0.24), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.035)),
    rgba(9, 25, 42, 0.96) !important;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(var(--pill-rgb), 0.16),
    0 0 30px rgba(var(--pill-rgb), 0.2),
    inset 0 1px 0 rgba(255,255,255,0.15) !important;
}

.hero-action-row .hero-primary-cta {
  --pill-rgb: 33, 230, 107;
}

.hero-action-row .hero-call-cta {
  --pill-rgb: 127, 216, 255;
}

.hero-action-row .btn-email-accent {
  --pill-rgb: 212, 166, 58;
}

.map-card-text {
  grid-area: copy;
  display: grid;
  align-content: center;
  min-height: 190px;
  padding: clamp(20px, 2.6vw, 28px);
  gap: 16px;
}

.service-area-note {
  margin: 0;
  max-width: 700px;
  color: rgba(244,247,251,0.68);
  font-size: 15px;
  line-height: 1.65;
}

.service-bento-grid {
  grid-area: coverage;
  display: grid;
  min-height: 100%;
}

.service-bento-card,
.service-bento-actions {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 100%;
  padding: clamp(20px, 2.5vw, 28px);
  font-family: "Montserrat", "Inter", sans-serif;
}

.service-bento-actions {
  border: 1px solid rgba(127, 216, 255, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 86% 14%, rgba(127, 216, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)),
    rgba(7, 19, 34, 0.86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}

.service-bento-actions .btn {
  width: 100%;
  min-width: 0;
  min-height: 76px;
  padding-left: 92px;
  padding-right: 26px;
  justify-content: flex-start;
  font-size: 1rem;
}

.service-bento-actions .btn::before {
  left: 34px;
  width: 13px;
  height: 13px;
}

.service-bento-card-large {
  min-height: 240px;
  border-color: rgba(212, 166, 58, 0.3);
  background:
    radial-gradient(circle at 86% 14%, rgba(212, 166, 58, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(212, 166, 58, 0.045), rgba(255,255,255,0.012)),
    rgba(8, 22, 38, 0.88);
}

.service-bento-card span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.service-bento-card strong {
  color: #fff;
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.service-bento-card p {
  margin: 0;
  color: rgba(244,247,251,0.68);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.6;
}

.price-big {
  font-size: clamp(52px, 8vw, 88px);
  line-height: 1;
  margin-bottom: 8px;
  color: var(--gold);
}

.pricing-hero-heading {
  display: grid;
  gap: 6px;
}

.pricing-total {
  color: var(--gold);
}

.pricing-subhead {
  display: block;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #f7feff;
}

.price-breakdown-label {
  margin-top: 12px;
  color: rgba(228, 235, 245, 0.58);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-status {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(147, 222, 255, 0.22);
  background: rgba(255,255,255,0.04);
  color: var(--blue-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-note,
.policy-copy,
.contact-copy { color: var(--muted); line-height: 1.75; }

.pricing-breakdown-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.pricing-breakdown-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.pricing-check {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--cyan-head);
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

.pricing-breakdown-item strong {
  display: block;
  margin-bottom: 4px;
  color: #f7feff;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.2;
}

.pricing-breakdown-item span:last-child {
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.terms-card {
  margin-top: 20px;
  padding: 24px;
  border: 1px solid rgba(147, 222, 255, 0.16);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
}

.terms-card h2 {
  margin-bottom: 10px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 24px;
}

.price-table th,
.price-table td {
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  color: var(--blue-soft);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  padding: 24px 0 34px;
  color: rgba(244,247,251,0.52);
  font-size: 12px;
}

.footer-card {
  padding: 0;
  border-radius: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .section-columns-grid,
  .about-grid,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-composition {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-content: stretch;
  }

  .hero-main,
  .hero-side {
    max-width: none;
    width: 100%;
  }

  .hero {
    padding: 62px 0 40px;
  }

  .hero-main h1 {
    max-width: 100%;
    font-size: clamp(38px, 8vw, 58px);
  }

  .hero-lede {
    max-width: 44ch;
  }

  .hero-price-line {
    max-width: 44ch;
  }

  .hero-action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-action-row .btn {
    width: 100%;
  }

  .hero-call-shell {
    width: 100%;
  }

  .hero-call-shell .btn {
    width: 100%;
  }

  .hero-call-help {
    width: min(calc(100vw - 28px), 340px);
  }

  .hero-trust-line {
    max-width: 44ch;
  }

  .hero-proof-row {
    justify-content: center;
  }

  .hero-card-heading {
    max-width: none;
  }

  .hero-status-panel {
    min-height: 0;
  }

  .hero-hours-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-copy-layout {
    display: block;
    min-height: 0;
  }

  .hero-copy,
  .hero-card,
  .panel,
  .page-hero-card,
  .price-card,
  .contact-card,
  .map-card {
    padding: 24px;
    border-radius: 22px;
  }

  .hero-copy {
    padding: 0;
    border-radius: 0;
  }

  .service-bento-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "copy"
      "coverage";
    gap: 14px;
  }

  .service-bento-head,
  .service-bento-card-large,
  .service-bento-actions,
  .map-card-text,
  .map-card .cta-row {
    min-height: 0;
  }

  .map-card-copy {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .apostille-card {
    grid-template-columns: 1fr;
  }

  .apostille-copy h1,
  .apostille-copy h2 {
    max-width: 14ch;
  }

  .apostille-panel {
    max-width: 460px;
    width: 100%;
  }

  .map-card .cta-row {
    align-items: stretch;
  }

  .map-card .cta-row .btn {
    width: 100%;
    min-width: 0;
  }

  .footer-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    width: 100%;
  }

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

  .compact-step {
    min-width: 0;
    max-width: 100%;
  }

  .btn {
    min-height: 56px;
    padding: 0 24px;
    font-size: 0.96rem;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .header-inner {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-brand img {
    width: min(100%, 280px);
    max-height: 110px;
  }

  .brand-integrated {
    padding-right: 0;
  }

  .brand-integrated img {
    width: min(100%, 260px);
    max-height: 100px;
  }

}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .container {
    width: min(100% - 20px, var(--max));
  }

  .header-inner {
    gap: 12px;
    padding: 12px 0 10px;
  }

  .floating-brand {
    width: 100%;
    justify-content: center;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .brand-integrated {
    width: 100%;
    justify-content: center;
    padding: 0;
  }

  .brand-integrated img {
    width: min(100%, 300px);
    max-height: 116px;
  }

  .floating-brand img {
    width: min(100%, 260px);
    max-height: 104px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 6px;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(105, 183, 255, 0.1);
  }

  .site-nav a.availability-chip {
    grid-column: 1 / -1;
    justify-self: center;
    width: fit-content;
    min-width: 188px;
    min-height: 36px;
    padding: 0 16px 0 34px;
  }

  .availability-chip-top {
    font-size: 12px;
  }

  .availability-chip-bottom {
    font-size: 10px;
  }

  .hero {
    padding: 30px 0 26px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-composition {
    gap: 14px;
  }

  .hero-main {
    gap: 12px;
  }

  .hero-brand-lockup {
    justify-items: center;
    justify-self: center;
    width: min(100%, 280px);
  }

  .hero-brand-logo {
    width: min(100%, 260px);
  }

  .hero-main h1 {
    font-size: clamp(34px, 10.4vw, 44px);
    max-width: 100%;
    text-align: center;
  }

  .hero-copy-block,
  .hero-lede,
  .hero-kicker {
    text-align: center;
  }

  .hero-lede {
    max-width: 32ch;
    justify-self: center;
    font-size: 16px;
    line-height: 1.38;
  }

  .hero-price-line {
    justify-self: center;
    text-align: center;
  }

  .hero-action-row {
    gap: 12px;
  }

  .hero-action-row .hero-primary-cta {
    min-height: 67px;
  }

  .hero-trust-line {
    justify-self: center;
    text-align: center;
  }

  .hero-proof-row {
    gap: 8px;
  }

  .hero-proof-row span {
    justify-content: center;
    width: 100%;
  }

  .hero-ambient {
    inset: 0;
  }

  .hero-wash-primary {
    width: 92%;
    height: 54%;
    left: -16%;
    top: 2%;
  }

  .hero-wash-secondary {
    width: 74%;
    height: 34%;
    right: -14%;
    bottom: 16%;
  }

  .hero-step-card,
  .hero-call-help {
    padding: 12px;
  }

  .hero-card-heading {
    font-size: clamp(26px, 8vw, 36px);
    max-width: none;
    text-align: left;
  }

  .hero-status-panel {
    gap: 18px;
    padding: 20px;
    border-radius: 20px;
  }

  .hero-status-topline {
    justify-self: center;
  }

  .hero-status-panel .hero-card-heading,
  .hero-status-summary {
    text-align: center;
  }

  .hero-status-item {
    grid-template-columns: 30px 1fr;
    padding: 15px;
  }

  .hero-bento {
    grid-template-columns: 1fr;
  }

  .hero-bento-card,
  .hero-bento-card-main {
    min-height: 0;
    padding: 18px;
  }

  .service-bento-grid {
    grid-template-columns: 1fr;
  }

  .service-bento-head,
  .map-card-text,
  .service-bento-card,
  .service-bento-actions,
  .map-card .cta-row {
    padding: 18px;
    border-radius: 18px;
  }

  .map-card-heading {
    font-size: clamp(31px, 9vw, 42px);
  }

  .apostille-card {
    gap: 22px;
  }

  .apostille-card::before,
  .apostille-card::after {
    display: none;
  }

  .apostille-copy {
    text-align: center;
  }

  .apostille-copy h1,
  .apostille-copy h2,
  .apostille-copy p,
  .apostille-panel {
    justify-self: center;
  }

  .apostille-copy h1,
  .apostille-copy h2 {
    font-size: clamp(31px, 9.6vw, 42px);
  }

  .service-bento-card,
  .service-bento-card-large {
    min-height: 0;
  }

  .hero-hours-head {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .hero-hours-row {
    font-size: 14px;
  }

}

@media (min-width: 1700px) {
  .container { width: min(100% - 64px, 1860px); }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { padding: 48px; }
  .hero-card { padding: 34px; }
  .hero-brand-logo { width: min(100%, 480px); }
  .grid-3 { grid-template-columns: repeat(3, minmax(280px, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow-dot,
  .hero-call-cta,
  .hero-primary-cta,
  .site-nav a.availability-chip.is-live,
  .site-nav a.availability-chip::after {
    animation: none;
  }

  .hero-call-cta,
  .hero-call-help {
    transition: none;
  }
}

.is-hidden { display: none !important; }

.btn-email-accent,
.apostille-photo-cta.btn-email-accent,
.hero-action-row .btn-email-accent,
.service-bento-actions .btn-email-accent {
  --pill-rgb: 212, 166, 58 !important;
  border-color: rgba(212, 166, 58, 0.72) !important;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 166, 58, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025)),
    rgba(34, 27, 13, 0.96) !important;
  color: #fff2c4 !important;
  -webkit-text-fill-color: #fff2c4 !important;
  box-shadow:
    0 18px 36px rgba(0,0,0,0.26),
    0 0 0 1px rgba(212, 166, 58, 0.18),
    0 0 32px rgba(212, 166, 58, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.12) !important;
}

.btn-email-accent::before,
.apostille-photo-cta.btn-email-accent::before,
.hero-action-row .btn-email-accent::before,
.service-bento-actions .btn-email-accent::before {
  background: var(--gold) !important;
  box-shadow:
    0 0 0 6px rgba(212, 166, 58, 0.16),
    0 0 24px rgba(212, 166, 58, 0.42) !important;
}

.btn-email-accent:hover,
.btn-email-accent:focus-visible,
.apostille-photo-cta.btn-email-accent:hover,
.apostille-photo-cta.btn-email-accent:focus-visible,
.hero-action-row .btn-email-accent:hover,
.hero-action-row .btn-email-accent:focus-visible,
.service-bento-actions .btn-email-accent:hover,
.service-bento-actions .btn-email-accent:focus-visible {
  border-color: rgba(212, 166, 58, 0.92) !important;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 166, 58, 0.38), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035)),
    rgba(42, 33, 15, 0.98) !important;
}

.home-page .hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 56px);
  margin: 20px auto 0;
  padding: clamp(36px, 5vw, 56px);
  border: 1px solid rgba(127, 216, 255, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(66, 184, 255, 0.16), transparent 35%),
    radial-gradient(circle at bottom right, rgba(205, 162, 58, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(8, 17, 31, 0.98), rgba(12, 27, 47, 0.94));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.home-page .hero::before {
  display: none;
}

.home-page .hero-content {
  flex: 1 1 0;
  max-width: 620px;
}

.home-page .hero-brand-lockup {
  width: 100%;
  height: 1px;
  margin: 0 0 20px;
}

.home-page .hero h1 {
  margin: 0 0 14px;
  max-width: 12ch;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.home-page .hero > .hero-content > p {
  margin: 0 0 22px;
  color: #d8e2ec;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.6;
}

.home-page .hero .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.home-page .hero .btn-primary,
.home-page .hero .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-page .hero .btn-primary:hover,
.home-page .hero .btn-primary:focus-visible,
.home-page .hero .btn-secondary:hover,
.home-page .hero .btn-secondary:focus-visible {
  transform: translateY(-2px);
}

.home-page .hero .btn-primary {
  background: linear-gradient(135deg, #2ddf77 0%, #19b45a 100%);
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(25, 180, 90, 0.24);
}

.home-page .hero .hero-call-shell {
  position: relative;
  min-width: 0;
}

.home-page .hero .btn-secondary {
  border: 2px solid rgba(33, 230, 107, 0.76);
  background: rgba(33, 230, 107, 0.08);
  color: #dfffe9;
  box-shadow: 0 18px 36px rgba(10, 30, 18, 0.18);
}

.home-page .hero .steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.home-page .hero .steps li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(127, 216, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: #f4f7fb;
  font-size: 0.95rem;
  font-weight: 600;
}

.home-page .hero .step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(205, 162, 58, 0.95), rgba(138, 100, 22, 0.95));
  color: #08111f;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.home-page .hero .trust-signals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  color: rgba(244, 247, 251, 0.78);
  font-size: 0.9rem;
}

.home-page .hero .trust-signals img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.home-page .hero-image {
  flex: 1 1 0;
  max-width: 560px;
}

.home-page .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(127, 216, 255, 0.12);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

@media (max-width: 768px) {
  .home-page .hero {
    flex-direction: column;
    padding: 28px 20px;
    text-align: center;
  }

  .home-page .hero-content {
    max-width: none;
  }

  .home-page .hero h1,
  .home-page .hero > .hero-content > p {
    max-width: none;
  }

  .home-page .hero .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .home-page .hero .hero-call-shell,
  .home-page .hero .btn-primary,
  .home-page .hero .btn-secondary {
    width: 100%;
  }

  .home-page .hero .steps {
    flex-direction: column;
    align-items: stretch;
  }

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

  .home-page .hero-image {
    order: -1;
    max-width: 100%;
  }
}

/* Wrapper for hero section */
.apostille-hero {
  background-color: #f9fbfd;
  padding: 3rem 1rem;
}
.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.hero-text {
  flex: 1;
}
.hero-text h1 {
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}
.hero-subheading {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #555;
}
.hero-cta {
  display: flex;
  gap: 1rem;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}
.btn-primary {
  background-color: #21ba45;
  color: #fff;
}
.btn-secondary {
  border: 2px solid #21ba45;
  color: #21ba45;
}
.hero-image img {
  max-width: 100%;
  border-radius: 8px;
}

/* Card styling for definition, process, docs, FAQ, trust */
.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin: 2rem auto;
  max-width: 900px;
}
.card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

/* Process list */
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.process-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.process-list .icon {
  margin-right: 1rem;
  flex-shrink: 0;
}
.process-list .icon img {
  width: 36px;
  height: 36px;
}
.process-list .step-text {
  flex: 1;
}

/* Docs list */
.docs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}
.docs-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
}
.docs-list .icon {
  margin-right: 0.5rem;
}
.docs-list .icon img {
  width: 32px;
  height: 32px;
}

.note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 1rem;
  text-align: center;
}

/* FAQ styling */
.faq-item {
  margin-bottom: 1.5rem;
}
.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Trust section */
.apostille-trust {
  text-align: center;
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}
.trust-badges img {
  height: 50px;
}
.apostille-trust .legal {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-cta {
    justify-content: center;
  }
  .process-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .process-list .icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

/* === Hero video enhancements === */

/* Ensure the video scales to fill its container while preserving aspect ratio */
.hero-image .hero-video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* On smaller screens, stack content and ensure the video stays above or below content */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-image {
    order: -1; /* Move the video above the text on mobile */
  }
  .cta-buttons {
    justify-content: center;
  }
  .steps {
    flex-direction: column;
    align-items: center;
  }
}
