:root {
  --bg: #f8fbf6;
  --bg-2: #ffffff;
  --bg-soft: #f0f7ec;
  --surface: rgba(255,255,255,0.88);
  --text: #1e291d;
  --muted: #647061;
  --line: rgba(33, 44, 29, 0.08);
  --brand: #69ad48;
  --brand-dark: #4f8336;
  --brand-soft: rgba(105, 173, 72, 0.12);
  --shadow-lg: 0 24px 60px rgba(64, 92, 48, 0.10);
  --shadow-md: 0 16px 36px rgba(64, 92, 48, 0.08);
  --shadow-sm: 0 10px 22px rgba(64, 92, 48, 0.06);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 0% 0%, rgba(105,173,72,0.12), transparent 26%),
    radial-gradient(circle at 100% 20%, rgba(166,213,142,0.12), transparent 24%),
    linear-gradient(180deg, #fbfdf9 0%, #f8fbf6 38%, #ffffff 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.06; }
ul { margin: 0; padding-left: 1.1rem; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.card-surface {
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.86));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(33,44,29,0.06);
}
.topbar-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-wrap { display: flex; align-items: center; gap: 14px; }
.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  object-fit: cover;
  background: #fff;
}
.brand-name { margin: 0; font-weight: 800; }
.brand-sub { margin: 0; color: var(--muted); font-size: 0.94rem; }
.topbar-nav { display: flex; align-items: center; gap: 22px; color: var(--muted); font-weight: 600; }
.topbar-nav a:hover { color: var(--text); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 15px 24px;
  font-weight: 700; border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-small { padding: 12px 18px; }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--brand), #7fc15c); box-shadow: 0 14px 28px rgba(105,173,72,0.22); }
.btn-secondary { background: rgba(255,255,255,0.9); border-color: var(--line); color: var(--text); }
.btn-full { width: 100%; }
.hero, .section, .offer-section { padding: 88px 0; }
.section-soft { background: linear-gradient(180deg, rgba(240,247,236,0.85), rgba(255,255,255,0.7)); }
.eyebrow, .section-label, .offer-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px; font-size: 0.92rem; font-weight: 700;
}
.eyebrow, .section-label { color: var(--brand-dark); background: var(--brand-soft); }
.offer-badge { color: #fff; background: linear-gradient(135deg, var(--brand), #82c760); }
.hero-grid { display: grid; grid-template-columns: 1fr 1.02fr; gap: 42px; align-items: center; }
.hero h1 { font-size: clamp(2.9rem, 5.6vw, 5.2rem); max-width: 12ch; letter-spacing: -0.04em; }
.hero-text, .section-heading p, .reassurance-copy p, .form-intro p, .offer-copy p { max-width: 62ch; color: var(--muted); font-size: 1.05rem; }
.hero-points { display: flex; gap: 10px; flex-wrap: wrap; margin: 28px 0; }
.hero-points span {
  padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,0.86); border: 1px solid var(--line); box-shadow: var(--shadow-sm); font-weight: 600;
}
.hero-actions, .hero-proof, .offer-box, .offer-aside, .form-head, .footer-inner, .reassurance-layout { display: flex; align-items: center; }
.hero-actions { gap: 14px; flex-wrap: wrap; }
.hero-proof { gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.proof-card {
  min-width: 225px; padding: 18px 20px; border-radius: var(--radius-md); background: rgba(255,255,255,0.78); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.proof-card strong { display: block; margin-bottom: 6px; }
.proof-card span { color: var(--muted); font-size: 0.95rem; }
.hero-visual { position: relative; min-height: 640px; }
.hero-image-card { padding: 18px; overflow: hidden; width: min(100%, 620px); margin-left: auto; }
.hero-image-card img { width: 100%; border-radius: 24px; }
.mini-card {
  position: absolute; left: 0; top: 58%; transform: translateY(-50%); width: 290px; padding: 14px;
  display: grid; grid-template-columns: 84px 1fr; gap: 14px;
}
.mini-card img { border-radius: 18px; width: 84px; height: 84px; object-fit: cover; }
.mini-card span { color: var(--muted); font-size: .92rem; }
.floating-pill {
  position: absolute; padding: 12px 16px; border-radius: 999px; background: rgba(255,255,255,0.94);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); font-weight: 700;
}
.floating-pill-right { right: 18px; bottom: 24px; }
.floating-pill-left { left: 70px; top: 30px; }
.offer-box { justify-content: space-between; gap: 30px; padding: 34px; }
.offer-copy h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
.offer-aside { flex-direction: column; gap: 16px; min-width: 240px; }
.offer-list { color: var(--muted); }
.section-heading { margin-bottom: 34px; }
.center { text-align: center; margin-inline: auto; }
.narrow { max-width: 760px; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card { padding: 28px; }
.icon-badge {
  width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; font-weight: 800;
  color: var(--brand-dark); background: var(--brand-soft); margin-bottom: 18px;
}
.reassurance-layout { justify-content: space-between; gap: 30px; }
.reassurance-copy { max-width: 480px; }
.reassurance-grid { display: grid; grid-template-columns: repeat(2, minmax(180px, 1fr)); gap: 16px; flex: 1; }
.reassurance-item { padding: 22px 20px; font-weight: 700; text-align: center; }

.contact-box { justify-content: space-between; gap: 24px; padding: 34px; }
.field-row-single { grid-template-columns: 1fr; }
.field-medium { max-width: 240px; }
.form-layout.single-column { max-width: 860px; }
.form-intro { margin-bottom: 24px; }
.lead-form { padding: 28px; }
.form-head { justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.form-head span { color: var(--muted); }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 16px; }
.field { display: grid; gap: 8px; }
.field label { font-weight: 700; font-size: .95rem; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid rgba(33,44,29,0.10); background: rgba(255,255,255,0.96); color: var(--text);
  border-radius: 18px; padding: 16px 18px; font: inherit; outline: none; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(105,173,72,0.45); box-shadow: 0 0 0 4px rgba(105,173,72,0.12);
}
.checkbox-wrap { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); margin: 16px 0 18px; }
.checkbox-wrap input { margin-top: 4px; }
.form-message { min-height: 26px; margin-top: 14px; font-weight: 600; }
.form-message.success { color: #2c7c3d; }
.form-message.error { color: #b63c3c; }
.footer { padding: 26px 0 40px; }
.footer-inner { justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); padding-top: 20px; color: var(--muted); font-size: .95rem; }
@media (max-width: 1080px) {
  .hero-grid, .reassurance-layout, .benefits-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { display: grid; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { min-height: auto; }
  .mini-card, .floating-pill { position: static; transform: none; margin-top: 16px; }
}
@media (max-width: 820px) {
  .topbar-inner, .topbar-nav, .offer-box, .footer-inner, .form-head, .contact-box { flex-direction: column; align-items: flex-start; }
  .hero, .section, .offer-section { padding: 70px 0; }
  .hero-grid, .field-row, .benefits-grid, .reassurance-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  .hero-visual { width: 100%; }
  .offer-aside { min-width: 0; width: 100%; align-items: flex-start; }
}
