:root {
  --color-primary: #2e7d32;
  --color-primary-dark: #1b5e20;
  --color-primary-light: #4caf50;
  --color-secondary: #1976d2;
  --color-secondary-dark: #0d47a1;
  --color-bg: #ffffff;
  --color-bg-alt: #f6f8f5;
  --color-bg-dark: #14241a;
  --color-text: #1a2a20;
  --color-text-muted: #5a6b62;
  --color-text-inverse: #f4faf6;
  --color-border: #e2e8e3;
  --color-success: #2e7d32;
  --color-error: #c62828;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.04), 0 10px 20px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.08), 0 20px 60px rgba(0,0,0,.08);
  --container-max: 1120px;
  --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-stack);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.01em;
}
.logo:hover { text-decoration: none; }
.logo-mark { color: var(--color-primary); display: inline-flex; }
.logo-dot { color: var(--color-primary); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--color-text);
  font-weight: 500;
  font-size: .95rem;
}
.nav-cta {
  background: var(--color-primary);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
}
.nav-cta:hover { background: var(--color-primary-dark); text-decoration: none; }

@media (max-width: 640px) {
  .main-nav a:not(.nav-cta) { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 96px 0 112px;
  background: var(--color-bg-alt);
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(76,175,80,.10), transparent 55%),
    linear-gradient(180deg,
      rgba(255,255,255,.96) 0%,
      rgba(255,255,255,.90) 25%,
      rgba(255,255,255,.55) 55%,
      rgba(255,255,255,.20) 80%,
      rgba(255,255,255,.05) 100%
    );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--color-primary-dark);
  background: rgba(46,125,50,.10);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow-blue {
  color: var(--color-secondary-dark);
  background: rgba(25,118,210,.10);
}
.eyebrow-light {
  color: #cdebd0;
  background: rgba(255,255,255,.10);
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -.025em;
  font-weight: 800;
  margin: 0 0 20px;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--color-text-muted);
  margin: 0 auto 32px;
  max-width: 680px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-stats {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  padding: 22px 36px;
  margin-top: 24px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.stat {
  max-width: 220px;
  flex: 1 1 180px;
}
.stat strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1.25;
  margin-bottom: 4px;
}
.stat span {
  font-size: .9rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform .1s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover { background: var(--color-primary-dark); }

.btn-secondary {
  background: var(--color-secondary);
  color: #fff;
}
.btn-secondary:hover { background: var(--color-secondary-dark); }

.btn-ghost {
  background: transparent;
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
}
.btn-ghost:hover { background: rgba(46,125,50,.06); }

.btn-large {
  font-size: 1.05rem;
  padding: 14px 28px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn[disabled] {
  opacity: .65;
  cursor: not-allowed;
  transform: none !important;
}

/* ---------- Sections ---------- */

.section {
  padding: 88px 0;
}

.section-light {
  background: var(--color-bg-alt);
}

.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
}
.section-dark h2,
.section-dark h3 { color: var(--color-text-inverse); }
.section-dark .section-lead,
.section-dark p { color: rgba(244,250,246,.78); }
.section-dark strong { color: #cdebd0; }

.section h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 16px;
  font-weight: 800;
  max-width: 820px;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 720px;
  margin: 0 0 48px;
}

.inline-cta {
  display: inline-block;
  margin-top: 24px;
  font-weight: 600;
  color: var(--color-primary-dark);
}

/* ---------- Feature grid (customers) ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(25,118,210,.10);
  color: var(--color-secondary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  font-weight: 700;
}
.feature p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: .95rem;
}

/* ---------- Benefit grid (operators) ---------- */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}
.benefit {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .15s ease, border-color .15s ease;
}
.benefit:hover {
  transform: translateY(-2px);
  border-color: rgba(76,175,80,.4);
}
.benefit-number {
  font-size: .9rem;
  font-weight: 700;
  color: var(--color-primary-light);
  letter-spacing: .05em;
  margin-bottom: 8px;
}
.benefit h3 {
  font-size: 1.15rem;
  margin: 0 0 10px;
  line-height: 1.3;
  font-weight: 700;
}

.not-threat {
  background: rgba(76,175,80,.10);
  border: 1px solid rgba(76,175,80,.30);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 32px;
}
.not-threat h3 {
  margin-top: 0;
  font-size: 1.2rem;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--color-text-inverse);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  background:
    linear-gradient(135deg, transparent 0 35%, var(--color-primary-light) 35% 65%, transparent 65%) no-repeat,
    radial-gradient(circle, rgba(76,175,80,.25) 0 60%, transparent 60%);
  border-radius: 50%;
  background-position: center;
  background-size: 60% 60%, 100% 100%;
}

/* ---------- Forms ---------- */

.forms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-primary);
}
.form-card-secondary {
  border-top-color: var(--color-secondary);
}
.form-card h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  font-weight: 700;
}
.form-intro {
  color: var(--color-text-muted);
  margin: 0 0 24px;
  font-size: .95rem;
}

.field {
  margin-bottom: 16px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; }
}

.field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text);
}
.field input,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(46,125,50,.15);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(198,40,40,.12);
}
.field textarea { resize: vertical; min-height: 80px; }
.hint {
  display: block;
  font-size: .8rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 16px 0 0;
  min-height: 1.4em;
  font-size: .95rem;
  font-weight: 500;
}
.form-status.is-success { color: var(--color-success); }
.form-status.is-error { color: var(--color-error); }

.form-fineprint {
  font-size: .8rem;
  color: var(--color-text-muted);
  margin: 16px 0 0;
}

/* ---------- FAQ ---------- */

.section-faq {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.faq-item {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  border: 1px solid var(--color-border);
}
.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform .15s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 12px 0 0;
  color: var(--color-text-muted);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--color-primary-light);
}
.footer-tagline {
  margin: 0;
  color: rgba(244,250,246,.7);
}
.footer-provider {
  margin: 0;
  font-size: .9rem;
  color: rgba(244,250,246,.6);
}
.footer-provider strong {
  color: var(--color-primary-light);
  font-weight: 600;
}
.footer-meta {
  margin: 0;
  font-size: .85rem;
  color: rgba(244,250,246,.45);
}

/* ---------- Accessibility helpers ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .benefit { transition: none; }
}
