:root {
  color-scheme: light;
  --ink: #172321;
  --muted: #66716c;
  --line: #dedbd1;
  --paper: #fffdf8;
  --canvas: #f5efe2;
  --green: #087550;
  --green-dark: #04533a;
  --green-soft: #e4f0e8;
  --coral: #c9604d;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--canvas); color: var(--ink); line-height: 1.65; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; }

.site-header { border-bottom: 1px solid rgba(23,35,33,.11); background: rgba(255,253,248,.88); }
.nav { width: min(960px, calc(100% - 40px)); min-height: 68px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-links { display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: 14px; font-weight: 650; }
.nav-links a[aria-current="page"] { color: var(--green-dark); }

main { width: min(760px, calc(100% - 40px)); margin: 0 auto; padding: 58px 0 76px; }
.eyebrow { color: var(--green); font-size: 14px; font-weight: 800; margin: 0 0 12px; }
h1 { font-size: clamp(32px, 7vw, 48px); letter-spacing: 0; line-height: 1.17; margin: 0; }
h2 { font-size: 21px; line-height: 1.35; margin: 0 0 10px; }
.lead { color: var(--muted); font-size: 17px; margin: 14px 0 0; max-width: 610px; }
.meta { color: var(--muted); font-size: 14px; margin: 28px 0 0; }

.content { margin-top: 42px; }
.section { border-top: 1px solid var(--line); padding: 27px 0; }
.section p, .section li { color: #45514c; font-size: 16px; }
.section p:last-child { margin-bottom: 0; }
.section ul { padding-left: 1.25em; margin: 10px 0 0; }
.notice { background: var(--green-soft); border-left: 3px solid var(--green); padding: 15px 18px; margin-top: 30px; color: #305345; font-size: 15px; }

.form-shell { margin-top: 34px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 26px; }
.form-grid { display: grid; gap: 18px; }
label { display: grid; gap: 7px; font-size: 14px; font-weight: 750; }
input, select, textarea { width: 100%; border: 1px solid #cbd2ca; border-radius: 5px; background: #fff; color: var(--ink); padding: 11px 12px; outline-color: var(--green); }
textarea { min-height: 168px; resize: vertical; }
.hint { color: var(--muted); font-size: 13px; font-weight: 500; }
.inline { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.file-field { border: 1px dashed #b8c6bb; background: #fafcf9; padding: 14px; border-radius: 6px; }
.file-field input { border: 0; padding: 5px 0 0; background: transparent; }
.turnstile { min-height: 1px; }
.hidden { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; pointer-events: none; }
.submit { border: 0; border-radius: 6px; background: var(--green); color: white; font-weight: 800; min-height: 50px; padding: 0 20px; cursor: pointer; }
.submit:hover { background: var(--green-dark); }
.submit:disabled { cursor: wait; opacity: .7; }
.status { min-height: 24px; margin: 4px 0 0; font-size: 14px; color: var(--muted); }
.status.error { color: #a53c2d; }
.status.success { color: var(--green-dark); }

.site-footer { border-top: 1px solid rgba(23,35,33,.11); color: var(--muted); font-size: 13px; }
.footer-inner { width: min(960px, calc(100% - 40px)); padding: 24px 0; margin: auto; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 540px) {
  .nav { width: min(100% - 28px, 960px); min-height: 62px; }
  .nav-links { gap: 12px; font-size: 12px; }
  main { width: min(100% - 28px, 760px); padding: 40px 0 56px; }
  .inline { grid-template-columns: 1fr; }
  .form-shell { padding: 18px; }
}

/* Landing page */
.landing-page { background: #f4eddf; }
.landing-header { position: sticky; top: 0; z-index: 10; backdrop-filter: blur(16px); }
.landing-main { width: auto; margin: 0; padding: 0; }
.landing-page h1, .landing-page h2, .landing-page h3, .landing-page p { margin-top: 0; }
.landing-page h1 { max-width: 650px; font-size: clamp(48px, 6vw, 72px); line-height: 1.08; }
.landing-page h1 span { color: var(--green); }
.hero { width: min(1120px, calc(100% - 56px)); min-height: 720px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 425px); gap: 56px; align-items: center; overflow: hidden; }
.hero-copy { padding: 72px 0; }
.hero .lead { max-width: 520px; font-size: 18px; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 30px; }
.store-button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border: 1px solid var(--green); border-radius: 6px; background: var(--green); color: #fff; font-weight: 800; text-decoration: none; }
.store-button:hover { background: var(--green-dark); border-color: var(--green-dark); }
.text-action { color: var(--green-dark); font-size: 15px; font-weight: 750; text-decoration: none; }
.text-action::after { content: " →"; }
.hero-note { margin: 16px 0 0; color: var(--muted); font-size: 13px; }
.hero-phone { align-self: end; width: min(100%, 405px); margin: 46px auto -100px; }
.hero-phone img { display: block; width: 100%; height: auto; box-shadow: 0 24px 44px rgba(39, 55, 45, .17); }
.benefit-band { padding: 26px 28px; background: var(--green-dark); color: #fff; text-align: center; }
.benefit-band p { margin: 0; color: #badbc9; font-size: 14px; }
.benefit-band strong { font-size: clamp(19px, 3vw, 27px); }
.landing-section, .premium-band, .closing-section { padding: 96px max(28px, calc((100% - 1120px) / 2)); }
.section-heading { max-width: 560px; }
.section-heading h2, .premium-band h2, .closing-section h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.18; }
.section-heading > p:not(.eyebrow), .premium-band > div > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.how-section { background: var(--paper); }
.steps { max-width: 860px; padding: 0; margin: 44px 0 0; list-style: none; border-top: 1px solid var(--line); }
.steps li { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.steps span { display: inline-grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--green-soft); color: var(--green-dark); font-size: 14px; font-weight: 800; }
.steps p { margin: 0; color: var(--muted); }
.steps strong { color: var(--ink); }
.features-section { overflow: hidden; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 48px; }
.feature-item { position: relative; min-height: 580px; padding: 28px 28px 0; overflow: hidden; background: #e3eee6; border-radius: 8px; }
.feature-item:nth-child(2) { background: #e8eef0; }
.feature-item:nth-child(3) { background: #f3e8dd; }
.feature-kicker { margin-bottom: 16px; color: var(--green); font-size: 13px; font-weight: 800; }
.feature-item h3 { margin-bottom: 8px; font-size: 23px; line-height: 1.25; }
.feature-item div > p:last-child { max-width: 260px; color: var(--muted); font-size: 15px; }
.feature-item img { display: block; width: 76%; margin: 28px auto 0; box-shadow: 0 16px 30px rgba(42, 57, 48, .16); }
.premium-band { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px 72px; align-items: end; background: #143d2d; color: #fff; }
.premium-band .eyebrow { color: #8dd7b0; }
.premium-band > div > p:not(.eyebrow), .premium-note { color: #c8d7ce; }
.price-list { display: flex; margin: 0; border-left: 1px solid rgba(255,255,255,.24); }
.price-list div { min-width: 124px; padding: 0 0 0 24px; }
.price-list div + div { margin-left: 24px; border-left: 1px solid rgba(255,255,255,.24); }
.price-list dt { color: #c8d7ce; font-size: 13px; }
.price-list dd { margin: 4px 0 0; font-size: 29px; font-weight: 800; font-variant-numeric: tabular-nums; }
.premium-note { grid-column: 1 / -1; margin: 0; font-size: 13px; }
.closing-section { background: var(--paper); text-align: center; }
.closing-section h2 { margin-bottom: 28px; }
.closing-section .store-button { min-width: 210px; }

@media (max-width: 760px) {
  .landing-nav-links a:not(:last-child) { display: none; }
  .hero { width: min(100% - 32px, 520px); min-height: 0; grid-template-columns: 1fr; gap: 0; text-align: left; }
  .hero-copy { padding: 56px 0 20px; }
  .landing-page h1 { font-size: clamp(38px, 10vw, 42px); }
  .hero-phone { width: min(78%, 380px); margin: 24px auto -64px; }
  .landing-section, .premium-band, .closing-section { padding: 68px 28px; }
  .feature-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-item { min-height: 470px; }
  .feature-item img { width: min(64%, 250px); }
  .premium-band { grid-template-columns: 1fr; }
  .price-list { width: fit-content; }
}

@media (max-width: 420px) {
  .nav-links { gap: 0; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .steps li { grid-template-columns: 42px 1fr; gap: 12px; }
  .price-list div { min-width: 106px; padding-left: 16px; }
  .price-list div + div { margin-left: 16px; }
}
