:root {
  color-scheme: light;
  --ink: #211d1a;
  --muted: #6c635c;
  --paper: #f8f4ed;
  --panel: #fffdf8;
  --line: #dfd5c9;
  --clay: #a76049;
  --graphite: #312b27;
  --sage: #74856d;
  --mist: #ede5d8;
  --shadow: 0 28px 80px rgba(49, 43, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(49, 43, 39, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(49, 43, 39, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 88px 88px;
  color: var(--ink);
}

a {
  color: inherit;
}

button,
a {
  cursor: pointer;
}

main {
  overflow: hidden;
}

.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 76px) 22px;
}

.hero-copy {
  animation: rise 680ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.73rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 750;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 720;
}

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

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

.lede,
.split p,
.closing p {
  max-width: 64ch;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.68;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  text-decoration: none;
  font-weight: 760;
  border: 1px solid var(--graphite);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button.primary {
  background: var(--graphite);
  color: #fffaf0;
}

.button.secondary {
  background: rgba(255, 253, 248, 0.78);
  color: var(--graphite);
}

.button:hover,
.button:focus-visible {
  border-color: var(--clay);
  background: var(--clay);
  color: #fffaf0;
  outline: none;
}

.phone-shell {
  justify-self: center;
  width: min(100%, 370px);
  border: 1px solid rgba(49, 43, 39, 0.18);
  border-radius: 36px;
  padding: 12px;
  background: linear-gradient(145deg, #3d342e, #1f1a17);
  box-shadow: var(--shadow);
  animation: rise 760ms 120ms ease both;
}

.phone-screen {
  min-height: 650px;
  border-radius: 27px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(239, 230, 216, 0.94)),
    var(--panel);
  overflow: hidden;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 46px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 5px rgba(116, 133, 109, 0.14);
}

.phone-card {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.78);
  border-radius: 8px;
  padding: 22px;
  margin-bottom: 18px;
}

.phone-card h2 {
  font-size: 1.75rem;
  line-height: 1.05;
  margin-bottom: 14px;
}

.phone-card p:last-child,
.input-row span,
.service-grid p,
.flow-list p,
.trust-band p {
  color: var(--muted);
  line-height: 1.55;
}

.mini-label {
  color: var(--clay);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.input-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.68);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 12px;
}

.input-row strong {
  color: var(--ink);
}

.whatsapp-strip {
  margin-top: 20px;
  border-radius: 8px;
  background: var(--sage);
  color: #fff;
  padding: 15px;
  font-weight: 760;
  line-height: 1.35;
}

.trust-band,
.split,
.service-section,
.faq-section,
.closing {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 100px) 22px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band > div,
.service-grid article {
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.metric {
  display: block;
  color: var(--graphite);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1;
  font-weight: 780;
  margin-bottom: 12px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

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

.flow-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  padding: 18px;
}

.flow-list span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mist);
  color: var(--clay);
  font-weight: 800;
}

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

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

.service-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.faq-stack {
  display: grid;
  gap: 10px;
}

.faq-stack button {
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.78);
  color: var(--ink);
  border-radius: 8px;
  padding: 17px 18px;
  font: inherit;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease;
}

.faq-stack button:hover,
.faq-stack button:focus-visible {
  border-color: var(--clay);
  background: #fffdf8;
  outline: none;
}

.closing {
  padding-bottom: clamp(70px, 10vw, 130px);
}

.closing h2 {
  max-width: 780px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  html {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 840px) {
  .hero,
  .split,
  .faq-section,
  .trust-band,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .phone-shell {
    width: min(100%, 350px);
  }

  .phone-screen {
    min-height: 570px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(2.68rem, 16vw, 3.45rem);
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .flow-list li {
    grid-template-columns: 1fr;
  }

  .phone-card h2 {
    font-size: 1.5rem;
  }
}
