:root {
  color-scheme: light;
  --ink: #251612;
  --muted: #76594f;
  --paper: #fff8f2;
  --panel: #ffffff;
  --line: #ecd8cd;
  --brand: #b23821;
  --brand-dark: #8f2b1a;
  --brand-soft: #ffe1d0;
  --accent: #11766f;
  --shadow: 0 22px 70px rgba(89, 40, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 236, 221, 0.92), rgba(255, 248, 242, 0.98) 38%),
    var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--brand-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-header,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.site-header nav,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  color: var(--ink);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(178, 56, 33, 0.28);
}

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

.nav-cta {
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--brand);
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero,
.support-hero {
  padding: 72px 0 56px;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 8vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2.2vw, 1.35rem);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 30px rgba(178, 56, 33, 0.22);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-dark);
}

.button.light {
  background: #fff;
  color: var(--brand-dark);
}

.phone-preview {
  position: relative;
  padding: 28px;
  border: 10px solid #241612;
  border-radius: 42px;
  background: linear-gradient(180deg, #fffaf6, #fff);
  box-shadow: var(--shadow);
}

.phone-top {
  width: 82px;
  height: 7px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: #251612;
}

.result-card,
.result-row,
.pricing-note,
.contact-card,
.faq-list article,
.feature-grid article {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(89, 40, 22, 0.08);
}

.result-card {
  position: relative;
  padding: 20px;
  border-radius: 20px;
}

.result-card.small {
  margin-top: 14px;
}

.status-dot {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.mini-label {
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 15px 17px;
  border-radius: 16px;
}

.result-row strong {
  color: var(--accent);
}

.section {
  padding: 62px 0;
}

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

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

.feature-grid article,
.faq-list article,
.contact-card,
.pricing-note {
  border-radius: 24px;
  padding: 24px;
}

.feature-number {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 900;
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 30px;
  align-items: center;
  margin: 36px 0;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 30px;
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
}

.band .eyebrow,
.band a,
.band h2 {
  color: #fff;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.pricing-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-dark);
  font-size: 1.25rem;
}

.support-hero {
  max-width: 820px;
}

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

.faq-list p,
.feature-grid p,
.contact-card p,
.pricing-note p,
.two-column > p {
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 34px 0 44px;
  color: var(--muted);
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .phone-preview {
    max-width: 430px;
    margin: 0 auto;
  }

  .feature-grid,
  .faq-list,
  .band,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

@media (max-width: 480px) {
  main,
  .site-header,
  .site-footer {
    width: min(100% - 24px, 1120px);
  }

  .site-header nav {
    width: 100%;
    justify-content: space-between;
  }

  .phone-preview {
    padding: 20px;
    border-width: 8px;
    border-radius: 34px;
  }
}
