:root {
  --ink: #151515;
  --muted: #666f75;
  --paper: #f7f8f5;
  --white: #ffffff;
  --line: #dce2dc;
  --teal: #08756f;
  --teal-dark: #075d58;
  --lime: #b7ef67;
  --coral: #ff6b5f;
  --charcoal: #202322;
  --shadow: 0 18px 45px rgba(21, 21, 21, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 248, 245, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid rgba(21, 21, 21, .12);
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-left: auto;
  font-size: 15px;
}

.nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--teal);
}

.phone-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(10, 12, 11, .88), rgba(10, 12, 11, .46), rgba(10, 12, 11, .20)), url("https://images.unsplash.com/photo-1517694712202-14dd9538aa97?auto=format&fit=crop&w=1800&q=84");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  padding: 84px 0 42px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--teal);
}

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

h1 {
  max-width: 850px;
  margin: 0;
  font-size: 56px;
  line-height: 1.04;
}

h2 {
  margin: 0 0 16px;
  font-size: 36px;
  line-height: 1.12;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-text {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 19px;
}

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

.center-actions {
  justify-content: center;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
}

.btn-primary {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.btn-secondary {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.btn-ghost {
  color: inherit;
  background: transparent;
  border-color: currentColor;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 44px 0 0;
}

.hero-facts div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.hero-facts dt {
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 5px 0 0;
}

.band {
  padding: 78px 0;
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 48px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(340px, 520px) minmax(0, 1fr);
}

.split p,
.order-layout p,
.legal p {
  color: var(--muted);
  font-size: 18px;
}

.section-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.services,
.process,
.price-table-section {
  padding: 78px 0;
}

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

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

.price-card,
.steps article,
.table-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-card {
  min-height: 218px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.price-card p {
  color: var(--muted);
  margin: 0 0 22px;
}

.price-card strong {
  margin-top: auto;
  color: var(--teal-dark);
  font-size: 22px;
}

.remote {
  background: #eef5ef;
}

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

.steps article {
  min-height: 220px;
  padding: 22px;
}

.steps span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--ink);
  background: var(--coral);
  border-radius: 8px;
  font-weight: 700;
}

.steps p {
  color: var(--muted);
  margin: 0;
}

.order {
  background: var(--charcoal);
  color: var(--white);
}

.order .section-kicker {
  color: var(--lime);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(340px, 520px);
  gap: 48px;
  align-items: start;
}

.order-layout p,
.order-layout a {
  color: rgba(255, 255, 255, .78);
}

.legal-note {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 8px;
}

.form {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: #fbfcfa;
}

.form textarea {
  resize: vertical;
}

.form .check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  font-weight: 400;
  color: var(--muted);
}

.form .check input {
  min-height: 20px;
  margin-top: 3px;
}

.form a {
  color: var(--teal);
}

.footer {
  padding: 26px 0;
  background: #101211;
  color: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner span,
.footer-links {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, .66);
}

.footer-inner div:first-child {
  display: grid;
  gap: 3px;
}

.page-hero {
  padding: 92px 0 70px;
  color: var(--white);
  background: var(--charcoal);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.table-block {
  overflow: hidden;
  margin-bottom: 24px;
}

.table-block h2 {
  margin: 0;
  padding: 22px;
  background: #eef5ef;
  font-size: 26px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 20px;
  align-items: center;
  padding: 16px 22px;
  border-top: 1px solid var(--line);
}

.price-row strong {
  color: var(--teal-dark);
  text-align: right;
}

.legal {
  padding: 70px 0;
  max-width: 900px;
}

.legal h1 {
  color: var(--ink);
  font-size: 44px;
  margin-bottom: 26px;
}

.legal h2 {
  margin-top: 34px;
  font-size: 25px;
}

.legal a {
  color: var(--teal);
}

.success-page {
  min-height: 100vh;
  display: grid;
  align-content: center;
}

.success-page h1 {
  color: var(--ink);
}

.success-page p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-facts,
  .price-grid,
  .steps,
  .split,
  .split-reverse,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .price-grid {
    gap: 14px;
  }

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

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .phone-link {
    width: 100%;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 58px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 27px;
  }

  .hero-text {
    font-size: 17px;
  }

  .btn {
    width: 100%;
  }

  .band,
  .services,
  .process,
  .price-table-section,
  .legal {
    padding: 52px 0;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price-row strong {
    text-align: left;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}
