:root {
  --green: #07814b;
  --green-2: #15945b;
  --green-dark: #005c35;
  --green-deep: #003a2b;
  --mint: #e7f5ef;
  --cream: #fbfaf6;
  --white: #fff;
  --ink: #10232a;
  --muted: #65737a;
  --line: #dfe7e3;
  --shadow: 0 12px 30px rgba(4, 66, 42, .09);
  --shadow-sm: 0 4px 14px rgba(4, 66, 42, .07);
  --radius: 16px;
  --container: 1320px;
  --font: 'Manrope', 'Noto Sans Devanagari', sans-serif;
  --sticky-offset: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--sticky-offset) + 12px); }
body { margin: 0; overflow-x: hidden; background: var(--cream); color: var(--ink); font-family: var(--font); line-height: 1.5; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -.025em; }
h2 { font-size: clamp(2rem, 2.5vw, 2.35rem); }
h3 { font-size: 1rem; }
p { color: var(--muted); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 76px 0; }
.section[id], main section[id] { scroll-margin-top: calc(var(--sticky-offset) + 18px); }
.section-heading { margin-bottom: 26px; }
.section-heading.centered { text-align: center; }
.section-heading h2 { margin-bottom: 0; }
.eyebrow { display: inline-flex; align-items: center; margin-bottom: 10px; color: var(--green); font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.btn { min-height: 50px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-size: .9rem; font-weight: 800; transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline { border-color: var(--green); color: var(--green); background: #fff; }
.btn-light { background: #fff; color: var(--green-dark); border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: #fff; padding: 12px 18px; border-radius: 8px; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid #ffbf47; outline-offset: 3px; }

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 44px 0; }
  h2 { font-size: 1.7rem; }
  .btn { min-height: 46px; padding-inline: 20px; font-size: .85rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
