:root {
  color-scheme: light;
  --ink: #17211c;
  --muted: #657069;
  --paper: #f7f8f4;
  --panel: #ffffff;
  --line: #d9ded5;
  --sage: #6f8b73;
  --moss: #2f5d46;
  --mist: #e9efe6;
  --shadow: 0 24px 70px rgba(47, 93, 70, 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: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

main {
  overflow: hidden;
}

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

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

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

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 9vw, 6.9rem);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 720;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  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.16rem);
  line-height: 1.7;
}

.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: 750;
  border: 1px solid var(--moss);
}

.button.primary {
  background: var(--moss);
  color: white;
}

.button.secondary {
  color: var(--moss);
}

.phone-shell {
  justify-self: center;
  width: min(100%, 380px);
  border-radius: 36px;
  padding: 12px;
  background: #18241d;
  box-shadow: var(--shadow);
  transform: rotate(2.4deg);
  animation: floatIn 800ms 120ms ease both;
}

.phone-screen {
  min-height: 650px;
  border-radius: 28px;
  padding: 18px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.88), rgba(233,239,230,0.92)),
    radial-gradient(circle at 80% 4%, rgba(111,139,115,0.34), transparent 32%);
}

.phone-top,
.input-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.phone-top {
  margin-bottom: 20px;
  font-size: 0.86rem;
  font-weight: 800;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--sage);
  box-shadow: 0 0 0 6px rgba(111,139,115,0.18);
}

.phone-card {
  border: 1px solid rgba(47, 93, 70, 0.18);
  background: rgba(255,255,255,0.78);
  border-radius: 20px;
  padding: 20px;
}

.hero-card {
  margin-bottom: 16px;
}

.mini-label,
.phone-card p,
.input-row span {
  color: var(--muted);
  font-size: 0.86rem;
}

.phone-card h2 {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 12px;
}

.input-row {
  min-height: 72px;
  margin-top: 12px;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
}

.input-row strong {
  text-align: right;
}

.whatsapp-strip {
  margin-top: 18px;
  border-radius: 18px;
  padding: 18px;
  background: var(--moss);
  color: white;
  font-weight: 800;
  line-height: 1.35;
}

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

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 18px;
}

.trust-band > div,
.package-grid article,
.faq-panel {
  background: var(--panel);
  border: 1px solid var(--line);
}

.trust-band > div {
  min-height: 176px;
  padding: 24px;
}

.metric {
  display: block;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--moss);
  font-weight: 760;
  margin-bottom: 18px;
}

.trust-band p,
.package-grid p,
.faq-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(30px, 7vw, 88px);
  align-items: start;
}

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

.flow-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 22px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.48);
}

.flow-list span {
  color: var(--moss);
  font-weight: 800;
}

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

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

.package-grid article {
  min-height: 245px;
  padding: 24px;
  border-radius: 18px;
}

.package-grid span {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--moss);
  font-weight: 800;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: clamp(28px, 6vw, 72px);
}

.faq-panel {
  border-radius: 18px;
  overflow: hidden;
}

details {
  padding: 20px 22px;
}

details + details {
  border-top: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 820;
  line-height: 1.4;
}

summary::marker {
  color: var(--moss);
}

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

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

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

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(22px) rotate(0);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(2.4deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}

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

  .hero {
    padding-top: 34px;
  }

  .phone-shell {
    width: min(100%, 340px);
    transform: rotate(0);
  }

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

  .trust-band,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .trust-band > div,
  .package-grid article {
    min-height: auto;
  }

  .package-grid span {
    margin-bottom: 28px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: clamp(2.78rem, 16vw, 4.2rem);
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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