:root {
  --ink: #10231d;
  --ink-soft: #40534d;
  --paper: #f6f7f2;
  --white: #ffffff;
  --mint: #dff2e6;
  --mint-strong: #bde4ca;
  --green: #1d6b4f;
  --green-deep: #0f4f3a;
  --lime: #d9ee83;
  --line: #dfe5df;
  --shadow: 0 20px 60px rgba(16, 35, 29, 0.11);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-tight { padding: 64px 0; }
.bg-white { background: var(--white); }
.bg-deep { background: var(--ink); color: var(--white); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 1000;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
}
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 35, 29, 0.08);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.03em; }
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--lime);
  display: grid;
  place-items: center;
  font-size: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.brand small { display: block; color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-top: -3px; }
.nav-links { display: flex; align-items: center; gap: 28px; font-weight: 650; font-size: 14px; }
.nav-links a { color: var(--ink-soft); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--green-deep); }
.nav-cta { padding: 11px 17px; border-radius: 999px; background: var(--ink); color: var(--white)!important; }
.menu-btn { display: none; border: 0; background: transparent; padding: 9px; cursor: pointer; }
.menu-btn span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.bg-deep .eyebrow { color: var(--lime); }

h1, h2, h3 { margin: 0; letter-spacing: -0.045em; line-height: 1.05; }
h1 { font-size: clamp(46px, 7vw, 86px); max-width: 920px; }
h2 { font-size: clamp(34px, 5vw, 56px); max-width: 780px; }
h3 { font-size: 24px; }
p { margin: 0; }
.lead { font-size: clamp(18px, 2vw, 22px); color: var(--ink-soft); max-width: 730px; line-height: 1.55; }
.bg-deep .lead { color: #d3ddd8; }

.hero { padding: 86px 0 72px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(340px, .84fr); gap: 62px; align-items: center; }
.hero-copy { display: grid; gap: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 20px; border-radius: 999px; font-weight: 800; font-size: 14px; border: 1px solid transparent; transition: transform .2s ease, background .2s ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green-deep); color: var(--white); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-arrow::after { content: "↗"; font-size: 16px; }

.hero-visual {
  position: relative;
  min-height: 520px;
  background: var(--mint);
  border: 1px solid #cfe1d4;
  border-radius: 38px;
  padding: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: var(--lime);
  right: -110px;
  top: -90px;
}
.dashboard { position: relative; z-index: 2; display: grid; gap: 18px; }
.dash-top { display: flex; align-items: center; justify-content: space-between; }
.dots { display: flex; gap: 6px; }
.dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(16,35,29,.25); }
.mini-label { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.growth-card { padding: 24px; border-radius: 22px; background: var(--ink); color: var(--white); }
.growth-card strong { display: block; font-size: 42px; letter-spacing: -.05em; margin: 8px 0 2px; }
.growth-card p { color: #c9d6d0; font-size: 14px; }
.bar-chart { height: 118px; display: flex; align-items: end; gap: 8px; margin-top: 22px; }
.bar-chart span { flex: 1; background: var(--lime); border-radius: 6px 6px 2px 2px; opacity: .92; }
.bar-chart span:nth-child(1) { height: 34%; }
.bar-chart span:nth-child(2) { height: 46%; }
.bar-chart span:nth-child(3) { height: 41%; }
.bar-chart span:nth-child(4) { height: 62%; }
.bar-chart span:nth-child(5) { height: 58%; }
.bar-chart span:nth-child(6) { height: 78%; }
.bar-chart span:nth-child(7) { height: 92%; }
.process-card { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.process-card div { background: rgba(255,255,255,.78); border: 1px solid rgba(16,35,29,.08); border-radius: 18px; padding: 18px; }
.process-card b { display: block; font-size: 15px; }
.process-card small { color: var(--ink-soft); }

.trust-strip { padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px 36px; color: var(--ink-soft); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.trust-row span::before { content: "●"; color: var(--green); margin-right: 10px; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-head > div { display: grid; gap: 14px; }
.section-head p { max-width: 430px; color: var(--ink-soft); }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 330px; padding: 30px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 20px; overflow: hidden; }
.service-card:nth-child(1) { background: var(--mint); }
.service-card:nth-child(4) { background: var(--ink); color: var(--white); }
.service-card:nth-child(4) p { color: #ced8d4; }
.service-number { font-size: 12px; font-weight: 900; letter-spacing: .14em; color: var(--green); }
.service-card:nth-child(4) .service-number { color: var(--lime); }
.service-card p { color: var(--ink-soft); max-width: 520px; }
.service-link { margin-top: auto; font-size: 14px; font-weight: 800; }
.service-link::after { content: "  ↗"; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.copy-stack { display: grid; gap: 22px; }
.copy-stack p { color: var(--ink-soft); }
.feature-list { display: grid; gap: 14px; margin-top: 6px; }
.feature { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; }
.feature-icon { width: 42px; height: 42px; border-radius: 14px; background: var(--mint); display: grid; place-items: center; font-weight: 900; color: var(--green-deep); }
.feature p { font-size: 14px; margin-top: 4px; }

.system-panel { padding: 34px; border-radius: 34px; background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.system-flow { display: grid; gap: 14px; margin-top: 22px; }
.system-step { display: grid; grid-template-columns: 44px 1fr auto; gap: 14px; align-items: center; padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.055); }
.system-step b { font-size: 14px; }
.system-step small { color: #cbd7d2; }
.system-step em { font-style: normal; color: var(--lime); }
.step-num { width: 44px; height: 44px; display: grid; place-items: center; background: var(--lime); color: var(--ink); border-radius: 13px; font-weight: 900; }

.cta-band { background: var(--green-deep); color: var(--white); border-radius: 34px; padding: 54px; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.cta-band h2 { font-size: clamp(34px, 4vw, 52px); max-width: 700px; }
.cta-band p { color: #d6e5df; max-width: 610px; margin-top: 14px; }

.page-hero { padding: 82px 0 68px; }
.page-hero .container { display: grid; gap: 22px; }
.page-hero h1 { max-width: 980px; font-size: clamp(44px, 6vw, 76px); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { padding: 28px; border-radius: 22px; border: 1px solid var(--line); background: var(--white); min-height: 220px; }
.value-card b { display: block; color: var(--green); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 38px; }
.value-card p { color: var(--ink-soft); margin-top: 14px; }

.timeline { display: grid; gap: 0; border-top: 1px solid var(--line); }
.timeline-row { display: grid; grid-template-columns: 100px 240px 1fr; gap: 28px; padding: 28px 0; border-bottom: 1px solid var(--line); align-items: start; }
.timeline-row span { font-weight: 900; color: var(--green); }
.timeline-row h3 { font-size: 22px; }
.timeline-row p { color: var(--ink-soft); max-width: 700px; }

.service-detail { padding: 36px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 80px .8fr 1.2fr; gap: 36px; }
.service-detail:last-child { border-bottom: 1px solid var(--line); }
.service-detail .num { font-weight: 900; color: var(--green); }
.service-detail p { color: var(--ink-soft); }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tag { border: 1px solid var(--line); background: var(--white); border-radius: 999px; padding: 8px 12px; font-size: 13px; font-weight: 700; color: var(--ink-soft); }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: start; }
.contact-card { padding: 30px; background: var(--ink); color: var(--white); border-radius: 28px; position: sticky; top: 110px; }
.contact-card p { color: #d0dad5; margin-top: 12px; }
.contact-card address { font-style: normal; margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); line-height: 1.8; }
.contact-card .mini-label { color: var(--lime); }
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 13px; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #cad4cd; border-radius: 14px; background: var(--white); padding: 14px 15px; color: var(--ink); outline: none; transition: border .2s, box-shadow .2s; }
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(29,107,79,.1); }
.form-note { font-size: 12px; color: var(--ink-soft); }
.honeypot { position: absolute; left: -9999px; }

footer { padding: 58px 0 24px; background: #0b1a16; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr; gap: 50px; padding-bottom: 50px; }
.footer-brand p { color: #aabbb4; max-width: 430px; margin-top: 18px; }
.footer-col h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--lime); margin-bottom: 16px; }
.footer-col { display: grid; align-content: start; gap: 9px; }
.footer-col a, .footer-col address { color: #c5d0cb; font-style: normal; font-size: 14px; }
.footer-bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #91a49c; font-size: 12px; display: flex; justify-content: space-between; gap: 18px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 920px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 450px; }
  .section-head { align-items: start; flex-direction: column; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 64px 1fr; }
  .service-detail > div:last-child { grid-column: 2; }
  .contact-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .menu-btn { display: block; }
  .nav-links { position: absolute; left: 14px; right: 14px; top: 70px; display: none; flex-direction: column; align-items: stretch; gap: 4px; background: var(--white); padding: 14px; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 10px; }
  .nav-cta { text-align: center; }
  .hero { padding-top: 58px; }
  .hero-grid { gap: 42px; }
  .hero-visual { padding: 20px; min-height: auto; }
  .services-grid, .values-grid, .form-row { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .cta-band { padding: 34px 26px; flex-direction: column; align-items: flex-start; }
  .timeline-row { grid-template-columns: 50px 1fr; }
  .timeline-row p { grid-column: 2; }
  .service-detail { grid-template-columns: 44px 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}
