:root {
  --paper: #f8f7f2;
  --ink: #111827;
  --muted: #5f6876;
  --line: #d9ded2;
  --lime: #d7fb4f;
  --sky: #38bdf8;
  --coral: #ff6b4a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 24, 39, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

main {
  overflow: hidden;
}

.hero,
.section,
.split-section,
.examples-band,
.final-cta {
  padding-inline: clamp(18px, 5vw, 72px);
}

.hero {
  min-height: 96svh;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}

.nav {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.brand,
.nav-links,
.hero-actions,
.quick-stats,
.phone-top,
.answer-row,
.wide-link {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 10px;
  font-weight: 800;
}

.brand-mark,
.service-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--lime);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
}

.nav-links {
  justify-content: center;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  padding: 10px 0;
}

.nav-cta {
  justify-self: end;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  font-weight: 800;
}

.hero-grid {
  width: min(1180px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
  padding-block: 48px 72px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 11px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--sky);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.91;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.3vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.1;
}

.lead {
  max-width: 650px;
  color: #303846;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.button,
.wide-link {
  min-height: 48px;
  justify-content: center;
  padding: 14px 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover,
.wide-link:hover,
.nav-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.primary {
  background: var(--lime);
}

.ghost {
  background: var(--white);
}

.quick-stats {
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 0;
}

.quick-stats div {
  min-width: 118px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.quick-stats dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-stats dd {
  margin: 2px 0 0;
  font-size: 1.15rem;
  font-weight: 900;
}

.hero-panel {
  justify-self: center;
  width: min(100%, 390px);
  transform: rotate(1.3deg);
}

.phone-card {
  position: relative;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 26px;
  background: #18212f;
  box-shadow: 14px 14px 0 var(--ink);
  color: var(--white);
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: 58px 20px auto auto;
  width: 96px;
  height: 96px;
  border-radius: 16px;
  background: var(--coral);
  opacity: 0.95;
}

.phone-top {
  position: relative;
  z-index: 1;
  gap: 6px;
  height: 28px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
}

.chat,
.mini-receipt,
.wide-link {
  position: relative;
  z-index: 1;
}

.chat {
  width: 86%;
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;
  font-weight: 700;
  line-height: 1.45;
}

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

.outgoing {
  margin-left: auto;
  background: var(--sky);
  color: var(--ink);
}

.mini-receipt {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  border-radius: 16px;
}

.mini-receipt span {
  color: #cbd5e1;
  font-size: 0.86rem;
}

.mini-receipt strong {
  color: var(--lime);
  font-size: 1.5rem;
}

.wide-link {
  margin-top: 18px;
  background: var(--white);
  color: var(--ink);
}

.section {
  padding-block: clamp(62px, 10vw, 112px);
}

.section-heading {
  width: min(880px, 100%);
  margin-bottom: 32px;
}

.compact {
  width: min(760px, 100%);
}

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

.intro .eyebrow,
.policy .eyebrow {
  background: var(--lime);
}

.answer-row {
  gap: 14px;
  align-items: stretch;
}

.answer-row article {
  flex: 1 1 0;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.answer-row span,
.price-board span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-weight: 900;
}

.answer-row p,
.tariff-copy p,
.policy-grid p {
  margin-bottom: 0;
  line-height: 1.6;
}

.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 210px;
  display: flex;
  gap: 18px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 6px 6px 0 rgba(17, 24, 39, 0.14);
}

.service-card:nth-child(2n) .service-mark {
  background: var(--sky);
}

.service-card:nth-child(3n) .service-mark {
  background: var(--coral);
}

.service-card p {
  color: var(--muted);
  line-height: 1.5;
}

.service-card strong {
  display: inline-block;
  margin-top: 10px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
  padding-block: clamp(64px, 10vw, 118px);
  background: #e8f7fe;
  border-block: 1px solid #badfeb;
}

.split-section .eyebrow {
  margin-bottom: 22px;
  padding: 6px 10px;
  font-size: 0.72rem;
}

.tariff-copy p {
  margin-top: 18px;
  color: #334155;
  font-size: 1.08rem;
}

.price-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 10px 10px 0 var(--ink);
}

.price-board div {
  min-height: 130px;
  padding: 22px;
  border: 1px solid var(--ink);
}

.price-board span {
  color: var(--muted);
}

.price-board strong {
  display: block;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.flow {
  background: var(--paper);
}

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

.step-list li {
  min-height: 184px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  font-weight: 850;
  line-height: 1.35;
}

.step-list span {
  color: var(--coral);
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  font-weight: 900;
}

.examples-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  gap: 28px;
  padding-block: clamp(56px, 8vw, 92px);
  background: var(--coral);
  color: var(--ink);
}

.examples-band .eyebrow {
  background: var(--white);
}

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

.example-list p {
  margin: 0;
  padding: 16px 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 800;
}

.policy {
  background: var(--ink);
}

.policy-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
  gap: 28px;
  padding: clamp(24px, 5vw, 42px);
  border-radius: 8px;
  background: var(--white);
}

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

.policy-grid p {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #374151;
}

.final-cta {
  min-height: 54svh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  text-align: center;
  background: var(--lime);
}

.final-cta .eyebrow {
  margin-inline: auto;
  background: var(--white);
}

.final-cta h2 {
  max-width: 850px;
}

@media (max-width: 920px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .split-section,
  .examples-band,
  .policy-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 34px;
  }

  .hero-panel {
    justify-self: start;
    transform: none;
  }

  .service-grid,
  .step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .hero,
  .section,
  .split-section,
  .examples-band,
  .final-cta {
    padding-inline: 16px;
  }

  .hero {
    min-height: auto;
  }

  .nav {
    min-height: 68px;
  }

  .brand span:last-child {
    max-width: 118px;
    line-height: 1.05;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-cta {
    padding: 9px 12px;
  }

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

  .quick-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-stats div {
    min-width: 0;
    padding: 11px;
  }

  .quick-stats dd {
    font-size: 1rem;
  }

  .phone-card {
    border-radius: 18px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .answer-row,
  .service-card {
    flex-direction: column;
  }

  .service-grid,
  .step-list,
  .price-board,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .step-list li {
    min-height: 0;
  }
}
