:root {
  --ink: #13293a;
  --navy: #13293a;
  --blue: #72b8d0;
  --teal: #4f9097;
  --green: #00524f;
  --pale: #d6f4f3;
  --soft: #e9f6fb;
  --line: #d5d5d5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

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

button,
input {
  font: inherit;
}

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

[hidden] {
  display: none !important;
}

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

h1,
h2,
h3 {
  font-family: "Sora", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.section-x {
  width: min(100%, 1728px);
  margin-inline: auto;
  padding-inline: clamp(40px, 5.4vw, 100px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(176px, 1fr) auto minmax(176px, 1fr);
  align-items: center;
  column-gap: clamp(18px, 2.4vw, 42px);
  min-height: 96px;
  border-bottom: 1px solid rgba(114, 184, 208, 0.22);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  padding: 16px clamp(28px, 5vw, 82px);
  box-shadow: 0 14px 38px rgba(19, 41, 58, 0.07);
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: clamp(176px, 14vw, 236px);
}

.logo img {
  width: 100%;
  height: auto;
}

.menu-toggle {
  display: none;
}

.menu-state {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.header-menu {
  display: contents;
}

.header-links {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: clamp(12px, 1.35vw, 24px);
  min-width: 0;
}

.header-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 10px;
  color: #314e5f;
  font-size: clamp(13px, 0.9vw, 15px);
  font-weight: 800;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.header-links a:hover {
  background: var(--soft);
  color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  flex: 0 0 auto;
  gap: 10px;
  border: 1px solid rgba(114, 184, 208, 0.24);
  border-radius: 999px;
  background: rgba(233, 246, 251, 0.72);
  padding: 8px;
}

.nav-pill,
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 24px;
  color: #fff;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(19, 41, 58, 0.1);
  transition: box-shadow 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

.nav-pill:hover,
.hero-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(19, 41, 58, 0.14);
}

.nav-pill.call {
  background: var(--teal);
}

.nav-pill.book,
.hero-btn.dark {
  background: var(--navy);
}

.nav-pill.whatsapp {
  background: var(--green);
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: clamp(660px, 76vh, 780px);
  margin-inline: 0;
  border-radius: 0;
  padding-inline: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.hero > picture,
.hero > picture img,
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 28%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 84%, rgba(214, 244, 243, 0.35), transparent 30%),
    linear-gradient(90deg, rgba(19, 41, 58, 0.93) 0%, rgba(0, 82, 79, 0.85) 35%, rgba(114, 184, 208, 0.44) 63%, rgba(255, 255, 255, 0.04) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  left: -260px;
  bottom: -340px;
  width: 720px;
  height: 720px;
  background: rgba(114, 184, 208, 0.2);
}

.hero::after {
  left: clamp(330px, 38vw, 720px);
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(214, 244, 243, 0.28);
  background: rgba(214, 244, 243, 0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 66vw);
  padding: clamp(88px, 8vw, 128px) 0 clamp(74px, 6vw, 104px) clamp(32px, 6.2vw, 110px);
  color: #fff;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 4.6vw, 78px);
  font-weight: 600;
  line-height: 1.02;
  text-wrap: balance;
}

.hero p {
  max-width: 680px;
  margin-top: 22px;
  color: #fff;
  font-size: clamp(16px, 1.07vw, 20px);
  font-weight: 400;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-btn {
  min-height: 58px;
  padding-inline: 28px;
  border: 1px solid transparent;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.hero-btn.light {
  background: #fff;
  color: var(--navy);
}

.hero-btn.dark {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(19, 41, 58, 0.64);
  backdrop-filter: blur(12px);
}

.hero .hero-credit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.hero .hero-credit a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  padding: 0 14px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.hero .hero-credit a:hover {
  background: #fff;
  transform: translateY(-1px);
}

.journey {
  display: grid;
  grid-template-columns: minmax(330px, 520px) minmax(520px, 1fr);
  gap: 50px;
  align-items: start;
  padding-top: 110px;
  padding-bottom: 130px;
}

.journey-image {
  overflow: hidden;
  border-radius: 40px;
}

.journey-image img {
  width: 100%;
  height: 763px;
  object-fit: cover;
  object-position: center;
}

.eyebrow {
  color: #00524f;
  font-size: clamp(15px, 1.25vw, 24px);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.05;
  text-transform: uppercase;
}

.journey-copy {
  padding-top: 8px;
}

.journey-copy .eyebrow {
  color: var(--blue);
}

.journey-copy h2,
.section-center h2 {
  margin-top: 6px;
  color: var(--navy);
  font-size: clamp(34px, 2.55vw, 44px);
  line-height: 1.1;
}

.section-copy,
.journey-copy > p:not(.eyebrow) {
  max-width: 900px;
  margin-top: 16px;
  color: #111;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
}

.journey-cards {
  display: grid;
  gap: 24px;
  margin-top: 17px;
}

.journey-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  border: 1px solid #bcbcbc;
  border-radius: 22px;
  background: #fff;
  padding: 24px 28px 24px 53px;
}

.journey-card.active {
  min-height: 133px;
  border: 0;
  background: var(--blue);
  color: #fff;
}

.journey-card h3 {
  color: inherit;
  font-size: clamp(25px, 1.8vw, 33px);
  line-height: 1.08;
}

.journey-card p {
  margin-top: 12px;
  color: #e9f8fb;
  font-size: 20px;
  font-weight: 300;
}

.journey-card span {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--pale);
  color: var(--navy);
  font-size: 22px;
}

.journey-card.active span {
  background: #fff;
}

.gaps {
  overflow: hidden;
  border-radius: 70px;
  background: var(--pale);
  padding-top: 64px;
  padding-bottom: 58px;
}

.section-center {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.section-center p:not(.eyebrow) {
  margin-top: 16px;
  color: #1b2f3e;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
}

.gaps .section-center h2 {
  font-size: clamp(38px, 3.1vw, 54px);
  line-height: 1.18;
}

.gap-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-top: 59px;
}

.gap-card {
  min-height: 333px;
  border-radius: 19px;
  padding: 28px 22px 24px;
  color: #fff;
}

.gap-card.light {
  background: #fff;
  color: #101010;
}

.gap-card.blue {
  background: var(--blue);
}

.gap-card.navy {
  background: var(--navy);
}

.gap-card.teal {
  background: var(--teal);
}

.gap-card.green {
  background: var(--green);
}

.icon,
.build-icon,
.faq-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font-family: "Sora", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.gap-card.light .icon {
  background: var(--blue);
}

.gap-card h3 {
  margin-top: 22px;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(15px, 1.02vw, 19px);
  font-weight: 700;
  line-height: 1.14;
}

.gap-card p {
  margin-top: 12px;
  font-size: clamp(11px, 0.77vw, 14px);
  font-weight: 400;
  line-height: 1.23;
}

.bucket,
.clarity {
  position: relative;
  overflow: hidden;
  background: #79bac3;
  color: #fff;
  text-align: center;
}

.bucket {
  min-height: 584px;
  padding: 128px clamp(24px, 15vw, 360px) 90px;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(54, 129, 144, 0.25);
}

.bucket .circle.one {
  left: -170px;
  top: -170px;
  width: 860px;
  height: 860px;
}

.bucket .circle.two {
  right: -150px;
  bottom: -350px;
  width: 780px;
  height: 780px;
}

.bucket p {
  position: relative;
  z-index: 1;
  font-size: clamp(38px, 3.15vw, 56px);
  font-weight: 300;
  line-height: 1.42;
}

.bucket strong {
  font-weight: 700;
}

.bucket span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 36px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.bucket a,
.clarity a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  margin-top: 45px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 9px;
  padding: 0 28px;
  color: #fff;
  font-size: clamp(26px, 2vw, 38px);
  font-weight: 300;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.bucket a:hover,
.clarity a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.build {
  display: grid;
  grid-template-columns: minmax(380px, 670px) minmax(560px, 1fr);
  gap: 60px;
  overflow: hidden;
  background: var(--pale);
  padding: 130px 0 115px clamp(70px, 7vw, 134px);
}

.build-heading {
  align-self: center;
}

.build-heading h2 {
  margin-top: 31px;
  color: var(--navy);
  font-size: clamp(58px, 5.1vw, 88px);
  font-weight: 300;
  line-height: 1.07;
}

.build-heading h2 strong {
  font-weight: 700;
}

.included-carousel {
  display: flex;
  width: max-content;
  margin-top: 58px;
  overflow: hidden;
  border: 1px solid var(--navy);
  border-radius: 999px;
}

.included-carousel button {
  display: grid;
  width: 66px;
  height: 61px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  font-size: 48px;
  line-height: 1;
}

.included-carousel button:disabled {
  color: #8fa9b7;
}

.included-slider {
  overflow: hidden;
  min-width: 0;
}

.build-track {
  display: grid;
  grid-auto-columns: 476px;
  grid-auto-flow: column;
  gap: 46px;
  transition: transform 320ms ease;
  will-change: transform;
}

.build-card {
  min-height: 488px;
  border: 1px solid #bdbdbd;
  border-radius: 29px;
  background: #fff;
  padding: 40px 44px 34px;
}

.build-icon {
  background: var(--navy);
  color: #fff;
}

.build-card h3 {
  margin-top: 31px;
  color: var(--navy);
  font-family: "Inter", Arial, sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.06;
}

.build-card p,
.build-card li {
  color: #0f1c28;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.24;
}

.build-card p {
  margin-top: 17px;
}

.build-card ul {
  margin: 4px 0 0;
  padding-left: 20px;
}

.build-card .note {
  border-radius: 8px;
  background: var(--pale);
  padding: 19px 20px;
  font-weight: 600;
}

.steps {
  padding-top: 80px;
  padding-bottom: 100px;
}

.steps .section-center {
  width: min(760px, 100%);
}

.steps .section-center h2 {
  font-size: clamp(40px, 3.15vw, 56px);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(44px, 6vw, 105px);
  margin-top: 88px;
}

.step-grid article {
  position: relative;
}

.step-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 48px;
  left: 120px;
  width: calc(100% + 38px);
  border-top: 2px dotted var(--navy);
}

.step-grid article:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 43px;
  right: -53px;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy);
}

.step-grid span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 99px;
  height: 99px;
  place-items: center;
  border-radius: 29px;
  background: var(--navy);
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}

.step-grid h3 {
  margin-top: 28px;
  color: var(--navy);
  font-size: clamp(28px, 2vw, 36px);
  font-weight: 400;
  line-height: 1.08;
}

.step-grid p {
  margin-top: 20px;
  color: #111;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.46;
}

.faq {
  background: #e8f5fb;
  padding-top: 82px;
  padding-bottom: 112px;
}

.faq .section-center h2 {
  font-size: clamp(40px, 3vw, 56px);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
  margin-top: 68px;
}

.faq-grid article {
  min-height: 366px;
  border: 1px solid #d3d3d3;
  border-radius: 24px;
  background: #fff;
  padding: 50px 45px 38px;
}

.faq-icon {
  background: var(--green);
  color: #fff;
}

.faq-grid h3 {
  margin-top: 38px;
  color: var(--navy);
  font-family: "Inter", Arial, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.08;
}

.faq-grid p {
  margin-top: 22px;
  color: #111;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

.clarity {
  min-height: 511px;
  padding: 67px clamp(24px, 26vw, 450px) 58px;
}

.clarity .circle.one {
  left: 145px;
  top: -630px;
  width: 1030px;
  height: 1030px;
}

.clarity .circle.two {
  left: -70px;
  bottom: -580px;
  width: 1080px;
  height: 1080px;
}

.clarity .eyebrow {
  position: relative;
  z-index: 1;
  color: #fff;
}

.clarity h2 {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  color: #fff;
  font-size: clamp(38px, 3.2vw, 58px);
  line-height: 1.42;
}

.clarity p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  margin-top: 25px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
}

.clarity a {
  min-width: 434px;
  margin-top: 38px;
}

.clarity span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 27px;
  font-size: 14px;
  font-weight: 300;
}

.trust {
  padding-top: 82px;
  padding-bottom: 96px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.trust-grid article {
  border: 1px solid #d3d3d3;
  border-radius: 24px;
  background: #fff;
  padding: 30px 28px;
}

.trust-grid h3 {
  color: var(--navy);
  font-family: "Inter", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.trust-grid p {
  margin-top: 14px;
  color: #111;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.42;
}

.booking {
  padding-top: 118px;
  padding-bottom: 116px;
}

.booking-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 660px) minmax(480px, 1fr);
  overflow: hidden;
  border-radius: 33px;
  background: var(--navy);
  padding: 9px 11px 9px 83px;
}

.booking-panel::before,
.booking-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(77, 139, 162, 0.22);
}

.booking-panel::before {
  left: -180px;
  top: -330px;
  width: 720px;
  height: 720px;
}

.booking-panel::after {
  left: 100px;
  bottom: -410px;
  width: 650px;
  height: 650px;
}

.booking-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  color: #fff;
  padding-right: 28px;
}

.outline-pill,
.call-pill,
.calendar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 0 36px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.18s ease, opacity 0.18s ease;
}

.outline-pill:hover,
.call-pill:hover {
  background: rgba(255, 255, 255, 0.1);
}

.calendar-cta:not(:disabled):hover {
  opacity: 0.88;
}

.booking-copy h2 {
  margin-top: 53px;
  color: #fff;
  font-size: clamp(56px, 4.8vw, 82px);
  line-height: 1.12;
}

.booking-copy > p {
  margin-top: 24px;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.46;
}

.host {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.host > span {
  display: grid;
  width: 75px;
  height: 75px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #83c2d7, #27495c);
  font-family: "Sora", Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.host h3 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.host p {
  margin-top: 6px;
  color: #b7c6d3;
  font-size: 16px;
  font-weight: 300;
}

.call-pill {
  min-height: 65px;
  margin-top: 39px;
  font-size: 20px;
}

.calendar {
  position: relative;
  z-index: 1;
  min-height: 764px;
  border: 9px solid var(--navy);
  border-radius: 24px;
  background: #fff;
  padding: 66px clamp(34px, 4.4vw, 82px) 72px;
}

.calendar [data-booking-flow] {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calendar-head h3 {
  color: var(--navy);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(30px, 2.1vw, 36px);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.02;
  text-transform: uppercase;
}

.calendar-head h3 span {
  color: #9fb9ca;
}

.calendar-switch {
  display: flex;
  width: 62px;
  height: 29px;
  overflow: hidden;
  border: 1px solid #000;
  border-radius: 999px;
}

.calendar-switch button {
  width: 50%;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
}

.days,
.booking-date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.days {
  gap: 8px;
  margin-top: 42px;
  text-align: center;
}

.days b {
  color: var(--navy);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.days b:first-child,
.days b:last-child {
  color: #9fb9ca;
}

.booking-date-grid {
  gap: 24px 8px;
  margin-top: 34px;
  text-align: center;
}

.booking-date-btn,
.booking-slot-btn {
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-family: "Inter", Arial, sans-serif;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.booking-date-btn {
  display: grid;
  min-height: 52px;
  place-items: center;
  padding: 8px;
}

.booking-date-number {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.booking-date-day {
  display: none;
}

.booking-date-btn:disabled {
  color: #9fb9ca;
  cursor: default;
}

.booking-date-btn:not(:disabled),
.booking-date-btn.is-selected {
  background: #e8eaee;
}

.booking-date-btn:not(:disabled):hover,
.booking-date-btn.is-selected,
.booking-slot-btn:hover,
.booking-slot-btn.is-selected {
  background: var(--navy);
  color: #fff;
}

.booking-date-spacer {
  min-height: 52px;
}

.booking-loading,
.booking-empty,
.booking-fallback,
.booking-error,
.booking-summary,
.booking-label,
.booking-help {
  margin-top: 28px;
  color: #314655;
  font-size: 15px;
  line-height: 1.45;
}

.booking-fallback {
  display: none;
}

.booking-loading,
.booking-empty,
.booking-fallback {
  border-radius: 16px;
  background: #eef7f9;
  padding: 18px 20px;
}

[data-booking-dates-group],
[data-booking-slots-group] {
  flex: 1;
}

[data-booking-slots-group] {
  overflow: auto;
}

.booking-label {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.booking-slot-btn {
  min-height: 46px;
  border-color: #d6e0e7;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 700;
}

.booking-back {
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-form {
  margin-top: 24px;
}

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

.booking-form label {
  display: grid;
  gap: 7px;
  color: #546675;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d6e0e7;
  border-radius: 12px;
  padding: 0 14px;
  color: var(--navy);
}

.booking-form > label {
  margin-top: 12px;
}

.booking-summary {
  border-radius: 14px;
  background: #e6e7eb;
  padding: 14px 16px;
  font-weight: 700;
}

.booking-error {
  border-radius: 12px;
  background: #fff1f1;
  color: #8a1f1f;
  padding: 12px 14px;
}

.booking-form .calendar-cta,
.calendar-cta {
  min-height: 65px;
  margin-top: 42px;
  border: 0;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
}

.calendar-static-cta {
  align-self: flex-end;
  width: max-content;
  margin-top: auto;
}

.booking-form .calendar-cta {
  width: 100%;
  margin-top: 18px;
}

.calendar-cta:disabled {
  opacity: 0.65;
  cursor: wait;
}

.booking-success {
  display: grid;
  min-height: 520px;
  place-content: center;
  text-align: center;
}

.booking-success span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}

.booking-success h3 {
  color: var(--navy);
  font-size: 30px;
}

.booking-success p {
  max-width: 360px;
  margin: 14px auto 0;
  line-height: 1.45;
}

.info-hero {
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(115deg, rgba(19, 41, 58, 0.96), rgba(0, 82, 79, 0.88)),
    url("assets/outcomes-doctor.png") center 38% / cover;
  color: #fff;
  padding: clamp(74px, 8vw, 124px) clamp(24px, 6vw, 104px);
}

.info-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(214, 244, 243, 0.26);
  border-radius: 50%;
  background: rgba(214, 244, 243, 0.08);
  pointer-events: none;
}

.info-hero-inner {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
}

.page-kicker {
  color: var(--pale);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-hero .page-kicker {
  margin-top: 0;
  color: var(--pale);
  font-size: 14px;
  line-height: 1;
}

.info-hero h1 {
  margin-top: 12px;
  max-width: 820px;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 600;
  line-height: 1.03;
}

.info-hero p {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.2vw, 21px);
  line-height: 1.55;
}

.info-content {
  width: min(1180px, 100%);
  margin-inline: auto;
  padding: clamp(52px, 7vw, 96px) clamp(22px, 5vw, 88px);
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}

.info-article {
  display: grid;
  gap: 30px;
}

.info-section {
  border-bottom: 1px solid rgba(19, 41, 58, 0.12);
  padding-bottom: 30px;
}

.info-section h2 {
  color: var(--navy);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 600;
  line-height: 1.15;
}

.info-section h3 {
  margin-top: 22px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 700;
}

.info-section p,
.info-section li {
  color: #354b58;
  font-size: 17px;
  line-height: 1.72;
}

.info-section p {
  margin-top: 14px;
}

.info-section ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 22px;
}

.info-aside {
  position: sticky;
  top: 124px;
  border-left: 3px solid var(--blue);
  padding-left: 22px;
}

.info-aside h2 {
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
}

.info-aside nav {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.info-aside a {
  color: #486273;
  font-size: 15px;
  font-weight: 700;
}

.info-aside a:hover {
  color: var(--teal);
}

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

.blog-card {
  display: grid;
  align-content: start;
  min-height: 300px;
  border: 1px solid rgba(19, 41, 58, 0.13);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 18px 42px rgba(19, 41, 58, 0.08);
}

.blog-card span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-top: 14px;
  color: var(--navy);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.blog-card p {
  margin-top: 14px;
  color: #405866;
  font-size: 16px;
  line-height: 1.6;
}

.blog-card a {
  margin-top: 22px;
  color: var(--green);
  font-weight: 800;
}

.coming-soon {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid rgba(19, 41, 58, 0.13);
  border-radius: 8px;
  background: #fff;
  padding: clamp(42px, 7vw, 86px) clamp(22px, 5vw, 64px);
  text-align: center;
  box-shadow: 0 18px 42px rgba(19, 41, 58, 0.08);
}

.coming-soon .page-kicker {
  color: var(--teal);
}

.coming-soon h2 {
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700;
  line-height: 1;
}

.coming-soon p:not(.page-kicker) {
  max-width: 560px;
  margin-top: 18px;
  color: #405866;
  font-size: 18px;
  line-height: 1.6;
}

.careers-hero {
  background:
    linear-gradient(115deg, rgba(19, 41, 58, 0.95), rgba(79, 144, 151, 0.76)),
    url("assets/hero-doctor.png") center 35% / cover;
}

.careers-soon {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  border: 1px solid rgba(19, 41, 58, 0.12);
  border-radius: 8px;
  background: #fff;
  padding: clamp(24px, 4.6vw, 58px);
  box-shadow: 0 18px 42px rgba(19, 41, 58, 0.08);
}

.careers-soon-copy .page-kicker {
  color: var(--teal);
}

.careers-soon-copy h2 {
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 700;
  line-height: 1.05;
}

.careers-soon-copy p:not(.page-kicker) {
  max-width: 560px;
  margin-top: 18px;
  color: #405866;
  font-size: 18px;
  line-height: 1.62;
}

.careers-soon-copy .hero-btn {
  margin-top: 26px;
  min-height: 52px;
  box-shadow: 0 14px 28px rgba(19, 41, 58, 0.14);
}

.careers-soon-image {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1.18;
  background: #e9f6fb;
}

.careers-soon-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.footer-built-by {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.footer-built-by span {
  color: #111;
  font-size: 16px;
  font-weight: 800;
}

.footer-built-by a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(19, 41, 58, 0.18);
  border-radius: 999px;
  background: #fff;
  padding: 0 16px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.footer-built-by a:hover {
  border-color: rgba(79, 144, 151, 0.55);
  background: var(--soft);
  transform: translateY(-1px);
}

.footer {
  background: #eceaea;
  padding: 58px clamp(40px, 4.6vw, 83px) 54px;
}

.newsletter {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  border-radius: 40px;
  background: var(--green);
  color: #fff;
  padding: 67px 104px 64px;
}

.newsletter h2 {
  max-width: 510px;
  font-size: clamp(52px, 4vw, 76px);
  line-height: 1.05;
}

.newsletter p {
  max-width: 720px;
  margin-top: 25px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
}

.newsletter form label {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 18px;
}

.newsletter form div {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 40px;
}

.newsletter input {
  width: 100%;
  min-height: 76px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  padding: 0 42px;
  font-size: 19px;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter button {
  min-height: 76px;
  border: 0;
  border-radius: 999px;
  background: #d9ff9d;
  color: #111;
  cursor: pointer;
  font-size: 17px;
  text-transform: uppercase;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 180px 230px;
  gap: 80px;
  padding: 70px clamp(24px, 8.1vw, 104px) 50px;
}

.footer-main h2 {
  color: #000;
  font-size: 64px;
  font-family: "Inter", Arial, sans-serif;
}

.footer-logo {
  width: min(292px, 100%);
  height: auto;
}

.footer-main p {
  max-width: 520px;
  margin-top: 16px;
  color: #111;
  font-size: 16px;
  line-height: 1.35;
}

.footer-main h3 {
  margin: 25px 0 12px;
  color: #111;
  font-size: 20px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.socials span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(19, 41, 58, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-main nav {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-main nav h3 {
  margin: 0;
  font-size: 20px;
}

.footer-main nav a {
  color: #555;
  font-size: 21px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  border: 1px solid #d1d1d1;
  border-radius: 18px;
  background: #fff;
  padding: 0 52px;
}

.footer-bottom p,
.footer-bottom a {
  color: #5b5b5b;
  font-size: 17px;
}

.footer-bottom nav {
  display: flex;
  gap: 50px;
}

@media (max-width: 1180px) {
  .site-header,
  .newsletter,
  .footer-bottom {
    gap: 20px;
  }

  .logo {
    width: 166px;
  }

  .header-menu {
    gap: 14px;
    margin-left: 18px;
  }

  .header-links {
    gap: 6px;
  }

  .header-links a {
    padding-inline: 7px;
    font-size: 12px;
  }

  .header-actions {
    gap: 8px;
  }

  .nav-pill {
    padding-inline: 18px;
  }

  .journey,
  .build,
  .booking-panel,
  .newsletter,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .gap-cards,
  .faq-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .step-grid article::before,
  .step-grid article::after {
    display: none;
  }

  .build {
    padding-right: clamp(40px, 5.4vw, 100px);
  }

  .hero-content {
    width: min(720px, 74vw);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 32px;
  }

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

@media (max-width: 760px) {
  .section-x {
    padding-inline: 18px;
  }

  .site-header {
    position: sticky;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: auto;
    padding: 12px 14px;
  }

  .logo {
    width: 148px;
    justify-content: center;
    margin-inline: auto;
  }

  .menu-toggle {
    position: absolute;
    right: 14px;
    top: 12px;
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(114, 184, 208, 0.35);
    border-radius: 999px;
    background: var(--soft);
    cursor: pointer;
    padding: 10px;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy);
  }

  .header-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-left: 0;
    border: 1px solid rgba(114, 184, 208, 0.26);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 48px rgba(19, 41, 58, 0.16);
    padding: 16px;
  }

  .menu-state:checked ~ .header-menu,
  .site-header.is-menu-open .header-menu {
    display: flex;
  }

  .header-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .header-links a {
    justify-content: center;
    min-height: 40px;
    border: 1px solid rgba(114, 184, 208, 0.2);
    background: #fff;
    padding-inline: 10px;
    font-size: 13px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    gap: 7px;
    border-radius: 18px;
    padding: 6px;
  }

  .nav-pill,
  .hero-btn {
    min-height: 34px;
    padding-inline: 11px;
    font-size: 11px;
  }

  .hero {
    min-height: 630px;
    margin-top: 0;
    border-radius: 0;
  }

  .hero > img {
    object-position: 62% top;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 10% 86%, rgba(214, 244, 243, 0.28), transparent 34%),
      linear-gradient(180deg, rgba(19, 41, 58, 0.95) 0%, rgba(0, 82, 79, 0.84) 52%, rgba(19, 41, 58, 0.24) 100%);
  }

  .hero-content {
    width: 100%;
    padding: 64px 18px 48px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 28px;
  }

  .hero .hero-credit {
    gap: 5px;
    margin-top: 10px;
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
  }

  .hero .hero-credit a {
    min-height: 28px;
    padding-inline: 8px;
    font-size: 11px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  }

  .journey {
    gap: 28px;
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .journey-image img {
    height: auto;
  }

  .journey-card {
    min-height: 72px;
    padding: 18px 18px 18px 22px;
  }

  .journey-card h3 {
    font-size: 20px;
  }

  .journey-card p {
    font-size: 14px;
  }

  .gaps {
    border-radius: 30px;
    padding-top: 42px;
  }

  .gap-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    margin-top: 34px;
    scroll-snap-type: x mandatory;
  }

  .gap-card {
    flex: 0 0 78%;
    min-height: 320px;
    scroll-snap-align: start;
  }

  .bucket {
    min-height: auto;
    padding: 70px 22px;
  }

  .bucket p {
    font-size: 28px;
  }

  .bucket span {
    font-size: 12px;
    line-height: 1.5;
  }

  .bucket a,
  .clarity a {
    min-width: 0;
    width: 100%;
    font-size: 22px;
  }

  .build {
    gap: 28px;
    padding: 58px 18px;
  }

  .build-heading h2 {
    font-size: 42px;
  }

  .included-carousel {
    display: none;
  }

  .included-slider {
    margin-inline: -18px;
    overflow-x: auto;
    padding-inline: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .included-slider::-webkit-scrollbar {
    display: none;
  }

  .build-track {
    grid-auto-columns: minmax(280px, calc(100vw - 48px));
    gap: 18px;
    transform: none !important;
  }

  .build-card {
    min-height: 500px;
    padding: 28px 24px;
    scroll-snap-align: start;
  }

  .steps {
    padding-top: 48px;
  }

  .step-grid,
  .faq-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .step-grid article,
  .faq-grid article {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .clarity {
    min-height: auto;
    padding: 54px 22px;
  }

  .clarity h2 {
    font-size: 30px;
  }

  .trust {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }

  .info-hero {
    padding: 58px 18px;
  }

  .info-hero h1 {
    font-size: 38px;
  }

  .info-layout,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .info-aside {
    position: static;
    border-left: 0;
    border-top: 3px solid var(--blue);
    padding: 18px 0 0;
  }

  .info-section p,
  .info-section li {
    font-size: 15px;
  }

  .blog-card {
    min-height: auto;
    padding: 22px;
  }

  .careers-soon {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .careers-soon-copy h2 {
    font-size: 34px;
  }

  .careers-soon-copy p:not(.page-kicker) {
    font-size: 15px;
  }

  .careers-soon-image {
    aspect-ratio: 1.1;
  }

  .footer-built-by {
    gap: 7px;
  }

  .footer-built-by a {
    min-height: 34px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .booking {
    padding-top: 48px;
    padding-bottom: 54px;
  }

  .booking-panel {
    padding: 34px 18px;
  }

  .booking-copy h2 {
    font-size: 42px;
  }

  .booking-copy > p {
    font-size: 18px;
  }

  .outline-pill,
  .call-pill,
  .calendar-cta {
    min-height: 48px;
    padding-inline: 16px;
    font-size: 11px;
    white-space: normal;
    text-align: center;
  }

  .calendar-static-cta {
    width: 100%;
    align-self: stretch;
  }

  .calendar {
    min-height: 620px;
    border-width: 4px;
    overflow: hidden;
    padding: 28px 18px;
  }

  .days {
    gap: 4px;
  }

  .days b {
    font-size: 12px;
  }

  .booking-date-grid {
    gap: 8px;
  }

  .booking-date-number {
    font-size: 16px;
  }

  .booking-slot-grid,
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter,
  .footer-main {
    padding: 34px 24px;
  }

  .newsletter input,
  .newsletter button {
    width: 100%;
  }

  .newsletter h2,
  .footer-main h2 {
    font-size: 42px;
  }

  .footer-logo {
    width: 210px;
  }

  .newsletter form div,
  .footer-bottom nav {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 16px;
  }

  .footer {
    padding: 28px 18px;
  }
}
