:root {
  --ink: #0e1526;
  --muted: #64748b;
  --soft: #eef6ff;
  --line: #d9e4f2;
  --blue: #2563eb;
  --blue-dark: #123db0;
  --dark: #070b14;
  --dark-2: #101827;
  --white: #ffffff;
  --max: 1180px;
  --gutter: clamp(18px, 5vw, 72px);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 12px max(var(--gutter), calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled,
body.menu-open .site-header {
  border-bottom-color: rgba(217, 228, 242, 0.78);
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.menu-open .site-header {
  border-bottom-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  display: block;
  width: 86px;
  height: 65px;
  flex: 0 0 86px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 17px;
  font-weight: 950;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 850;
  height:100%; 
  align-items: center;
}

.site-header.scrolled .site-nav,
body.menu-open .site-nav {
  color: #475569;
}

.site-nav a {
  padding: 10px 0;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 950;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.25);
}

.header-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.site-header.hero-passed .header-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(3, 7, 18, 0.34);
  backdrop-filter: blur(12px);
  z-index: 3;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 320ms cubic-bezier(0.19, 1, 0.22, 1), opacity 180ms ease, background 180ms ease;
}

.menu-toggle span:first-child {
  transform: translate(-50%, calc(-50% - 7px));
}

.menu-toggle span:last-child {
  transform: translate(-50%, calc(-50% + 7px));
}

.site-header.scrolled .menu-toggle,
body.menu-open .menu-toggle {
  border-color: var(--line);
  background: #fff;
}

.site-header.scrolled .menu-toggle span,
body.menu-open .menu-toggle span {
  background: var(--ink);
}

body.menu-open .menu-toggle span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0.2);
}

body.menu-open .menu-toggle span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 100dvh;
  min-height: 620px;
  padding: clamp(104px, 12vw, 146px) var(--gutter) 28px;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: 22%;
  left: -8%;
  z-index: 1;
  height: 2px;
  pointer-events: none;
}

/* .hero::before {
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.85), transparent 58%);
  box-shadow: 0 0 38px rgba(37, 99, 235, 0.8), 0 0 86px rgba(37, 99, 235, 0.36);
  transform: rotate(-2deg);
}

.hero::after {
  background: linear-gradient(90deg, transparent 38%, rgba(34, 197, 94, 0.7), transparent);
  box-shadow: 0 0 38px rgba(34, 197, 94, 0.54), 0 0 82px rgba(34, 197, 94, 0.24);
  transform: rotate(2deg);
} */

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video,
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(1.12) contrast(1.12);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(7, 11, 20, 0.38) 38%, rgba(0, 0, 0, 0.4)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(7, 11, 20, 0.42) 46%, rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin: 0 auto;
  min-height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: clamp(18px, 4vw, 42px);
}

.hero-center {
  align-self: center;
  width: min(980px, 100%);
  margin: 0 auto;
  padding-bottom: 0;
  text-align: center;
  transform: translateY(-18px);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: rgba(219, 234, 254, 0.86);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-kicker::before,
.hero-kicker::after {
  content: "";
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147, 197, 253, 0.96));
}

.hero-kicker::after {
  background: linear-gradient(90deg, rgba(147, 197, 253, 0.96), transparent);
}

.hero-review-proof {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 40px;
  margin: 0 0 22px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(3, 7, 18, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.hero-review-proof[hidden] {
  display: none;
}

.hero-review-proof strong {
  color: #fff;
  font-weight: 950;
}

.hero-review-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.kicker {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin: 0 0 14px;
  padding: 0 14px;
  border-radius: 6px;
  color: #fff;
  background: #1d4ed8;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 980px;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
  font-size: clamp(52px, 8vw, 116px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  max-width: 860px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.08;
}

.hero-copy {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 650;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: clamp(22px, 4vw, 34px) 0;
}

.location-finder {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(100%, 520px);
  min-height: 42px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(3, 7, 18, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.location-finder strong {
  color: #fff;
  font-weight: 950;
}

.location-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.72);
}

.location-finder button {
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(143, 211, 255, 0.24);
  border-radius: 999px;
  color: #dbeafe;
  font-weight: 900;
  background: rgba(37, 99, 235, 0.18);
  cursor: pointer;
}

.location-finder button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(3, 7, 18, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hero-stats article {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  padding: 22px 20px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25px;
  width: 20%;
  height: 3px;
  background: #3b82f6;
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.58);
}

.hero-stats article:nth-child(2)::before {
  background: #22c55e;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.48);
}

.hero-stat-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  padding: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.hero-stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(143, 211, 255, 0.3));
}

.hero-stat-watermark {
  position: absolute;
  right: -18px;
  bottom: -24px;
  z-index: 0;
  display: block;
  width: clamp(92px, 10vw, 140px);
  height: clamp(92px, 10vw, 140px);
  opacity: 0.045;
  pointer-events: none;
  transform: rotate(-8deg);
}

.hero-stat-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero-stats article:last-child {
  border-right: 0;
}

.hero-stat-copy {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 0;
}

.hero-stat-copy strong,
.hero-stat-copy span {
  display: block;
}

.hero-stat-copy strong {
  font-size: 17px;
  font-weight: 950;
}

.hero-stat-copy span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 750;
}

.section,
.booking-section {
  width: min(var(--max), calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
  scroll-margin-top: 88px;
}

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

.section-head {
  max-width: 900px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.section-head-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.78fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
  max-width: none;
}

.section-head p:not(.kicker),
.booking-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.55;
}

.section-head-row > p {
  margin-bottom: 8px;
}

.services-section,
.proof-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding: clamp(86px, 10vw, 136px) var(--gutter);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 22%, rgba(59, 130, 246, 0.28), transparent 30%),
    radial-gradient(circle at 86% 78%, rgba(34, 197, 94, 0.18), transparent 32%),
    linear-gradient(135deg, #040814 0%, #081427 46%, #020510 100%);
}

.services-section::before,
.proof-section::before {
  content: "";
  display: none;
  position: absolute;
  top: 72px;
  right: var(--gutter);
  left: var(--gutter);
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.06), rgba(59, 130, 246, 0.66), rgba(34, 197, 94, 0.26));
  opacity: 0.72;
}

.services-section::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -18vw;
  width: 46vw;
  height: 46vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22), transparent 64%);
  pointer-events: none;
}

.proof-section {
  color: var(--ink);
  background: #fff;
}

.proof-section::after {
  content: none;
  position: absolute;
  right: -3vw;
  bottom: 20px;
  left: -3vw;
  color: transparent;
  font-size: clamp(52px, 8vw, 132px);
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  -webkit-text-stroke: 1px rgba(37, 99, 235, 0.08);
  pointer-events: none;
}

.services-section .section-head,
.proof-section .section-head,
.services-grid,
.proof-shell,
.proof-controls {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.services-section h2,
.proof-section h2 {
  color: #f8fbff;
  text-transform: uppercase;
}

.proof-section h2 {
  color: var(--ink);
}

.services-section .section-head p:not(.kicker),
.proof-section .section-head p:not(.kicker) {
  color: rgba(226, 232, 240, 0.62);
}

.proof-section .section-head p:not(.kicker) {
  color: var(--muted);
}

.services-section .kicker,
.proof-section .kicker {
  margin-bottom: clamp(44px, 7vw, 86px);
  box-shadow: none;
}

.services-section .kicker,
.reviews-section .kicker,
.faq-section .kicker {
  color: #dbeafe;
  border: 1px solid rgba(143, 211, 255, 0.28);
  background: rgba(143, 211, 255, 0.1);
}

.proof-section .kicker {
  color: #fff;
  border: 0;
  background: #1d4ed8;
}

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

.service-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(3, 7, 18, 0.92));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 28px;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(143, 211, 255, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(143, 211, 255, 0.18), rgba(37, 99, 235, 0.08)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 44px rgba(37, 99, 235, 0.14);
}

.service-icon {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 12px;
  border-radius: 18px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(143, 211, 255, 0.28));
}

.service-watermark {
  position: absolute;
  right: -28px;
  bottom: -30px;
  z-index: 0;
  display: block;
  width: clamp(170px, 17vw, 245px);
  height: clamp(170px, 17vw, 245px);
  opacity: 0.055;
  pointer-events: none;
  transform: rotate(-8deg);
}

.service-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-step {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(219, 234, 254, 0.14);
  border-radius: 999px;
  color: rgba(219, 234, 254, 0.82);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.34);
}

.service-card div {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 124px;
}

.service-card h3 {
  max-width: 330px;
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  text-transform: uppercase;
}

.service-card p {
  max-width: 360px;
  margin: 0;
  color: rgba(226, 232, 240, 0.72);
  font-weight: 650;
  line-height: 1.45;
}

.booking-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.booking-section::before,
.why-section::before,
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  pointer-events: none;
}

.booking-section::before {
  background: #fff;
}

.booking-copy .kicker {
  color: #fff;
}

.booking-copy {
  position: sticky;
  top: 104px;
}

.booking-frame-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
}

.booking-frame {
  display: block;
  width: 100%;
  height: 780px;
  border: 0;
  overflow: hidden;
  transition: height 180ms ease;
}

.proof-shell {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.42);
}

.proof-track {
  display: flex;
  transition: transform 420ms ease;
}

.proof-slide {
  min-width: 100%;
}

.result-slider {
  --split: 50%;
  position: relative;
  height: clamp(360px, 45vw, 560px);
  overflow: hidden;
  border-radius: 18px;
  background: #0b1220;
}

.result-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-after {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.result-after .result-image {
  width: 100%;
  max-width: none;
}

.result-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  background: #fff;
  transform: translateX(-1px);
  pointer-events: none;
}

.result-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}

.result-divider span::before,
.result-divider span::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
}

.result-divider span::before {
  transform: translateX(-7px) rotate(-45deg);
}

.result-divider span::after {
  transform: translateX(7px) rotate(135deg);
}

.result-slider input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.result-tag {
  position: absolute;
  top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(7, 11, 20, 0.64);
  backdrop-filter: blur(10px);
}

.result-tag-before {
  left: 18px;
}

.result-tag-after {
  right: 18px;
}

.review-controls,
.proof-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.review-controls button,
.proof-controls button {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(30, 58, 138, 0.22);
  border-radius: 999px;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  background: #1e3a8a;
  box-shadow: 0 14px 38px rgba(30, 58, 138, 0.18);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.proof-controls button {
  color: #fff;
  background: #1e3a8a;
  box-shadow: 0 14px 38px rgba(30, 58, 138, 0.18);
}

.review-controls button:hover,
.proof-controls button:hover {
  transform: translateY(-1px);
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.24);
}

.review-shell {
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  border-radius: 18px;
  background: var(--dark);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.12);
}

.reviews-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding: clamp(86px, 10vw, 126px) var(--gutter);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 10%, rgba(37, 99, 235, 0.26), transparent 28%),
    radial-gradient(circle at 84% 28%, rgba(14, 165, 233, 0.16), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(34, 197, 94, 0.1), transparent 34%),
    linear-gradient(180deg, #05030f 0%, #091126 54%, #030611 100%);
}

.reviews-section .section-head {
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.reviews-section h2 {
  color: #fff;
  text-transform: uppercase;
}

.reviews-section .section-head p:not(.kicker) {
  color: rgba(226, 232, 240, 0.62);
}

.reviews-section .kicker {
  box-shadow: none;
}

.google-review-link {
  justify-self: end;
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(143, 211, 255, 0.26);
  border-radius: var(--radius);
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  background: rgba(37, 99, 235, 0.22);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.google-review-link:hover {
  transform: translateY(-1px);
  border-color: rgba(147, 197, 253, 0.76);
  background: rgba(37, 99, 235, 0.44);
}

.review-track {
  display: flex;
  transition: transform 420ms ease;
}

.review-card {
  min-width: 100%;
  padding: clamp(34px, 7vw, 74px);
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.34), transparent 34%),
    linear-gradient(135deg, #070b14, #101827 58%, #0d2a62);
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  overflow: hidden;
  border: 1px solid rgba(143, 211, 255, 0.26);
  border-radius: 999px;
  color: #fff;
  font-weight: 950;
  background: rgba(37, 99, 235, 0.24);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card-head strong {
  display: block;
  color: #fff;
  font-size: 19px;
  font-weight: 950;
}

.review-meta {
  display: block;
  margin-top: 3px;
  color: rgba(226, 232, 240, 0.58);
  font-size: 14px;
  font-weight: 800;
}

.review-stars {
  display: inline-flex;
  margin-bottom: 22px;
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 0.12em;
}

.review-card p {
  max-width: 920px;
  margin-bottom: 28px;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

.review-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 850;
}

.review-source {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.08);
}

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

.why-section,
.faq-section {
  position: relative;
  isolation: isolate;
}

.why-section::before {
  background: #fff;
}

.faq-section::before {
  background:
    radial-gradient(circle at 14% 20%, rgba(37, 99, 235, 0.26), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(34, 197, 94, 0.13), transparent 30%),
    linear-gradient(150deg, #030611 0%, #071326 52%, #02040b 100%);
}

.faq-section h2 {
  color: #f8fbff;
}

.faq-section .kicker {
  box-shadow: none;
}

.why-grid article {
  position: relative;
  min-height: 310px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
}

.why-grid article::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  border: 24px solid rgba(37, 99, 235, 0.08);
  border-radius: 999px;
}

.why-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 48px;
  border-radius: 14px;
  color: var(--blue);
  font-weight: 950;
  background: var(--soft);
}

.why-grid p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(3, 7, 18, 0.76));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  padding: 24px 28px;
  color: #f8fbff;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.25;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: #8fd3ff;
  font-size: 26px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 900px;
  margin: 0;
  padding: 0 28px 28px;
  color: rgba(226, 232, 240, 0.68);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.55;
}

.footer-wrap {
  padding: 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.7fr);
  gap: clamp(36px, 7vw, 86px);
  width: min(var(--max), calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px);
}

.footer-brand-block p {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.footer-brand .brand-mark {
  width: 64px;
  height: 64px;
  flex-basis: 64px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
}

.footer-column h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.footer-column a {
  display: block;
  margin-top: 13px;
  color: #475569;
  font-weight: 650;
  line-height: 1.35;
}

.footer-bottom {
  display: flex;
  flex-direction:row;
  align-items:center; justify-content: center;
  padding: 24px var(--gutter);
  border-top: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.footer-bottom p {
  width: min(var(--max), calc(100% - 2 * var(--gutter)));
  margin: 0;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-weight: 650;
}

@media (max-width: 1020px) {
  .booking-section {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }

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

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

  .service-card {
    min-height: 340px;
  }

  .section-head-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
  }

  .menu-toggle {
    display: block;
    grid-column: 4;
    order: 4;
    justify-self: end;
  }

  .brand {
    grid-column: 1;
    order: 1;
    position: relative;
    z-index: 3;
  }

  .site-nav {
    grid-column: 1 / -1;
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(18px, 5vh, 34px);
    width: 100%;
    height: 100dvh;
    padding: 112px 24px 36px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    color: #eaf2ff;
    background:
      radial-gradient(circle at 18% 16%, rgba(37, 99, 235, 0.34), transparent 30%),
      radial-gradient(circle at 82% 78%, rgba(34, 197, 94, 0.16), transparent 32%),
      linear-gradient(155deg, #030611 0%, #071326 52%, #02040b 100%);
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-105%);
    transition:
      transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 360ms ease,
      visibility 0s linear 620ms;
    visibility: hidden;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 260ms ease,
      visibility 0s;
    visibility: visible;
  }

  .site-header.scrolled .site-nav,
  body.menu-open .site-nav {
    color: #eaf2ff;
  }

  .site-nav a {
    padding: 0;
    color: inherit;
    font-size: clamp(34px, 12vw, 62px);
    font-weight: 950;
    line-height: 0.92;
    text-transform: uppercase;
  }

  .header-cta {
    grid-column: 3;
    order: 3;
    position: relative;
    z-index: 3;
    justify-self: end;
    min-height: 44px;
    padding: 0 14px;
  }

  .hero {
    min-height: 690px;
    padding: 116px 16px 18px;
  }

  .hero-center {
    transform: translateY(-12px);
  }

  .hero-kicker::before,
  .hero-kicker::after {
    width: 28px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
  }

  .hero-stats article {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
    gap: 10px;
    padding: 18px 12px 14px;
  }

  .hero-stats article:nth-child(3) {
    display: none;
  }

  .hero-stats article:nth-child(2) {
    border-right: 0;
  }

  .hero-stat-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    padding: 7px;
  }

  .booking-frame {
    height: 920px;
  }

  .result-slider,
  .result-image {
    height: 320px;
  }

  .section-head-row {
    display: block;
  }

  .services-section,
  .proof-section,
  .reviews-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .services-section::before,
  .proof-section::before {
    right: 16px;
    left: 16px;
  }

  .services-section .kicker,
  .proof-section .kicker {
    margin-bottom: 30px;
  }

  .service-card {
    min-height: 310px;
  }

  .review-controls {
    margin-top: 20px;
  }

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

  .faq-list summary {
    gap: 16px;
    padding: 20px 18px;
    font-size: 18px;
  }

  .faq-list summary::after {
    font-size: 24px;
  }

  .faq-list p {
    padding: 0 18px 22px;
    font-size: 15px;
  }

  .why-grid article {
    min-height: 0;
  }

  .why-icon {
    margin-bottom: 28px;
  }

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

  .footer-bottom {
    display: block;
  }
}

@media (max-width: 460px) {
  .hero-actions {
    display: grid;
  }

  .hero-actions .btn-primary {
    width: min(290px, 100%);
  }

  .hero-actions .btn-ghost {
    display: none;
  }

  .review-controls,
  .proof-controls {
    display: flex;
    justify-content: center;
  }

  .review-controls button,
  .proof-controls button {
    width: 50px;
    flex: 0 0 50px;
  }
}
