:root {
  --green-950: #06291f;
  --green-900: #0b3d2e;
  --green-800: #10563f;
  --green-700: #168458;
  --green-600: #21a66f;
  --green-100: #e8f8ef;
  --green-50: #f4fbf7;
  --ink: #14231d;
  --muted: #62716b;
  --line: #dbe7e1;
  --paper: #ffffff;
  --cream: #fbf8f1;
  --shadow: 0 24px 70px rgba(7, 35, 26, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
.container { width: min(1120px, calc(100% - 36px)); margin-inline: auto; }
.section { padding: 82px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 231, 225, 0.8);
  backdrop-filter: blur(16px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 230px; }
.brand strong { display: block; font-size: 1.02rem; letter-spacing: -0.02em; }
.brand small { display: block; color: var(--muted); font-size: 0.78rem; margin-top: -1px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: white; box-shadow: 0 12px 28px rgba(22, 132, 88, 0.22);
}
.brand-mark svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a { color: var(--muted); font-weight: 700; font-size: 0.94rem; padding: 11px 13px; border-radius: 999px; }
.site-nav a:hover { color: var(--green-900); background: var(--green-50); }
.site-nav .nav-cta { color: #fff; background: var(--green-900); padding-inline: 18px; }
.site-nav .nav-cta:hover { color: #fff; background: var(--green-800); }
.menu-button { display: none; background: var(--green-900); color: white; border: 0; border-radius: 999px; padding: 10px 15px; font-weight: 800; }

.hero { padding-top: 96px; background:
  radial-gradient(circle at 15% 10%, rgba(33, 166, 111, 0.18), transparent 28%),
  radial-gradient(circle at 85% 20%, rgba(22, 132, 88, 0.12), transparent 28%),
  linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 52px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--green-700); font-weight: 900; text-transform: uppercase; letter-spacing: 0.11em; font-size: 0.78rem; }
h1, h2, h3 { margin: 0; line-height: 1.07; letter-spacing: -0.04em; color: var(--green-950); }
h1 { font-size: clamp(2.75rem, 6vw, 5.4rem); max-width: 900px; }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); }
h3 { font-size: 1.25rem; }
p { color: var(--muted); }
.hero-lead { font-size: clamp(1.06rem, 1.6vw, 1.28rem); max-width: 660px; margin: 24px 0 0; color: #41534c; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 14px 20px; border-radius: 999px;
  font-weight: 900; border: 1px solid transparent; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: white; background: linear-gradient(135deg, var(--green-700), var(--green-900)); box-shadow: 0 18px 34px rgba(22, 132, 88, 0.24); }
.button.secondary { background: white; color: var(--green-900); border-color: var(--line); }
.button.light { background: white; color: var(--green-900); }
.trust-list { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; padding: 0; margin: 22px 0 0; }
.trust-list li { background: var(--green-50); color: var(--green-900); border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; font-weight: 800; font-size: 0.9rem; }

.hero-card {
  background: rgba(255, 255, 255, 0.92); border: 1px solid var(--line); border-radius: 32px; box-shadow: var(--shadow); padding: 26px;
  position: relative; overflow: hidden;
}
.hero-card:before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 5%, rgba(33, 166, 111, 0.16), transparent 30%); pointer-events: none; }
.card-topline { position: relative; color: var(--green-700); font-weight: 900; margin-bottom: 18px; letter-spacing: 0.02em; }
.mini-dashboard { position: relative; display: grid; gap: 13px; }
.dash-item { display: grid; grid-template-columns: 46px 1fr; column-gap: 13px; align-items: center; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.dash-item .icon { grid-row: 1 / span 2; width: 46px; height: 46px; border-radius: 15px; background: var(--green-50); display: grid; place-items: center; font-size: 1.35rem; }
.dash-item strong { color: var(--green-950); }
.dash-item small { color: var(--muted); }
.metric-strip { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.metric-strip div { background: var(--green-900); color: white; border-radius: 16px; padding: 16px 10px; text-align: center; }
.metric-strip strong { display: block; font-size: 1.15rem; }
.metric-strip span { display: block; font-size: 0.76rem; color: rgba(255,255,255,.76); margin-top: 2px; }

.problem-section, .process-section { background: white; }
.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 52px; align-items: center; }
.split.reverse { grid-template-columns: 1.05fr 0.95fr; }
.split p { font-size: 1.06rem; }
.problem-list { display: grid; gap: 14px; }
.problem-list div { padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--green-50); }
.problem-list strong { display: block; color: var(--green-950); font-size: 1.05rem; margin-bottom: 5px; }
.problem-list span { color: var(--muted); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.section-head p:not(.eyebrow) { font-size: 1.07rem; }
.cards.four { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 25px; box-shadow: 0 14px 40px rgba(7,35,26,.06); }
.service-icon { width: 54px; height: 54px; border-radius: 17px; display: grid; place-items: center; background: var(--green-50); font-size: 1.5rem; margin-bottom: 18px; }
.service-card p { margin-bottom: 0; }

.review-section { background: linear-gradient(135deg, var(--green-950), var(--green-800)); color: white; }
.review-section h2, .review-section h3, .review-section .eyebrow { color: white; }
.review-section p { color: rgba(255,255,255,.78); }
.review-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: stretch; }
.review-copy, .sample-review { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 28px; padding: 34px; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 26px 0; }
.check-grid span { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 12px 14px; font-weight: 800; }
.check-grid span:before { content: "✓"; margin-right: 8px; color: #8af0ba; }
.sample-review ul { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.sample-review li { padding-left: 28px; position: relative; color: rgba(255,255,255,.8); }
.sample-review li:before { content: "→"; position: absolute; left: 0; color: #8af0ba; font-weight: 900; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.step span { width: 42px; height: 42px; border-radius: 999px; display: grid; place-items: center; color: white; background: var(--green-900); font-weight: 900; margin-bottom: 18px; }
.step p { margin-bottom: 0; }

.industries-section { background: var(--green-50); }
.industry-card { background: white; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); padding: 32px; }
.pill-wrap { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill-wrap span { padding: 10px 14px; background: var(--green-50); border: 1px solid var(--line); border-radius: 999px; font-weight: 800; color: var(--green-900); }

.pricing-section { background: white; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { border: 1px solid var(--line); border-radius: 28px; padding: 30px; background: white; box-shadow: 0 14px 40px rgba(7,35,26,.06); }
.price-card.featured { border-color: rgba(22,132,88,.4); background: var(--green-50); transform: translateY(-8px); }
.tag { display: inline-block; margin-bottom: 14px; background: var(--green-900); color: white; border-radius: 999px; padding: 7px 10px; font-size: .78rem; font-weight: 900; }
.price { font-size: 2.1rem; color: var(--green-950); font-weight: 950; margin: 16px 0 6px; letter-spacing: -0.04em; }
.price-card ul { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.price-card li { color: var(--muted); padding-left: 26px; position: relative; }
.price-card li:before { content: "✓"; position: absolute; left: 0; color: var(--green-700); font-weight: 900; }

.cta-section { background: var(--green-950); color: white; }
.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.04)); border: 1px solid rgba(255,255,255,.16); border-radius: 30px; padding: 38px; }
.cta-panel h2, .cta-panel .eyebrow { color: white; }
.cta-panel p { color: rgba(255,255,255,.78); }
.cta-actions { justify-content: flex-end; margin-top: 0; }

.site-footer { background: #051d17; color: white; padding: 52px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 36px; }
.footer-brand strong, .footer-brand small { color: white; }
.footer-note, .site-footer p { color: rgba(255,255,255,.68); }
.site-footer a { color: white; }
.site-footer a:hover { color: #8af0ba; }
.site-footer h4 { margin: 0 0 12px; color: white; }
.copyright { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.58); font-size: .9rem; }

@media (max-width: 980px) {
  .hero-grid, .split, .split.reverse, .review-panel, .cta-panel, .footer-grid { grid-template-columns: 1fr; }
  .cards.four, .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1120px); }
  .section { padding: 58px 0; }
  .nav-wrap { min-height: 68px; }
  .menu-button { display: inline-flex; }
  .site-nav { display: none; position: absolute; top: 68px; left: 14px; right: 14px; background: white; border: 1px solid var(--line); border-radius: 22px; padding: 12px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .site-nav.open { display: flex; }
  .site-nav a { border-radius: 14px; }
  .brand { min-width: 0; }
  .brand small { display: none; }
  .hero { padding-top: 58px; }
  .hero-card { padding: 18px; border-radius: 24px; }
  .metric-strip, .cards.four, .steps, .check-grid { grid-template-columns: 1fr; }
  .review-copy, .sample-review, .cta-panel { padding: 24px; border-radius: 22px; }
  .button { width: 100%; }
  h1 { font-size: clamp(2.4rem, 12vw, 4rem); }
}
