:root {
  --bg: #ffffff;
  --surface: #f8fbff;
  --surface-strong: #ffffff;
  --text: #1e293b;
  --muted: #475569;
  --primary: #046bd2;
  --primary-dark: #045cb4;
  --accent: #1e293b;
  --accent-dark: #111827;
  --line: rgba(30, 41, 59, 0.08);
  --shadow: 0 24px 70px rgba(4, 107, 210, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(4, 107, 210, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(234, 242, 251, 0.95), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(10px);
}

body::before {
  width: 280px;
  height: 280px;
  top: 7%;
  right: -100px;
  background: rgba(4, 107, 210, 0.08);
}

body::after {
  width: 240px;
  height: 240px;
  left: -80px;
  bottom: 12%;
  background: rgba(4, 107, 210, 0.06);
}

.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.hero,
.content-section {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.74fr) minmax(280px, 0.5fr);
  gap: 24px;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(4, 107, 210, 0.96), rgba(30, 41, 59, 0.94));
}

.hero-copy h1,
.section-heading h2,
.hero-card h2,
.booking-copy h2 {
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}

.eyebrow,
.section-kicker,
.card-label,
.step-number {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.eyebrow {
  display: inline-block;
  background: #ffffff;
  color: #111827;
  line-height: 1.35;
}

.hero-copy {
  padding-right: 16px;
}

.hero-copy h1 {
  margin-top: 18px;
  max-width: none;
  font-size: clamp(2.05rem, 4vw, 3.5rem);
  color: #ffffff;
  line-height: 1;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.subheadline {
  margin: 22px 0 0;
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  line-height: 1.45;
  color: #ffffff;
}

.description,
.hero-card p,
.booking-copy p,
.benefit-card p,
.step-card p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
}

.description {
  max-width: 62ch;
  margin: 16px 0 0;
  color: #ffffff;
}

.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 16px 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  color: #111827;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.18);
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 26px 44px rgba(17, 24, 39, 0.24);
}

.form-cta-button {
  background: linear-gradient(135deg, #046bd2, #045cb4);
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(4, 107, 210, 0.24);
}

.form-cta-button:hover,
.form-cta-button:focus-visible {
  box-shadow: 0 26px 44px rgba(4, 107, 210, 0.3);
}

.hero-card,
.benefit-card,
.step-card,
.booking-form {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-card {
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 28px;
  border-radius: 28px;
  width: 100%;
  max-width: 440px;
  min-height: 450px;
  justify-self: end;
  overflow: hidden;
}

.hero-card h2 {
  margin-top: 16px;
  font-size: clamp(1.3rem, 1.75vw, 1.8rem);
  line-height: 1.05;
  white-space: nowrap;
}

.hero-card .card-label,
.hero-card p {
  text-align: left;
}

.content-section {
  margin-top: 24px;
  padding: 32px;
  border-radius: 32px;
  background: #ffffff;
}

.process {
  background: linear-gradient(135deg, #046bd2, #045cb4);
}

.process .section-heading h2,
.process .step-card p {
  color: #ffffff;
}

.process .step-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.process .step-number {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.section-heading {
  max-width: 700px;
}

.section-heading h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.benefit-grid,
.steps {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.benefit-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.steps {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.benefit-card,
.step-card {
  min-height: 180px;
  padding: 24px;
  border-radius: 24px;
}

.benefit-card h3 {
  margin: 18px 0 12px;
  font-size: 1.25rem;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.booking-copy {
  padding-top: 10px;
}

.booking-copy h2 {
  margin-top: 16px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
}

.booking-form label {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(30, 41, 59, 0.14);
  border-radius: 16px;
  background: var(--surface-strong);
  color: var(--text);
  font: inherit;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #94a3b8;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(4, 107, 210, 0.22);
  border-color: rgba(4, 107, 210, 0.42);
}

.booking-form textarea {
  resize: vertical;
  min-height: 128px;
}

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

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

  .hero-card {
    max-width: none;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1160px);
    padding-top: 18px;
    padding-bottom: 36px;
  }

  .hero,
  .content-section {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .cta-button {
    width: 100%;
  }
}
