:root {
  --bg: #f6f8f7;
  --surface: #ffffff;
  --text: #14201d;
  --muted: #5d6b67;
  --line: #dde5e2;
  --brand: #0d6e5c;
  --brand-dark: #0a5749;
  --brand-soft: #e8f5f1;
  --shadow: 0 18px 50px rgba(13, 110, 92, 0.12);
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), #159b82);
  color: #fff;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-weight: 800;
}

.brand-text { font-family: "Plus Jakarta Sans", Inter, sans-serif; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff !important;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--brand) !important;
  border-color: var(--brand);
}

.btn-outline:hover { background: var(--brand-soft); }

.btn-sm { padding: 0.6rem 1rem; font-size: 0.9rem; }
.btn-block { width: 100%; margin-top: 0.75rem; }
.contact-card .btn-block:first-of-type { margin-top: 1rem; }

.hero {
  padding: 4.5rem 0 3rem;
  background:
    radial-gradient(circle at top right, rgba(13, 110, 92, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-block;
  margin: 0 0 0.75rem;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: 1.2rem; }

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.75rem 0 2rem;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stats li {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
}

.hero-stats strong {
  display: block;
  margin-bottom: 0.25rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  position: relative;
  min-height: 360px;
}

.panel-card {
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.panel-main {
  background: linear-gradient(160deg, #0d6e5c, #12856f 55%, #0a5749);
  color: #fff;
  min-height: 250px;
}

.panel-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(78%, 280px);
  background: var(--surface);
  border: 1px solid var(--line);
}

.panel-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.panel-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0.5rem 0 1.25rem;
}

.panel-bars {
  display: grid;
  gap: 0.65rem;
}

.panel-bars span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.section { padding: 4.5rem 0; }
.section-muted { background: #eef3f1; }
.section-cta { padding-bottom: 2rem; }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.prose p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.section-head { margin-bottom: 2rem; max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; max-width: 720px; }
.section-intro { color: var(--muted); margin: 0; font-size: 1.05rem; }

.card-grid,
.solution-grid,
.contact-grid,
.process-grid {
  display: grid;
  gap: 1.25rem;
}

.card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.solution-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.solution-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-grid { grid-template-columns: 1fr 0.95fr; align-items: center; }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.process-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.process-num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.process-step h3 { margin-bottom: 0.5rem; }
.process-step p { color: var(--muted); margin: 0; font-size: 0.95rem; }

.card,
.solution,
.contact-card,
.cta-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card { padding: 1.5rem; }
.card-icon {
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.card p,
.solution p,
.cta-box p {
  color: var(--muted);
  margin: 0;
}

.solution {
  display: block;
  padding: 1.5rem;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.solution:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #b9d8cf;
}

.solution-static { cursor: default; }
.solution-static:hover { transform: none; box-shadow: none; }

.solution-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.solution-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.solution-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--brand);
}

.cta-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff, #f2faf7);
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 800;
}

.contact-card { padding: 1.5rem; }

.contact-row {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-of-type { border-bottom: 0; }

.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  background: #10221e;
  color: #d7e4df;
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-inner strong { color: #fff; }
.footer-inner p { margin: 0.35rem 0 0; color: #a8bbb4; }
.footer-inner p a { color: #d7e4df; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a { color: #d7e4df; }
.copyright { font-size: 0.92rem; }

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .card-grid,
  .card-grid-3,
  .solution-grid,
  .solution-grid-2,
  .contact-grid,
  .cta-box,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats { grid-template-columns: 1fr; }
  .hero-panel { min-height: 280px; margin-top: 1rem; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .site-nav.open { display: flex; }
  .site-nav .btn { width: 100%; }
}
