:root {
  --bg: #f7f5f2;
  --bg-alt: #ffffff;
  --bg-strong: #101615;
  --text: #161817;
  --muted: #5b615f;
  --border-subtle: #e0ddd6;
  --accent: #1e5b3c;
  --accent-soft: #e2f3e9;
  --accent-strong: #0f3b27;
  --danger: #d84646;
  --warning: #e9b44c;
  --surface: #ffffff;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 999px;
  --shadow-soft: 0 18px 45px rgba(9, 22, 17, 0.14);
  --shadow-subtle: 0 10px 25px rgba(0, 0, 0, 0.04);
  
  /* Decision-driven colors */
  --decision-go: #22c55e;
  --decision-go-bg: #dcfce7;
  --decision-caution: #f59e0b;
  --decision-caution-bg: #fef3c7;
  --decision-stop: #ef4444;
  --decision-stop-bg: #fee2e2;
  --decision-go-dark: #16a34a;
  --decision-caution-dark: #d97706;
  --decision-stop-dark: #dc2626;
}

[data-theme="dark"] {
  --bg: #0a0d0c;
  --bg-alt: #141817;
  --bg-strong: #1a1f1e;
  --text: #e8ebe9;
  --muted: #8a908d;
  --border-subtle: #2a2f2d;
  --accent: #2d7a52;
  --accent-soft: #1a3d2a;
  --accent-strong: #1e5b3c;
  --surface: #141817;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.4);
  --shadow-subtle: 0 10px 25px rgba(0, 0, 0, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
  line-height: 1.6;
}

[data-theme="dark"] body {
  background: radial-gradient(circle at top left, #0a0d0c 0, #141817 40%, #0f1211 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 100% - 2.5rem);
  margin: 0 auto;
}

.container-wide {
  width: min(1400px, 100% - 2.5rem);
  margin: 0 auto;
}

.container-narrow {
  width: min(800px, 100% - 2.5rem);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section-full {
  padding: 0;
  margin: 0;
  width: 100%;
}

.section-alt {
  padding: 6rem 0;
  background: #f8faf9;
  transition: background 0.3s ease;
}

[data-theme="dark"] .section-alt {
  background: #141817;
}

.section-strong {
  padding: 6rem 0;
  background: var(--bg-strong);
  color: #ffffff;
}

.section-strong h2,
.section-strong h3 {
  color: #ffffff;
}

.section-strong .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.section-header {
  text-align: left;
  max-width: 700px;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
  font-weight: 600;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 4vw, 4.2rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.4rem, 3vw, 3rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 700;
}

h4 {
  font-size: 1.15rem;
  font-weight: 600;
}

p {
  margin: 0;
  line-height: 1.6;
}

.section-intro {
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid var(--border-subtle);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .site-header {
  background: rgba(10, 13, 12, 0.95);
  border-bottom-color: var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  gap: 1.5rem;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(30, 91, 60, 0.2);
}

.logo:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 91, 60, 0.3);
}

.main-nav {
  display: flex;
  gap: 1.6rem;
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  padding: 0.2rem 0;
  color: var(--muted);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.2s ease;
  border-radius: 2px;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.theme-toggle {
  border: none;
  background: transparent;
  font-size: 1.1rem;
  padding: 0.4rem;
  cursor: pointer;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  width: 36px;
  height: 36px;
}

.theme-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.theme-icon-dark {
  display: none;
}

[data-theme="dark"] .theme-icon-light {
  display: none;
}

[data-theme="dark"] .theme-icon-dark {
  display: inline-block;
}

.lang-switch {
  display: inline-flex;
  padding: 0.12rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.03);
  transition: background 0.3s ease;
}

[data-theme="dark"] .lang-switch {
  background: rgba(255, 255, 255, 0.05);
}

.lang-button {
  border: none;
  background: transparent;
  font-size: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
}

.lang-button.is-active {
  background: var(--surface);
  color: var(--accent-strong);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: background 0.3s ease;
}

[data-theme="dark"] .lang-button.is-active {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  padding: 0.9rem 2rem;
}

.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(9, 22, 17, 0.25);
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-subtle);
  color: var(--text);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .btn-ghost {
  background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-full {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
}

/* Hero */

.hero {
  padding: 6rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
  border-bottom: 1px solid var(--border-subtle);
}

[data-theme="dark"] .hero {
  background: linear-gradient(180deg, #0a0d0c 0%, #141817 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 600px;
}

.hero-copy h1 {
  margin-bottom: 1.2rem;
  color: var(--text);
}

.hero-copy h1 strong {
  color: var(--accent-strong);
  font-weight: 800;
}

.hero-sub,
.hero-sub-2 {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 400;
}

.hero-sub-2 {
  margin-top: 0.3rem;
}

.value-prop {
  margin: 1.5rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
  color: var(--text);
  font-weight: 500;
  font-style: italic;
  font-size: 0.95rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero-ctas .btn-primary {
  font-size: 1rem;
  padding: 1rem 2.4rem;
  box-shadow: 0 4px 20px rgba(30, 91, 60, 0.3);
}

.hero-ctas .btn-primary:hover {
  box-shadow: 0 6px 30px rgba(30, 91, 60, 0.4);
  transform: translateY(-3px);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.tag {
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--surface);
  color: var(--muted);
  transition: all 0.2s ease;
  font-weight: 500;
}

.tag:hover {
  border-color: var(--accent-soft);
  background: var(--accent-soft);
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-map {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  background: linear-gradient(180deg, #0a1f16 0%, #020605 100%);
  color: #f4f8f6;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-map-header {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.9rem;
  background: rgba(3, 10, 7, 0.92);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-green {
  background: #4caf50;
}

.dot-amber {
  background: #ffc107;
}

.dot-red {
  background: #f44336;
}

.hero-map-body {
  padding: 1.5rem 1.6rem 1.6rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin-bottom: 1.1rem;
}

.field-cell {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: linear-gradient(135deg, #173b2b, #0a1f16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.field-cell:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.risk-low {
  background: linear-gradient(135deg, var(--decision-go), var(--decision-go-dark));
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.risk-mid {
  background: linear-gradient(135deg, var(--decision-caution), var(--decision-caution-dark));
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.risk-high {
  background: linear-gradient(135deg, var(--decision-stop), var(--decision-stop-dark));
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.metric-card {
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: rgba(2, 12, 8, 0.95);
  border: 1px solid rgba(142, 204, 173, 0.4);
  transition: all 0.2s ease;
}

.metric-card:hover {
  background: rgba(2, 12, 8, 1);
  border-color: rgba(142, 204, 173, 0.6);
  transform: translateY(-2px);
}

.metric-card:nth-child(1) {
  border-color: rgba(34, 197, 94, 0.5);
}

.metric-card:nth-child(2) {
  border-color: rgba(245, 158, 11, 0.5);
}

.metric-card:nth-child(3) {
  border-color: rgba(34, 197, 94, 0.5);
}

.metric-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(221, 237, 230, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.3rem;
}

.metric-value {
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* Cards / grids */

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-subtle);
  transition: all 0.2s ease;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  border-color: var(--accent-soft);
}

.card-decision {
  border-left: 4px solid var(--decision-go);
  background: var(--decision-go-bg);
}

.card-decision.caution {
  border-left-color: var(--decision-caution);
  background: var(--decision-caution-bg);
}

.card-decision.stop {
  border-left-color: var(--decision-stop);
  background: var(--decision-stop-bg);
}

.card h3,
.card h4 {
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--muted);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}

.problem-grid .card {
  border-left: 4px solid var(--decision-stop);
  padding-left: 2rem;
}

.problem-grid .card:nth-child(1) {
  border-left-color: var(--decision-stop);
}

.problem-grid .card:nth-child(2) {
  border-left-color: var(--decision-caution);
}

.problem-grid .card:nth-child(3) {
  border-left-color: var(--decision-caution);
}

.problem-grid .card:nth-child(4) {
  border-left-color: var(--decision-stop);
}

.problem-grid .card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: var(--text);
  line-height: 1.3;
}

.problem-grid .card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.solution-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

.insight-grid .card {
  border-left: 5px solid var(--decision-go);
  padding-left: 2rem;
  background: linear-gradient(to right, var(--decision-go-bg) 0%, var(--surface) 15%);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.insight-grid .card:nth-child(1) {
  border-left-color: var(--decision-go);
  background: linear-gradient(to right, var(--decision-go-bg) 0%, var(--surface) 15%);
}

.insight-grid .card:nth-child(2) {
  border-left-color: var(--decision-go);
  background: linear-gradient(to right, var(--decision-go-bg) 0%, var(--surface) 15%);
}

.insight-grid .card:nth-child(3) {
  border-left-color: var(--decision-caution);
  background: linear-gradient(to right, var(--decision-caution-bg) 0%, var(--surface) 15%);
}

.insight-grid .card:nth-child(4) {
  border-left-color: var(--decision-go);
  background: linear-gradient(to right, var(--decision-go-bg) 0%, var(--surface) 15%);
}

.insight-grid .card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--accent-strong);
  line-height: 1.3;
}

.insight-grid .card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.solution-main h3 + p {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.solution-main h3:not(:first-of-type) {
  margin-top: 2.2rem;
}

.solution-aside {
  padding: 2rem 1.8rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #0f1f18 0%, #020605 100%);
  color: #e8f0eb;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-aside h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.flow-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 0.75rem;
}

.flow-step {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid rgba(173, 215, 190, 0.8);
  background: rgba(34, 197, 94, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.flow-list h4 {
  margin-bottom: 0.1rem;
  font-size: 0.9rem;
}

.flow-list p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(220, 235, 226, 0.85);
}

.who-for {
  margin-top: 1.6rem;
}

.who-for h3 {
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.chip-card {
  border-radius: 16px;
  border: 1px solid rgba(214, 232, 221, 0.5);
  padding: 0.9rem 1rem;
  background: rgba(2, 10, 7, 0.9);
  transition: all 0.2s ease;
}

.chip-card:hover {
  background: rgba(2, 10, 7, 1);
  border-color: rgba(214, 232, 221, 0.8);
  transform: translateY(-2px);
}

.chip-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #ffffff;
}

.chip-card p {
  font-size: 0.78rem;
  color: rgba(229, 240, 234, 0.85);
  line-height: 1.5;
}

/* How it works */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem;
}

.step-card {
  position: relative;
  padding: 1.6rem 1.4rem 1.5rem;
  border-radius: 18px;
  background: var(--surface);
  border: 2px solid var(--border-subtle);
  transition: all 0.2s ease;
}

.step-card:hover {
  border-color: var(--accent-soft);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.step-number {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.step-card h3 {
  margin-bottom: 0.4rem;
}

.step-card p {
  font-size: 0.86rem;
  color: var(--muted);
}

/* Proof / validation */

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.3rem;
}

.kpi-card {
  padding: 2rem 1.8rem;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--decision-go) 0%, var(--decision-go-dark) 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.25);
  transition: all 0.3s ease;
}

.kpi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.35);
}

.kpi-card:nth-child(2) {
  background: linear-gradient(135deg, var(--decision-caution) 0%, var(--decision-caution-dark) 100%);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}

.kpi-card:nth-child(2):hover {
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.35);
}

.kpi-card:nth-child(3) {
  background: linear-gradient(135deg, var(--decision-go) 0%, var(--decision-go-dark) 100%);
}

[data-theme="dark"] .kpi-card {
  background: linear-gradient(135deg, var(--decision-go-dark) 0%, #0f5d2e 100%);
}

[data-theme="dark"] .kpi-card:nth-child(2) {
  background: linear-gradient(135deg, var(--decision-caution-dark) 0%, #92400e 100%);
}

.kpi-value {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.kpi-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.95;
  line-height: 1.4;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: stretch;
}

.proof-details {
  border-left: 4px solid var(--decision-go);
  padding-left: 2rem;
}

.proof-details h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-strong);
}

.proof-details h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.proof-details h4 {
  margin-top: 1.2rem;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
}

.detail-list li {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.15rem 0;
}

.proof-visual {
  border-radius: 24px;
  background: linear-gradient(180deg, #0f1f18 0%, #020605 100%);
  padding: 2rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  color: #e8f0eb;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.poc-results h4 {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  color: rgba(232, 240, 235, 0.95);
  font-weight: 500;
}

.result-chart {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.chart-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.chart-label {
  font-size: 0.75rem;
  color: rgba(232, 240, 235, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.chart-bar {
  position: relative;
  height: 24px;
  background: rgba(2, 10, 7, 0.6);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(139, 209, 175, 0.2);
}

.chart-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--decision-go-dark) 0%, var(--decision-go) 100%);
  border-radius: 999px;
  transition: width 0.8s ease;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.chart-value {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  color: #e8f0eb;
}

.result-summary {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(139, 209, 175, 0.2);
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(232, 240, 235, 0.9);
}

.summary-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2d7a52;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.summary-text {
  line-height: 1.4;
}

[data-theme="dark"] .proof-visual {
  background: radial-gradient(circle at top, #1a2520 0, #0f1513 60%);
}

.why-matters {
  margin-top: 2.4rem;
  padding: 1.6rem 1.5rem;
  border-radius: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.bullet-row {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.3rem;
}

.bullet-row li {
  font-size: 0.9rem;
  color: var(--muted);
  position: relative;
  padding-left: 0.9rem;
}

.bullet-row li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}

.note {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 1.2rem;
}

.contact-list li {
  font-size: 1rem;
  color: var(--muted);
  padding: 0.4rem 0;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
}

.contact-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--decision-go);
  font-weight: 700;
  font-size: 1rem;
}

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1.2rem;
}

.chip {
  border-radius: 999px;
  border: 2px solid var(--accent);
  background: var(--accent);
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(30, 91, 60, 0.2);
}

.chip:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(30, 91, 60, 0.3);
}

[data-theme="dark"] .chip {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(45, 122, 82, 0.3);
}

[data-theme="dark"] .chip:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  box-shadow: 0 4px 16px rgba(45, 122, 82, 0.4);
}

.contact-form-wrapper {
  background: var(--surface);
  border-radius: 24px;
  padding: 2rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--border-subtle);
  transition: all 0.2s ease;
}

.contact-form-wrapper:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-soft);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label span,
legend {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  border-radius: 12px;
  border: 2px solid var(--border-subtle);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--surface);
  color: var(--text);
  transition: all 0.2s ease;
}

input:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

input:hover,
textarea:hover {
  border-color: var(--accent-soft);
}

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.checkbox-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 0.9rem;
}

.checkbox-row label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

input[type="checkbox"] {
  width: 14px;
  height: 14px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */

.site-footer {
  padding: 1.4rem 0 2.2rem;
  background: transparent;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.3rem;
  font-size: 0.78rem;
  color: var(--muted);
  transition: border-color 0.3s ease;
}

.footer-meta {
  opacity: 0.9;
}

/* Responsive */

@media (max-width: 960px) {
  .header-inner {
    flex-wrap: wrap;
    row-gap: 0.6rem;
  }

  .main-nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .solution-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .who-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kpi-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .section,
  .section-alt {
    padding: 4.2rem 0;
  }

  .hero {
    padding-top: 4rem;
  }

  .problem-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .insight-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .who-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .kpi-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form-wrapper {
    padding: 1.4rem 1.2rem;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkbox-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

