:root {
  --navy: #052448;
  --ink: #102235;
  --blue: #1976c9;
  --sky: #70b7ff;
  --green: #78a832;
  --cta-green: #2f9e44;
  --cta-green-dark: #1f7a34;
  --mint: #e7f7ee;
  --gold: #ffbe3d;
  --orange: #e7652c;
  --red: #d92d20;
  --white: #ffffff;
  --ice: #f3f9ff;
  --line: #c8d9ea;
  --shadow: 0 22px 70px rgba(5, 36, 72, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  background: var(--white);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(200, 217, 234, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 86px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.92rem;
}

.site-header nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  min-height: calc(100svh - 76px);
  padding: clamp(30px, 5vw, 64px) clamp(20px, 5vw, 72px) clamp(36px, 5vw, 70px);
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 22%, rgba(112, 183, 255, 0.36), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #eef8ff 48%, #e7f7ee 100%);
}

.hero-copy {
  max-width: 780px;
}

.alert,
.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Archivo", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.75rem, 5.25vw, 5.15rem);
  font-weight: 900;
  line-height: 0.94;
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 4.5rem);
  font-weight: 900;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 900;
}

p {
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-text {
  max-width: 690px;
  margin: 18px 0 0;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border: 0;
  border-radius: 8px;
  font: 900 0.98rem/1 "Archivo", Arial, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--cta-green);
  box-shadow: 0 14px 30px rgba(47, 158, 68, 0.28);
}

.button-primary:hover {
  background: var(--cta-green-dark);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--line);
}

.hero-offer {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(10px, 2vw, 22px);
}

.price-lockup {
  width: min(100%, 410px);
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-lockup p,
.price-lockup span {
  margin: 0;
}

.price-lockup p {
  color: var(--sky);
  font-weight: 900;
  text-transform: uppercase;
}

.price-lockup strong {
  display: block;
  margin: 6px 0;
  font: 900 clamp(4rem, 7vw, 6.25rem)/0.9 "Archivo", Arial, sans-serif;
  color: var(--white);
}

.price-lockup span {
  display: block;
  color: #d7e9fb;
  font-weight: 700;
}

.price-lockup .button {
  width: 100%;
  margin-top: 24px;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.service-band,
.buying-section {
  padding: clamp(54px, 8vw, 104px) 0;
  background: var(--navy);
  color: var(--white);
}

.service-band h2,
.buying-section h2,
.booking-section h2 {
  color: var(--white);
}

.service-band p,
.buying-section p,
.booking-section p {
  color: #d8e8f7;
}

.check-list,
.compare-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.check-list li,
.compare-column li {
  position: relative;
  padding-left: 34px;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.45;
}

.check-list li::before,
.compare-column.call li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.16em;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 6px var(--mint);
}

.problem-section,
.steps-section,
.faq-section {
  padding: clamp(58px, 8vw, 112px) 0;
  background: var(--white);
}

.section-lede {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 1.18rem;
  font-weight: 700;
}

.light {
  color: var(--gold);
}

.light-copy {
  color: #fff1e9;
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.mini-proof li {
  padding: 9px 12px;
  border: 1px solid rgba(25, 118, 201, 0.18);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 900;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.timeline article,
.steps article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(5, 36, 72, 0.08);
}

.step-icon,
.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
}

.danger {
  background: var(--red);
}

.heat {
  background: var(--orange);
}

.water,
.steps span {
  background: var(--blue);
}

.timeline p,
.steps p {
  margin-bottom: 0;
}

.choice-section {
  padding: clamp(58px, 8vw, 108px) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(217, 45, 32, 0.92), rgba(217, 45, 32, 0.74) 49.8%, rgba(120, 168, 50, 0.88) 50.2%, rgba(25, 118, 201, 0.9)),
    var(--navy);
}

.choice-section h2 {
  max-width: 860px;
  color: var(--white);
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.compare-column {
  min-height: 420px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.compare-column h3 {
  margin-bottom: 22px;
  color: var(--white);
}

.compare-column li + li {
  margin-top: 13px;
}

.compare-column.ignore li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.48em;
  width: 18px;
  height: 3px;
  background: var(--gold);
  transform: rotate(45deg);
}

.compare-column.ignore li::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.48em;
  width: 18px;
  height: 3px;
  background: var(--gold);
  transform: rotate(-45deg);
}

.narrow {
  max-width: 880px;
}

.inline-cta {
  margin-top: 12px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.steps article {
  min-height: 230px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.faq-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ice);
}

.faq-grid h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
}

.faq-grid p {
  margin-bottom: 0;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: var(--navy);
}

.booking-copy {
  max-width: 660px;
}

.booking-card {
  display: grid;
  gap: 16px;
  justify-items: start;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-card p,
.booking-card span {
  margin: 0;
  color: var(--navy);
}

.booking-card p {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.booking-card strong {
  display: block;
  color: var(--navy);
  font: 900 clamp(4.5rem, 9vw, 7rem)/0.9 "Archivo", Arial, sans-serif;
}

.booking-card span {
  font-size: 1.15rem;
  font-weight: 800;
}

.booking-card .button {
  width: 100%;
  margin-top: 6px;
}

.policy-hero {
  padding: clamp(58px, 8vw, 112px) 0 clamp(44px, 6vw, 76px);
  background:
    linear-gradient(135deg, #ffffff 0%, #eef8ff 58%, #e7f7ee 100%);
}

.policy-hero h1 {
  max-width: 720px;
}

.policy-hero p {
  max-width: 760px;
  font-weight: 650;
}

.policy-updated {
  color: var(--blue);
}

.policy-content {
  padding: clamp(48px, 7vw, 86px) 0;
}

.policy-content h2 {
  margin-top: 36px;
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
  line-height: 1.05;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  margin-top: 12px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 20px;
  color: var(--navy);
  font-weight: 800;
  background: var(--white);
}

.footer-brand {
  display: inline-flex;
  width: 58px;
}

footer img {
  width: 58px;
}

footer p {
  margin: 0;
  font-size: 0.95rem;
}

.footer-link {
  color: var(--blue);
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .site-header nav {
    display: none;
  }

  .hero,
  .split,
  .timeline,
  .comparison,
  .steps,
  .faq-grid,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .comparison {
    gap: 14px;
  }

  .compare-column {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand {
    width: 72px;
  }

  .hero {
    padding: 28px 16px 46px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section-inner {
    width: min(100% - 32px, 1180px);
  }

  .booking-section {
    padding-inline: 16px;
  }

}
