:root {
  --ink: #10201e;
  --muted: #5b6a67;
  --line: #d9e2df;
  --paper: #f7faf9;
  --white: #ffffff;
  --teal: #00a98f;
  --teal-dark: #087664;
  --mint: #dff8f2;
  --signal: #f2b84b;
  --coral: #e65f4f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.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(247, 250, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
}

.brand img {
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  padding: 10px 12px;
  border-radius: 8px;
}

.nav a:hover,
.nav a:focus-visible {
  background: var(--mint);
  color: var(--ink);
  outline: none;
}

.nav .nav-cta {
  color: var(--white);
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 73px);
  padding: clamp(44px, 8vw, 96px) clamp(18px, 6vw, 88px) clamp(36px, 6vw, 72px);
  background:
    linear-gradient(120deg, rgba(223, 248, 242, 0.9), rgba(255, 255, 255, 0.55) 48%, rgba(242, 184, 75, 0.18)),
    var(--paper);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  width: min(100%, 1120px);
  min-height: calc(100vh - 73px - clamp(80px, 14vw, 168px));
  margin: 0 auto;
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding: 10px 14px 10px 10px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-logo img {
  border-radius: 8px;
}

.hero-logo strong,
.hero-logo span {
  display: block;
}

.hero-logo strong {
  font-size: 26px;
  line-height: 1;
}

.hero-logo span {
  margin-top: 4px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.98;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.18;
}

.hero-lead,
.section-copy p,
.cta p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  color: var(--white);
  background: var(--ink);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button.secondary {
  background: var(--white);
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.device {
  width: min(100%, 430px);
  padding: 18px;
  color: var(--white);
  background: #092825;
  border: 8px solid #173a35;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(16, 32, 30, 0.2);
}

.device-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
}

.device-bar span {
  width: 42px;
  height: 8px;
  background: #2d5751;
  border-radius: 999px;
}

.search-box,
.result {
  padding: 22px;
  border-radius: 8px;
}

.search-box {
  background: var(--white);
  color: var(--ink);
}

.search-box small,
.result span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.search-box strong {
  display: block;
  margin-top: 6px;
  font-size: 44px;
  line-height: 1;
}

.result {
  margin-top: 14px;
  background: var(--mint);
  color: var(--ink);
}

.result strong {
  display: block;
  margin-top: 4px;
  font-size: 54px;
  line-height: 1;
}

.result p {
  margin: 12px 0 0;
  color: var(--teal-dark);
  font-weight: 900;
}

.band,
.section,
.cta {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 6vw, 88px);
}

.band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.section {
  width: 100%;
}

.section > .section-copy,
.steps {
  width: min(100%, 1120px);
}

.section-copy.centered {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.pain-grid {
  display: grid;
  gap: 14px;
}

.pain-grid article,
.steps li,
.metrics div {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pain-grid article span,
.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: var(--ink);
  background: var(--signal);
  border-radius: 999px;
  font-weight: 900;
}

.pain-grid p,
.steps p,
.metrics span {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.steps li:nth-child(2) span {
  background: var(--mint);
}

.steps li:nth-child(3) span {
  color: var(--white);
  background: var(--teal);
}

.steps li:nth-child(4) span {
  color: var(--white);
  background: var(--coral);
}

.find {
  background: #eef6f4;
}

.metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 27px;
  line-height: 1;
}

.cta {
  text-align: center;
  background: var(--ink);
  color: var(--white);
}

.cta .eyebrow {
  color: var(--mint);
}

.cta > p {
  margin-right: auto;
  margin-left: auto;
  color: #d6e3e0;
}

.cta > .button,
.request-form .button {
  margin-top: 14px;
  color: var(--ink);
  background: var(--signal);
  border-color: var(--signal);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.booking-actions .button.secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.request-form {
  width: min(100%, 860px);
  margin: 34px auto 0;
  padding: clamp(18px, 4vw, 34px);
  text-align: left;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.request-form h3 {
  margin-bottom: 18px;
  font-size: clamp(24px, 3vw, 34px);
}

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

.request-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.request-form span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.request-form input,
.request-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.request-form textarea {
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(0, 169, 143, 0.18);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.form-note.is-success {
  color: var(--teal-dark);
  font-weight: 900;
}

.legal {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 6vw, 88px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.legal.privacy {
  background: var(--paper);
}

.legal-heading {
  width: min(100%, 1120px);
  margin-bottom: 28px;
  margin-right: auto;
  margin-left: auto;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.legal article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal:not(.privacy) article {
  background: var(--paper);
}

.legal a {
  color: var(--teal-dark);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer span {
  color: var(--ink);
  font-weight: 900;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--teal-dark);
  outline: none;
}

@media (max-width: 920px) {
  .hero-inner,
  .band-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    padding-top: 34px;
  }

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

  .form-grid {
    grid-template-columns: 1fr;
  }

  .steps,
  .metrics,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .search-box strong {
    font-size: 34px;
  }

  .result strong {
    font-size: 42px;
  }

  .site-footer {
    flex-direction: column;
  }
}
