:root {
  --ink: #183132;
  --soft: #536a6a;
  --teal: #2f6f6b;
  --cream: #f7f3eb;
  --surface: #fffdf8;
  --line: #d9e1dd;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 85% 8%, rgba(47, 111, 107, .14), transparent 28rem), var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
}
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
header { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-size: 1.12rem; font-weight: 760; text-decoration: none; }
.logo { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--teal); color: white; font-size: 1.35rem; box-shadow: 0 8px 24px rgba(32, 76, 73, .18); }
nav { display: flex; gap: 22px; }
nav a { color: var(--soft); font-size: .95rem; font-weight: 650; text-decoration: none; }
.hero { min-height: 520px; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(300px, .8fr); gap: clamp(32px, 7vw, 90px); align-items: center; padding-block: 70px 90px; }
.eyebrow { margin: 0 0 10px; color: var(--teal); font-size: .78rem; font-weight: 780; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3 { letter-spacing: -.035em; line-height: 1.1; }
h1 { max-width: 780px; margin: 0; font-size: clamp(2.8rem, 6.2vw, 5.6rem); font-weight: 790; }
.lead { max-width: 650px; margin: 24px 0 0; color: var(--soft); font-size: clamp(1.06rem, 2vw, 1.3rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border: 1px solid transparent; border-radius: 999px; font-weight: 720; text-decoration: none; }
.primary { background: var(--teal); color: white; box-shadow: 0 12px 30px rgba(47, 111, 107, .2); }
.secondary { border-color: var(--line); background: rgba(255, 253, 248, .72); }
.status { padding: 30px; border: 1px solid rgba(47, 111, 107, .18); border-radius: 28px; background: linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(222, 238, 235, .88)); box-shadow: 0 24px 70px rgba(37, 75, 72, .12); }
.status .heart { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: var(--teal); color: white; font-size: 1.4rem; }
.status h2 { margin: 24px 0 12px; font-size: 1.8rem; }
.status p, .faq p { margin: 0; color: var(--soft); }
.help { padding-block: 80px 100px; }
.help h2, .contact h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.2rem); }
.faq-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 34px; }
.faq { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.faq h3 { margin: 0 0 10px; font-size: 1.12rem; }
.faq p { font-size: .95rem; }
.contact { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; padding: 46px; border-radius: 28px; background: var(--ink); color: white; }
.contact p:not(.eyebrow) { max-width: 680px; margin-bottom: 0; color: #c9d7d5; }
.contact .eyebrow { color: #8ed0c8; }
.email { color: #b8ebe5; font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 720; text-align: right; overflow-wrap: anywhere; }
.disclaimer { margin-top: 28px; padding: 20px 22px; border-left: 4px solid #c58d35; background: #f3e7d2; color: #674716; font-size: .92rem; }
footer { min-height: 100px; display: flex; align-items: center; gap: 22px; color: var(--soft); font-size: .9rem; }
footer span { margin-right: auto; }
.policy { max-width: 820px; padding-block: 70px 100px; }
.policy h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
.policy .lead { margin: 22px 0 48px; }
.policy h2 { margin: 38px 0 10px; font-size: 1.45rem; }
.policy p { color: var(--soft); }
.policy a:not(.button) { color: var(--teal); font-weight: 650; }
.back { margin-top: 36px; }

@media (max-width: 840px) {
  .hero { grid-template-columns: 1fr; padding-block: 48px 70px; }
  .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact { grid-template-columns: 1fr; padding: 32px; }
  .email { text-align: left; }
}

@media (max-width: 560px) {
  header { min-height: 72px; }
  nav { gap: 14px; }
  h1 { font-size: 2.65rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .help { padding-block: 54px 70px; }
  footer { flex-wrap: wrap; padding-block: 26px; }
  footer span { width: 100%; }
}
