:root {
  --ink: #102027;
  --text: #263238;
  --muted: #60717a;
  --line: #d9e5e7;
  --panel: #ffffff;
  --soft: #f3f8f7;
  --teal: #087f8c;
  --teal-dark: #075c66;
  --amber: #f4b942;
  --coral: #d95d39;
  --shadow: 0 24px 70px rgba(16, 32, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #fbfdfc;
  overflow-x: clip;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 253, 252, 0.88);
  border-bottom: 1px solid rgba(217, 229, 231, 0.85);
  backdrop-filter: blur(18px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 38px;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.nav {
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a:hover {
  color: var(--teal-dark);
}

.header-cta,
.primary-button,
.secondary-button,
.choose-plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.primary-button,
.choose-plan {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 12px 30px rgba(8, 127, 140, 0.23);
}

.header-cta {
  padding: 0 18px;
  font-size: 0.92rem;
}

.primary-button {
  padding: 0 22px;
}

.secondary-button {
  padding: 0 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.64);
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(6, 23, 27, 0.9) 0%, rgba(6, 23, 27, 0.78) 38%, rgba(6, 23, 27, 0.26) 72%, rgba(6, 23, 27, 0.08) 100%);
}

.hero-content {
  width: min(760px, calc(100% - clamp(36px, 12vw, 164px)));
  margin-left: clamp(18px, 6vw, 82px);
  padding: 92px 0 72px;
  color: #fff;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--amber);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  line-height: 1.35;
}

.eyebrow {
  margin-bottom: 20px;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.section-label::before {
  content: "";
  width: 28px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5vw, 4.65rem);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 800;
}

h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  color: var(--ink);
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions,
.hero-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 32px;
}

.hero-stats {
  margin: 42px 0 0;
}

.hero-stats div {
  min-width: 136px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.hero-stats dt {
  font-size: 1.55rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 22px clamp(16px, 3vw, 38px);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.intro-grid,
.proof,
.booking-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.lead-panel {
  padding: 32px;
  background: var(--soft);
  border-left: 6px solid var(--teal);
  border-radius: 8px;
  font-size: 1.12rem;
  line-height: 1.7;
}

.cards-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.price-card,
.booking-form,
.faq details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(16, 32, 39, 0.07);
}

.feature-card {
  padding: 30px;
}

.feature-card p,
.timeline-item p,
.section-heading p,
.price-card li,
.faq p,
.booking-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--coral);
  border-radius: 8px;
  font-weight: 900;
}

.program {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: #eef6f5;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

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

.timeline-item {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline-item span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--teal);
  font-weight: 900;
  font-size: 1.35rem;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 18px 20px 18px 48px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  color: var(--teal);
  font-weight: 900;
}

.price-card {
  position: relative;
  padding: 30px;
}

.price-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 6px 10px;
  color: var(--teal-dark);
  background: #dff2ef;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.price {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 2.4rem;
  font-weight: 900;
}

.muted {
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 10px;
  min-height: 116px;
  margin: 24px 0;
  padding-left: 20px;
}

.choose-plan {
  width: 100%;
}

.booking-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 40px;
  padding: 78px clamp(18px, 4vw, 48px);
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-copy h2,
.booking-copy p {
  color: #fff;
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.mini-guarantee {
  margin-top: 28px;
  padding: 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  line-height: 1.55;
}

.booking-form {
  padding: clamp(20px, 3vw, 34px);
}

.form-step {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.segmented,
.slot-grid {
  display: grid;
  gap: 10px;
}

.segmented {
  grid-template-columns: repeat(3, 1fr);
}

.segmented input,
.slot-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented span,
.slot-card {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 10px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.segmented input:checked + span,
.slot-card:has(input:checked) {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

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

.slot-card {
  align-items: start;
  justify-items: start;
  gap: 4px;
}

.slot-card strong {
  font-size: 0.95rem;
}

.slot-card small {
  color: inherit;
  opacity: 0.78;
}

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

.fields h3,
.fields label:last-child {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

textarea {
  resize: vertical;
}

.payment-panel {
  display: grid;
  gap: 16px;
}

.payment-panel > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  background: var(--soft);
  border-radius: 8px;
}

#totalPrice {
  color: var(--teal-dark);
  font-size: 1.8rem;
}

.full {
  width: 100%;
}

.fine-print {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.faq {
  max-width: 880px;
}

.faq details {
  padding: 20px 22px;
  margin-bottom: 12px;
}

.faq summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin: 14px 0 0;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  width: min(420px, calc(100% - 40px));
  padding: 18px 20px;
  color: #fff;
  background: var(--teal-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.75);
  background: #071418;
}

.footer p {
  margin: 0;
}

.footer a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(6, 23, 27, 0.92), rgba(6, 23, 27, 0.62));
  }

  .trust-strip,
  .cards-grid,
  .timeline,
  .pricing-grid,
  .intro-grid,
  .proof,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .timeline {
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand {
    flex: 1 1 100%;
    min-width: 0;
  }

  .brand span:last-child {
    min-width: 0;
    max-width: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-cta {
    flex: 1 1 100%;
    padding-inline: 12px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-top: 70px;
  }

  .hero-actions,
  .segmented,
  .slot-grid,
  .fields,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats div {
    flex: 1 1 100%;
  }

  .section {
    padding: 62px 0;
  }

  .booking-section {
    width: calc(100% - 24px);
    padding: 44px 14px;
  }

  .booking-form {
    padding: 18px;
  }
}
