:root {
  color-scheme: light;
  --forest: #174c32;
  --forest-deep: #102f22;
  --sage: #dcebe0;
  --cream: #f8f5ee;
  --paper: #ffffff;
  --ink: #17211b;
  --muted: #667269;
  --coral: #ed785f;
  --line: rgba(23, 76, 50, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, system-ui, sans-serif;
  line-height: 1.65;
}

a { color: inherit; }

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand img { width: 38px; height: 38px; border-radius: 10px; }

.nav-links { display: flex; gap: 24px; color: var(--muted); font-size: 15px; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--forest); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 72px;
  align-items: center;
  padding: 72px 0 96px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2 { margin: 0; line-height: 1.08; letter-spacing: -0.045em; }
h1 { max-width: 720px; font-size: clamp(46px, 7vw, 82px); }
h2 { font-size: clamp(30px, 4vw, 48px); }

.lede { max-width: 680px; margin: 24px 0 0; color: var(--muted); font-size: 19px; }

.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 var(--line);
  border-radius: 15px;
  background: var(--paper);
  text-decoration: none;
  font-weight: 700;
}
.button.primary { border-color: var(--forest); background: var(--forest); color: white; }
.button:hover { transform: translateY(-1px); }

.phone-wrap {
  justify-self: center;
  padding: 18px;
  border-radius: 42px;
  background: linear-gradient(160deg, var(--forest), var(--forest-deep));
  box-shadow: 0 28px 70px rgba(16, 47, 34, 0.24);
}
.phone-wrap img { display: block; width: min(320px, 72vw); border-radius: 28px; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}
.trust-strip div { padding: 28px; background: var(--paper); }
.trust-strip strong { display: block; color: var(--forest); font-size: 18px; }
.trust-strip span { color: var(--muted); font-size: 14px; }

.content { padding: 84px 0; }
.content.narrow { width: min(760px, calc(100% - 40px)); }
.content header { margin-bottom: 44px; }
.content h2 { margin-top: 46px; font-size: 30px; }
.content h3 { margin: 30px 0 6px; font-size: 19px; }
.content p, .content li { color: #4e5b53; }
.content ul { padding-left: 20px; }
.updated { margin-top: 12px; color: var(--muted); font-size: 14px; }

.support-card {
  margin: 34px 0;
  padding: 30px;
  border-radius: 24px;
  background: var(--forest);
  color: white;
}
.support-card p { color: rgba(255,255,255,.76); }
.support-card a { font-weight: 750; }

.faq { display: grid; gap: 14px; margin-top: 36px; }
.faq article { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); }
.faq h3 { margin-top: 0; }

footer { margin-top: 40px; padding: 34px 0 44px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; }

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 680px); }
  .nav { min-height: 66px; }
  .nav-links { gap: 14px; font-size: 14px; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 52px 0 72px; }
  .hero-copy { text-align: left; }
  .phone-wrap { justify-self: center; }
  .trust-strip { grid-template-columns: 1fr; }
  .content { padding: 58px 0; }
  .content.narrow { width: min(100% - 28px, 680px); }
}
