
:root {
  --navy: #0b1f4d;
  --navy-2: #102a65;
  --blue: #1d76d2;
  --sky: #8dccff;
  --teal: #e6f6ff;
  --lime: #d9f53f;
  --white: #ffffff;
  --ink: #12284b;
  --muted: #63728c;
  --line: rgba(11, 31, 77, 0.12);
  --line-strong: rgba(11, 31, 77, 0.18);
  --soft: #f5fbff;
  --soft-2: #eef6ff;
  --shadow: 0 28px 80px rgba(12, 43, 94, 0.12);
  --shadow-lg: 0 36px 120px rgba(10, 45, 103, 0.18);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(141, 206, 255, 0.42), transparent 32%),
    radial-gradient(circle at top right, rgba(217, 245, 63, 0.15), transparent 20%),
    linear-gradient(180deg, #fbfeff 0%, #f4faff 54%, #f9fcff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
textarea { resize: vertical; }

.skip-link {
  position: fixed;
  left: 14px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
}
.skip-link:focus { top: 12px; }

.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { padding: 90px 0; }
.section-sm { padding: 64px 0; }

.page-section { scroll-margin-top: 112px; }
.main-nav a.is-active,
.main-nav a[aria-current="page"] {
  color: var(--navy);
  background: var(--soft-2);
}

.center-copy { text-align: center; }
.center-copy .section-title, .center-copy .section-copy { margin-inline: auto; }
.eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--blue);
}
.section-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.section-copy {
  margin: 18px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.bg-orb,
.bg-orb-2 {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.6;
  pointer-events: none;
  animation: blob 12s ease-in-out infinite;
}
.bg-orb {
  width: 220px;
  height: 220px;
  background: rgba(217, 245, 63, 0.23);
  top: 12%;
  left: -70px;
}
.bg-orb-2 {
  width: 260px;
  height: 260px;
  background: rgba(142, 204, 255, 0.32);
  right: -60px;
  bottom: 8%;
  animation-duration: 16s;
}
@keyframes blob {
  50% { transform: translateY(-18px) translateX(10px) scale(1.04); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 14px 0;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(11, 31, 77, 0.06);
}
.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 8px 12px rgba(11, 31, 77, 0.10));
}
.brand-text { display: grid; gap: 2px; }
.brand-text strong {
  color: var(--navy);
  font-size: 1.8rem;
  line-height: 1.1;
}
.brand-text span {
  color: var(--muted);
  font-size: 0.88rem;
  white-space: nowrap;
}
.main-nav { justify-self: center; }
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(11, 31, 77, 0.08);
  box-shadow: 0 10px 24px rgba(21, 56, 111, 0.07);
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.22s ease;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--navy);
  background: var(--soft-2);
}
.header-action { display: flex; align-items: center; gap: 14px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.9);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(20,50,98,0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--lime);
  color: var(--navy);
  box-shadow: 0 18px 32px rgba(217, 245, 63, 0.32);
}
.btn-primary:hover { box-shadow: 0 22px 42px rgba(217, 245, 63, 0.42); }
.btn-blue {
  background: linear-gradient(135deg, var(--blue), #4ba0ef);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(32, 106, 196, 0.26);
}
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.26);
}
.btn-outline {
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  border-color: var(--line);
}
.btn-header {
  min-height: 48px;
  padding-inline: 20px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 28px rgba(11, 31, 77, 0.16);
}

.hero-wrap { padding: 34px 0 22px; }
.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 56px 40px;
  border-radius: 42px;
  min-height: 720px;
  background: linear-gradient(135deg, #6ea7e6 0%, #79aeea 28%, #9cc3ef 65%, #dff6ff 100%);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.22), transparent 25%),
    radial-gradient(circle at 90% 20%, rgba(217,245,63,0.18), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.1), transparent 45%);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 3;
  margin-inline: auto;
  max-width: 900px;
}
.hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3.1rem, 8vw, 6.3rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}
.hero-copy h1 strong { color: var(--navy); display: inline-block; }
.hero-subtitle {
  margin: 22px auto 0;
  max-width: 780px;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: rgba(255,255,255,0.92);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.hero-visual {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 20px));
  margin: 42px auto 0;
}
.hero-visual img {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  filter: drop-shadow(0 45px 70px rgba(17, 44, 90, 0.18));
}
.floating-card,
.floating-card.small {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 24px 50px rgba(8, 44, 98, 0.18);
  animation: floatCard 4.5s ease-in-out infinite;
}
.floating-card strong { color: var(--navy); font-size: 1.2rem; }
.floating-card span { color: var(--muted); font-size: 0.86rem; }
.floating-card.small { animation-duration: 5.6s; }
.floating-card.left { left: 2%; bottom: 18%; }
.floating-card.right { right: 1.5%; top: 14%; }
@keyframes floatCard {
  50% { transform: translateY(-10px); }
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.trust-item {
  padding: 20px 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
  text-align: center;
  box-shadow: 0 12px 32px rgba(13, 52, 98, 0.06);
}
.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}
.trust-item span { color: var(--muted); font-size: 0.88rem; }

.story-zone {
  position: relative;
  margin-top: 22px;
}
.story-shell {
  position: relative;
  height: 560vh;
}
.story-sticky {
  position: sticky;
  top: 88px;
  min-height: calc(100vh - 108px);
  overflow: hidden;
  margin-inline: calc(50% - 50vw);
  padding: 0 clamp(18px, 3vw, 40px);
  background: linear-gradient(130deg, #071d47 0%, #0f3274 36%, #1d76d2 72%, #95cff6 100%);
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  max-width: 1440px;
  height: calc(100vh - 108px);
  margin: 0 auto;
}
.story-copy {
  color: var(--white);
  padding: 32px 0 32px 32px;
  max-width: 520px;
}
.story-copy .eyebrow { color: var(--lime); }
.story-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  font-weight: 800;
  margin-bottom: 18px;
}
.story-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.25vw, 4.45rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.story-copy h2.is-long {
  font-size: clamp(2rem, 3.45vw, 3.65rem);
  line-height: 1;
}
.story-copy.is-changing h2,
.story-copy.is-changing [data-story-body],
.story-copy.is-changing [data-story-facts] {
  opacity: 0.35;
  transform: translateY(4px);
}
.story-copy p {
  margin: 16px 0 0;
  color: rgba(255,255,255,0.84);
  font-size: 1.04rem;
  max-width: 520px;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.story-facts {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  max-width: 540px;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.story-facts li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,0.88);
}
.story-facts li::before {
  content: "✓";
  color: var(--lime);
  font-weight: 900;
}
.story-progress {
  width: min(360px, 100%);
  height: 7px;
  margin-top: 28px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  overflow: hidden;
}
.story-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--lime);
  border-radius: inherit;
}
.story-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.canvas-card {
  position: relative;
  width: 100%;
  height: min(82vh, 820px);
  border-radius: 40px;
  overflow: hidden;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 28px 80px rgba(0, 10, 40, 0.26);
  backdrop-filter: blur(8px);
}
#implantCanvas {
  width: 100%;
  height: 100%;
  display: block;
}
.canvas-note {
  position: absolute;
  left: 24px;
  bottom: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.86rem;
}
.story-controller {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  max-width: 540px;
}
.story-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1.4rem;
  transition: 0.2s ease;
}
.story-arrow:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.story-current {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 8px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(217,245,63,0.34);
  color: var(--white);
  text-align: center;
  font-weight: 800;
}
.story-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  max-width: 540px;
}
.story-dot {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.82);
  font-size: 0.8rem;
  font-weight: 800;
  transition: 0.2s ease;
}
.story-dot:hover,
.story-dot.active {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
  transform: translateY(-2px);
}

.info-grid,
.services-grid,
.grid-2,
.contact-grid {
  display: grid;
  gap: 22px;
}
.info-grid { grid-template-columns: repeat(3, 1fr); }
.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.contact-grid { grid-template-columns: 1.15fr 0.85fr; }

.info-card,
.service-card,
.split-card,
.form-card,
.contact-card,
.page-hero-card,
.cta-panel,
.stats-card,
.detail-card,
.booking-note,
.mini-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.info-card,
.service-card,
.detail-card,
.mini-card {
  padding: 28px;
}
.info-card h3,
.service-card h3,
.detail-card h3,
.mini-card h3 { margin: 0 0 10px; color: var(--navy); }
.info-card p,
.service-card p,
.detail-card p,
.mini-card p { margin: 0; color: var(--muted); }

.service-card {
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(12, 48, 96, 0.14);
}
.service-card img {
  width: 118px;
  height: 94px;
  margin: 0 auto 20px;
  object-fit: contain;
}
.service-card-body a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}

.page-hero { padding: 38px 0 10px; }
.page-hero-card {
  padding: 54px 28px;
  text-align: center;
  background: linear-gradient(135deg, #0d2d66 0%, #1c73d1 70%, #86c9ff 100%);
  color: var(--white);
}
.page-hero-card .eyebrow { color: var(--lime); }
.page-hero-card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}
.page-hero-card p {
  max-width: 760px;
  margin: 16px auto 0;
  color: rgba(255,255,255,0.86);
}

.split-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
}
.split-visual {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  background: linear-gradient(145deg, #eaf6ff 0%, #cfe9ff 100%);
}
.doctor-mark {
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), #2f8ce8);
  color: var(--white);
  font-size: 5rem;
  font-weight: 900;
  box-shadow: 0 26px 60px rgba(18, 63, 123, 0.22);
}
.split-copy {
  padding: clamp(28px, 4vw, 54px);
}
.credential-list {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.credential-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
}
.credential-list li::before {
  content: "•";
  color: var(--blue);
  font-size: 1.2rem;
  line-height: 1;
}

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stats-card {
  padding: 24px;
  text-align: center;
}
.stats-card strong {
  display: block;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}
.stats-card span { display: block; margin-top: 8px; color: var(--muted); }

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 36px;
  background: linear-gradient(135deg, var(--navy) 0%, #1d76d2 100%);
  color: var(--white);
}
.cta-panel h2 { margin: 0; font-size: clamp(1.9rem, 3vw, 3rem); line-height: 1.04; }
.cta-panel p { margin: 12px 0 0; color: rgba(255,255,255,0.82); }

.form-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 24px; align-items: start; }
.form-card {
  padding: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,251,255,0.96));
}
.form-card::before,
.contact-card::before,
.booking-note::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(141,204,255,0.16);
  filter: blur(6px);
  transform: translate(-22%, 25%);
}
.form-card h2 { margin: 0; color: var(--navy); font-size: clamp(2rem, 4vw, 3rem); }
.form-note { margin: 10px 0 0; color: var(--muted); }
.form-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.field { display: grid; gap: 10px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-weight: 800; font-size: 0.95rem; }
.field-help { color: var(--muted); font-size: 0.8rem; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 18px;
  border: 1px solid rgba(11, 31, 77, 0.12);
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.field textarea { min-height: 140px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(29, 118, 210, 0.6);
  box-shadow: 0 0 0 4px rgba(29,118,210,0.12);
}
.slot-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.slot-option {
  position: relative;
}
.slot-option input {
  position: absolute;
  opacity: 0;
  inset: 0;
}
.slot-option label {
  display: grid;
  gap: 4px;
  min-height: 92px;
  padding: 16px 18px;
  border: 1px solid rgba(11, 31, 77, 0.12);
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  transition: 0.2s ease;
  cursor: pointer;
}
.slot-option label strong { font-size: 1rem; }
.slot-option label span { color: var(--muted); font-weight: 600; }
.slot-option input:checked + label {
  border-color: rgba(29, 118, 210, 0.65);
  background: linear-gradient(135deg, rgba(29, 118, 210, 0.12), rgba(217, 245, 63, 0.14));
  box-shadow: 0 16px 30px rgba(29,118,210,0.14);
}
.consent-check {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(11, 31, 77, 0.1);
  background: rgba(255,255,255,0.78);
}
.consent-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.consent-box {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 2px solid rgba(11, 31, 77, 0.24);
  background: var(--white);
  transition: 0.2s ease;
}
.consent-box::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 7px;
  height: 14px;
  border-right: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(38deg) scale(0);
  transition: 0.18s ease;
}
.consent-check input:checked + .consent-box {
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--blue), #44a0f3);
  box-shadow: 0 12px 24px rgba(29,118,210,0.24);
}
.consent-check input:checked + .consent-box::after {
  transform: rotate(38deg) scale(1);
}
.consent-text {
  color: var(--muted);
  font-size: 0.95rem;
}
.form-submit-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}
.form-status {
  min-height: 24px;
  font-weight: 700;
  color: var(--muted);
}
.form-status.success { color: #1d8b50; }
.form-status.error { color: #c8313b; }
.contact-card { padding: 24px; }
.contact-card-inner,
.booking-note,
.mini-card { position: relative; z-index: 2; }
.contact-banner {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 220px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(145deg, #0c2b66, #1c73d1 70%, #7cc0fa);
  color: var(--white);
}
.contact-banner strong { font-size: 1.55rem; line-height: 1.08; }
.contact-banner p { margin: 12px 0 0; color: rgba(255,255,255,0.86); }
.booking-note,
.mini-card {
  margin-top: 18px;
  padding: 24px;
}
.contact-list {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.contact-list li {
  list-style: none;
  display: grid;
  gap: 3px;
  color: var(--ink);
}
.contact-list small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}
.contact-list a,
.contact-list address,
.contact-list strong { font-style: normal; font-weight: 700; }
.quick-points { margin: 16px 0 0; padding: 0; display: grid; gap: 10px; }
.quick-points li { list-style: none; color: var(--muted); }
.quick-points li::before { content: "• "; color: var(--blue); font-weight: 900; }

.site-footer {
  margin-top: 40px;
  padding: 36px 0 24px;
  border-top: 1px solid rgba(11, 31, 77, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.64), rgba(244,249,255,0.94));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 24px;
}
.footer-col h3 { margin: 0 0 12px; color: var(--navy); font-size: 1rem; }
.footer-col p,
.footer-col a { display: block; color: var(--muted); margin: 0 0 10px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.footer-logo strong { color: var(--navy); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(11,31,77,0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.honeypot { position: absolute !important; left: -9999px !important; }
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 1101px) and (max-height: 850px) {
  .story-sticky {
    top: 82px;
    min-height: calc(100vh - 92px);
  }
  .story-grid {
    height: calc(100vh - 92px);
    gap: 26px;
  }
  .story-copy {
    padding: 16px 0 16px 20px;
    max-width: 520px;
  }
  .story-copy .eyebrow {
    margin-bottom: 6px;
    font-size: 0.7rem;
  }
  .story-pill {
    min-height: 34px;
    padding-inline: 13px;
    margin-bottom: 10px;
    font-size: 0.84rem;
  }
  .story-copy h2 {
    font-size: clamp(2.05rem, 3.45vw, 3.65rem);
  }
  .story-copy h2.is-long {
    font-size: clamp(1.85rem, 2.8vw, 3rem);
  }
  .story-copy p {
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.45;
  }
  .story-facts {
    gap: 5px;
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.4;
  }
  .story-progress {
    margin-top: 12px;
  }
  .story-controller {
    margin-top: 12px;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 10px;
  }
  .story-arrow {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
  .story-current {
    min-height: 42px;
    padding: 6px 12px;
    font-size: 0.88rem;
  }
  .story-dots {
    gap: 6px;
    margin-top: 8px;
  }
  .story-dot {
    width: 28px;
    height: 28px;
    font-size: 0.72rem;
  }
  .canvas-card {
    height: min(76vh, 660px);
  }
}

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .info-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid,
  .split-card,
  .form-layout,
  .contact-grid { grid-template-columns: 1fr; }
  .story-copy {
    max-width: none;
    padding: 32px 0 10px;
    text-align: center;
    margin-inline: auto;
  }
  .story-progress { margin-inline: auto; }
  .story-facts { max-width: 680px; margin-inline: auto; }
  .story-sticky { top: 82px; min-height: calc(100vh - 98px); }
  .story-grid { height: auto; min-height: calc(100vh - 98px); padding: 18px 0 26px; }
  .canvas-card { height: min(58vh, 640px); }
  .cta-panel { flex-direction: column; text-align: center; }
}

@media (max-width: 920px) {
  .header-row {
    grid-template-columns: auto auto 1fr;
  }
  .menu-toggle { display: inline-grid; order: 3; justify-self: end; }
  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    padding: 14px;
  }
  .main-nav a { justify-content: flex-start; }
  .header-action { display: none; }
  .hero { padding: 72px 24px 30px; min-height: unset; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .floating-card.left { left: 0; bottom: 12%; }
  .floating-card.right { right: 0; top: 11%; }
}

@media (max-width: 720px) {
  .section { padding: 74px 0; }
  .hero-copy h1 { font-size: clamp(2.6rem, 14vw, 4.4rem); }
  .hero-actions, .hero-badges { flex-direction: column; align-items: center; }
  .trust-bar,
  .services-grid,
  .info-grid,
  .grid-2,
  .stats-grid,
  .form-grid,
  .slot-options,
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero-card { padding: 42px 20px; }
  .form-card,
  .contact-card { padding: 22px; }
  .floating-card.left,
  .floating-card.right {
    position: static;
    margin: 14px auto 0;
    max-width: 280px;
  }
  .story-shell { height: 430vh; }
  .story-copy h2 { font-size: clamp(2.2rem, 9vw, 3.6rem); }
  .canvas-card { height: 44vh; min-height: 280px; }
  .story-copy { padding-inline: 0; }
}
