:root {
  color-scheme: light;
  --ink: #1f2428;
  --muted: #5d6873;
  --line: #d8dee4;
  --paper: #fbf8f3;
  --panel: #ffffff;
  --green: #176f57;
  --blue: #2860ad;
  --coral: #be4b43;
  --gold: #b4811f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(251, 248, 243, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  color: var(--green);
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

nav a,
footer a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  min-height: 82vh;
  padding: clamp(40px, 7vw, 92px) clamp(18px, 4vw, 56px);
}

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

.eyebrow {
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(56px, 9vw, 112px);
  line-height: 0.92;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  margin-bottom: 14px;
}

h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.lede {
  color: var(--muted);
  font-size: 22px;
  max-width: 640px;
}

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

.button {
  border: 1px solid var(--ink);
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-width: 150px;
  padding: 12px 18px;
  text-decoration: none;
}

.button.primary {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.button.secondary {
  background: transparent;
}

.phone-visual {
  background: #111820;
  border: 8px solid #202b35;
  border-radius: 34px;
  box-shadow: 0 28px 60px rgba(31, 36, 40, 0.25);
  min-height: 590px;
  padding: 26px 18px;
}

.phone-top {
  background: #364350;
  border-radius: 99px;
  height: 6px;
  margin: 0 auto 28px;
  width: 96px;
}

.message {
  border-radius: 18px;
  clear: both;
  font-size: 15px;
  margin-bottom: 12px;
  max-width: 86%;
  padding: 12px 14px;
}

.message.incoming {
  background: #eef2f4;
  color: #202b35;
  float: left;
}

.message.outgoing {
  background: #2d7ff0;
  color: #fff;
  float: right;
}

.message.menu {
  line-height: 1.65;
}

.section {
  border-top: 1px solid var(--line);
  padding: clamp(42px, 7vw, 86px) clamp(18px, 4vw, 56px);
}

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

.steps {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.steps article,
.policy-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.steps span {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-bottom: 18px;
  width: 34px;
}

.steps p,
.split p,
footer p {
  color: var(--muted);
}

.split {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

.price-band {
  background: #edf4ef;
}

.prices {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.prices div {
  background: #fff;
  border: 1px solid #c9d9ce;
  border-radius: 8px;
  min-height: 112px;
  padding: 18px;
}

.prices strong {
  color: var(--blue);
  display: block;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 14px;
}

.prices span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 56px);
}

footer p {
  margin: 0;
  max-width: 760px;
}

footer div {
  display: flex;
  gap: 14px;
}

.simple-page {
  margin: 0 auto;
  max-width: 860px;
  padding: 54px 20px 80px;
}

.simple-page h1 {
  font-size: clamp(42px, 7vw, 72px);
}

.simple-page section {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.simple-page li {
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .steps,
  .prices {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .phone-visual {
    min-height: 520px;
  }

  footer,
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }
}
