:root {
  color-scheme: light;
  --bg: #f7f4ed;
  --surface: rgba(255, 255, 255, 0.82);
  --text: #182018;
  --muted: #647064;
  --line: rgba(24, 32, 24, 0.12);
  --green: #2f6b45;
  --green-dark: #204d31;
  --lime: #dff1b7;
  --orange: #f09a55;
  --shadow: 0 24px 80px rgba(37, 57, 40, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(223, 241, 183, 0.8), transparent 28rem),
    radial-gradient(circle at 100% 18%, rgba(240, 154, 85, 0.16), transparent 25rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; text-decoration: none; letter-spacing: -0.02em; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 13px; background: var(--green); color: white; font-size: 20px; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; }
.nav-links a { text-decoration: none; color: var(--muted); }
.nav-links a:hover { color: var(--text); }
.nav-links a.button { color: #fff; }
.nav-links a.button:hover { color: #fff; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 20px; border-radius: 14px; background: var(--green); color: #fff; text-decoration: none; font-weight: 750; box-shadow: 0 10px 30px rgba(47, 107, 69, 0.2); }
.button:hover { background: var(--green-dark); transform: translateY(-1px); }
.button.secondary { background: transparent; border: 1px solid var(--line); color: var(--text); box-shadow: none; }
.hero { display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 56px; min-height: 650px; padding: 72px 0 96px; }
.eyebrow { display: inline-flex; padding: 7px 12px; border-radius: 999px; background: var(--lime); color: var(--green-dark); font-size: 13px; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; }
h1 { margin: 22px 0 20px; max-width: 760px; font-size: clamp(46px, 7vw, 84px); line-height: 0.98; letter-spacing: -0.06em; }
.lead { max-width: 650px; margin: 0; color: var(--muted); font-size: clamp(18px, 2vw, 22px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.micro { margin-top: 18px; color: var(--muted); font-size: 13px; }
.phone { position: relative; width: min(380px, 100%); margin: auto; padding: 18px; border: 1px solid rgba(24, 32, 24, 0.1); border-radius: 36px; background: #fcfbf8; box-shadow: var(--shadow); transform: rotate(2deg); }
.phone::before { content: ""; display: block; width: 90px; height: 7px; margin: 0 auto 18px; border-radius: 99px; background: #d7d8d3; }
.chat { padding: 20px; border-radius: 24px; background: #e9f2e7; }
.chat-title { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-weight: 800; }
.chat-title span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: #fff; }
.bubble { margin: 10px 0; padding: 13px 15px; border-radius: 16px; background: #fff; font-size: 14px; box-shadow: 0 4px 16px rgba(37, 57, 40, 0.05); }
.bubble.user { margin-left: 28px; background: #dff1b7; }
.macro { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 11px; }
.macro span { padding: 8px 4px; border-radius: 9px; background: #f5f6f1; text-align: center; font-size: 11px; }
.section { padding: 88px 0; }
.section h2 { max-width: 760px; margin: 0 0 18px; font-size: clamp(34px, 5vw, 56px); line-height: 1.05; letter-spacing: -0.045em; }
.section-intro { max-width: 660px; color: var(--muted); font-size: 18px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); backdrop-filter: blur(10px); }
.card-icon { font-size: 30px; }
.card h3 { margin: 18px 0 9px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); }
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 42px; }
.step { position: relative; padding-top: 58px; }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: 0; left: 0; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 13px; background: var(--green); color: #fff; font-weight: 800; }
.step h3 { margin: 0 0 8px; }
.step p { margin: 0; color: var(--muted); }
.cta { margin: 50px 0 90px; padding: 55px; border-radius: 32px; background: var(--green); color: #fff; text-align: center; box-shadow: var(--shadow); }
.cta h2 { margin: 0 0 14px; font-size: clamp(34px, 5vw, 54px); letter-spacing: -0.045em; }
.cta p { margin: 0 auto 26px; max-width: 620px; color: rgba(255,255,255,0.78); }
.cta .button { background: #fff; color: var(--green-dark); }
footer { border-top: 1px solid var(--line); padding: 30px 0 44px; color: var(--muted); font-size: 13px; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { text-decoration: none; }
.legal { width: min(820px, calc(100% - 40px)); margin: 40px auto 100px; padding: 44px; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow); }
.legal h1 { margin-top: 0; font-size: clamp(38px, 6vw, 62px); }
.legal h2 { margin-top: 38px; font-size: 24px; letter-spacing: -0.02em; }
.legal p, .legal li { color: #495449; }
.legal-meta { padding: 14px 16px; border-radius: 14px; background: #eef3e5; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }

@media (max-width: 760px) {
  .wrap { width: min(100% - 28px, 1120px); }
  .nav-links a:not(.button) { display: none; }
  .nav-links .button { min-height: 42px; padding: 0 14px; }
  .hero { grid-template-columns: 1fr; gap: 56px; min-height: auto; padding: 52px 0 80px; }
  .phone { max-width: 340px; transform: none; }
  .cards, .steps, .support-grid { grid-template-columns: 1fr; }
  .section { padding: 65px 0; }
  .cta { padding: 38px 22px; margin-bottom: 60px; }
  .footer-row { align-items: flex-start; flex-direction: column; }
  .legal { width: min(100% - 24px, 820px); padding: 26px 20px; margin-top: 20px; }
}
