@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap");

:root {
  --green: #0B5E4A;
  --green-light: #127A62;
  --green-dark: #084A3A;
  --green-glow: rgba(22, 163, 74, 0.15);
  --bg: #f6faf8;
  --surface: #ffffff;
  --text: #142820;
  --muted: #5c7269;
  --accent: #16A34A;
  --warn: #F59E0B;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(11, 94, 74, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 94, 74, 0.12);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "DM Sans", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --text-body: 1.125rem;
  --text-lead: 1.3125rem;
  --heading-tight: -0.015em;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: var(--text-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 2px; }
img, svg { max-width: 100%; height: auto; display: block; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(11, 94, 74, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo img { border-radius: 10px; }

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .15rem 1.5rem;
}

.site-nav a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  transition: color .15s;
}

.site-nav a:hover, .site-nav a.active { color: #fff; }

.nav-cta {
  margin-left: .35rem;
  padding: .55rem 1.1rem !important;
  background: #fff !important;
  color: var(--green) !important;
  border-radius: 999px;
  font-weight: 600 !important;
}

.nav-cta:hover { background: #f0faf6 !important; }

.nav-cta-outline {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, .5) !important;
}

.nav-cta-outline:hover {
  background: rgba(255, 255, 255, .12) !important;
  color: #fff !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
  font-family: inherit;
}

.btn:hover { transform: translateY(-2px); }

.btn:focus-visible,
.demo-play:focus-visible,
.demo-dot:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

a:focus-visible:not(.btn):not(.logo):not(.path-card) {
  outline: 2px solid var(--green-light);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(11, 94, 74, 0.25);
}
.btn-primary:hover { background: var(--green-light); }
.btn-outline {
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
}
.btn-white {
  background: #fff;
  color: var(--green);
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.btn-white:hover { background: #f0faf6; }
.btn-ghost-white {
  border: 2px solid rgba(255,255,255,.45);
  color: #fff;
  background: transparent;
}
.btn-ghost-white:hover { background: rgba(255,255,255,.1); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.14);
  color: #e8f5f0;
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem .85rem;
  border-radius: 999px;
  letter-spacing: .03em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.12);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

/* Layout */
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4.5rem 0; }
.section-alt { background: var(--surface); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.875rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: var(--heading-tight);
  line-height: 1.22;
}

.section-lead {
  text-align: center;
  color: var(--muted);
  max-width: 44rem;
  margin: 0 auto 2.5rem;
  font-size: var(--text-lead);
  line-height: 1.65;
}

.section-lead--tight { margin-bottom: 1.25rem; }

.lead-list {
  list-style: none;
  max-width: 34rem;
  margin: 0 auto 2.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.lead-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--muted);
  font-size: var(--text-lead);
  line-height: 1.55;
}

.lead-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: .6rem;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--green-glow);
}

.channel-promise {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(135deg, #e8f5f0 0%, #f6faf8 100%);
  border: 2px solid #b8d9cc;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.channel-promise-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: .5rem;
  letter-spacing: var(--heading-tight);
  line-height: 1.3;
}

.channel-promise p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}

.channel-promise strong { color: var(--green-dark); }

.channel-promise--left { text-align: left; margin-left: 0; margin-right: 0; }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(155deg, var(--green-dark) 0%, var(--green) 42%, #0d7a5f 100%);
  color: #fff;
  padding: 3rem 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(22, 163, 74, 0.22), transparent),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(255,255,255,.06), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 2rem; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 1.25rem 0 1.5rem;
  letter-spacing: var(--heading-tight);
}

.hero-lead {
  font-size: var(--text-lead);
  color: rgba(255,255,255,.9);
  max-width: 40rem;
  margin-bottom: 2rem;
  line-height: 1.65;
  font-weight: 400;
}

.hero--hub { padding-bottom: 3.25rem; }

.hero--hub .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo {
  display: block;
  text-decoration: none;
  margin-bottom: .25rem;
}

.hero-logo img {
  width: clamp(96px, 20vw, 152px);
  height: auto;
  border-radius: clamp(20px, 4vw, 32px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hero-logo:hover img {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 56px rgba(0, 0, 0, .34);
}

.hero--hub h1 { margin-top: .75rem; }

.hero--hub .hero-lead { margin-left: auto; margin-right: auto; }

.hero--hub .hero-cta { justify-content: center; }

.hero--hub .hero-trust { justify-content: center; }

.section--overlap {
  padding-top: 0;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: rgba(255,255,255,.75);
}

.hero-trust-item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img {
  width: min(100%, 480px);
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.25));
}

/* Trust bar */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid #e0ebe6;
  padding: 1.25rem 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.trust-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem;
  background: #f0f7f4;
  border: 1px solid #dce8e3;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-dark);
}

/* Stats */
.stats-bar {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0a5242 100%);
  color: #fff;
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: var(--heading-tight);
}

.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-top: .5rem;
  max-width: 12rem;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid #e8f0ec;
  transition: transform .2s, box-shadow .2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card h3 {
  color: var(--green-dark);
  margin-bottom: .6rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: var(--heading-tight);
}

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

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-glow);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg { width: 26px; height: 26px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.75rem; }

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Tables */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: .95rem;
}

.compare-table th, .compare-table td {
  padding: 1.1rem 1.35rem;
  text-align: left;
  border-bottom: 1px solid #e8f0ec;
}

.compare-table th { background: var(--green-dark); color: #fff; font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .bad { color: #b91c1c; }
.compare-table .good { color: var(--accent); font-weight: 600; }

.cost-table .cost-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: var(--heading-tight);
}

.cost-table .cost-meta {
  display: block;
  margin-top: .25rem;
  font-size: .8rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.4;
}

.cost-table td p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--text);
}

.cost-table tr.cost-highlight td {
  background: #f4faf7;
}

.cost-table tr.cost-highlight td:first-child {
  border-left: 4px solid var(--green);
}

.cost-table tfoot td {
  background: var(--green-dark);
  color: #fff;
  font-weight: 600;
  border-bottom: none;
}

.cost-table tfoot .cost-amount {
  color: #fff;
}

/* Feature split */
.feature-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 860px) {
  .feature-split { grid-template-columns: 1fr 1fr; }
}

.feature-visual {
  background: linear-gradient(145deg, #e8f5f0, #fff);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid #dce8e3;
}

/* FAQ */
.faq details {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.4rem;
  margin-bottom: .75rem;
  border: 1px solid #e8f0ec;
  transition: border-color .15s;
}

.faq details[open] { border-color: var(--green-light); }

.faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq p { margin-top: .85rem; color: var(--muted); font-size: .95rem; }

/* CTA */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  text-align: center;
  padding: 3.5rem 2rem;
  border-radius: calc(var(--radius) + 4px);
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(22,163,74,.3), transparent 50%);
}

.cta-band > * { position: relative; }

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: var(--heading-tight);
  line-height: 1.15;
}

.cta-band p {
  color: rgba(255,255,255,.82);
  margin-bottom: 1.75rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.65);
  padding: 3.5rem 1.5rem 2rem;
  margin-top: 0;
}

.footer-grid {
  max-width: 1120px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.footer-brand p { margin-top: .75rem; font-size: .9rem; line-height: 1.6; max-width: 22rem; }

.footer-brand .logo { margin-bottom: .5rem; }

.footer-col h4 {
  color: #fff;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .92rem;
  margin-bottom: .5rem;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-size: .85rem;
}

/* Search */
.search-box { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .75rem; }

.search-box input {
  flex: 1;
  min-width: 200px;
  padding: .85rem 1.1rem;
  border: 1px solid #dce8e3;
  border-radius: 999px;
  font-size: 1rem;
  font-family: inherit;
}

.search-box input:focus {
  outline: 2px solid var(--green-light);
  outline-offset: 2px;
}

.search-results { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }

.search-results li {
  background: #e8f5f0;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
}

/* Misc */
.sector-tabs { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 1.5rem; }
.sector-tab {
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1px solid #dce8e3;
  background: var(--surface);
  font-size: .9rem;
  cursor: pointer;
  color: var(--muted);
  font-family: inherit;
}
.sector-tab.active { background: var(--green); color: #fff; border-color: var(--green); }

.revenue-pill {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .5rem;
  border-radius: 6px;
  margin-left: .5rem;
}

.citation-block {
  background: var(--surface);
  border: 1px solid #e8f0ec;
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  font-size: .9rem;
  color: var(--muted);
}

.citation-block h3 { color: var(--green); font-size: 1rem; margin-bottom: .75rem; }
.citation-block .sources { margin-top: 1rem; padding-top: .75rem; border-top: 1px solid #e8f0ec; font-size: .8rem; }
.citation-block .sources a { color: var(--green); }

.stat-source,
.roi-source,
.card-source {
  display: block;
  margin-top: .5rem;
  font-size: .75rem;
  line-height: 1.45;
  color: var(--muted);
}

.stat-source a,
.roi-source a,
.card-source a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.stats-sources {
  margin-top: 1.5rem;
  text-align: center;
  font-size: .78rem;
  line-height: 1.55;
  color: rgba(255,255,255,.7);
}

.stats-sources a {
  color: rgba(255,255,255,.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.stats-bar .stat-source {
  margin-top: .4rem;
  font-size: .72rem;
  color: rgba(255,255,255,.65);
}

.stats-bar .stat-source a { color: rgba(255,255,255,.88); }

.api-card {
  background: linear-gradient(145deg, #f0f7f4, #fff);
  border: 1px solid #dce8e3;
  border-radius: var(--radius);
  padding: 2rem;
}

.api-card pre {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: var(--green-dark);
  color: #d4efe6;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  overflow: auto;
  line-height: 1.5;
}

.api-card code { font-family: ui-monospace, "Cascadia Code", monospace; }

/* Audience path cards */
.path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.path-card {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform .25s, box-shadow .25s;
}

.path-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(11, 94, 74, 0.2);
}

.path-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.path-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 74, 58, 0.92) 0%, rgba(8, 74, 58, 0.35) 55%, transparent 100%);
}

.path-card-body {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.path-card-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: .5rem;
}

.path-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: .65rem;
  line-height: 1.15;
  letter-spacing: var(--heading-tight);
}

.path-card p {
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 32rem;
}

.path-card .btn { pointer-events: none; }

/* Video / demo player */
.video-section { padding: 4rem 0; }

.demo-player {
  max-width: 900px;
  margin: 0 auto;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 94, 74, 0.15);
}

.demo-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--green-dark);
}

.demo-frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .35s ease;
}

.demo-frame.is-fading { opacity: 0; }

.demo-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.95);
  color: var(--green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  transition: transform .15s, opacity .15s;
  z-index: 2;
}

.demo-play:hover { transform: scale(1.06); }
.demo-play.is-playing { opacity: 0; pointer-events: none; }

.demo-play svg { width: 28px; height: 28px; margin-left: 4px; }

.demo-controls {
  background: var(--green-dark);
  color: #fff;
  padding: 1rem 1.25rem;
}

.demo-caption {
  font-size: .92rem;
  color: rgba(255,255,255,.85);
  margin-bottom: .75rem;
  min-height: 1.4em;
}

.demo-progress {
  height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: .75rem;
}

.demo-progress-bar {
  height: 100%;
  background: var(--accent);
  width: 20%;
  transition: width .3s;
}

.demo-dots {
  display: flex;
  gap: .5rem;
}

.demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  padding: 0;
}

.demo-dot:hover { background: rgba(255,255,255,.6); }
.demo-dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Photo grid & split */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.photo-grid .photo-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 200px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}

.photo-grid .photo-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.photo-grid .photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.photo-grid .span-7 { grid-column: span 7; }
.photo-grid .span-5 { grid-column: span 5; }
.photo-grid .span-4 { grid-column: span 4; }
.photo-grid .span-8 { grid-column: span 8; }

@media (max-width: 768px) {
  .photo-grid .span-7, .photo-grid .span-5,
  .photo-grid .span-4, .photo-grid .span-8 { grid-column: span 12; }
}

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(transparent, rgba(8, 74, 58, 0.92));
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* Page hero (subpages) */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 4rem 0 3rem;
  color: #fff;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 74, 58, 0.88) 0%, rgba(8, 74, 58, 0.55) 60%, rgba(8, 74, 58, 0.35) 100%);
}

.page-hero .container { position: relative; z-index: 1; max-width: 44rem; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 1rem 0 1.25rem;
  letter-spacing: var(--heading-tight);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid #e8f0ec;
  box-shadow: var(--shadow);
}

.testimonial blockquote {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: normal;
  font-weight: 500;
}

.testimonial cite {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-style: normal;
  font-size: .9rem;
  color: var(--muted);
}

.testimonial-cite--no-avatar {
  padding-top: .15rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e8f5f0;
  flex-shrink: 0;
}

.testimonial.is-anonymous blockquote {
  color: var(--text);
}

/* Nordic trust strip */
.nordic-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 2.25rem 1.5rem;
  border-top: 1px solid #e0ebe6;
  border-bottom: 1px solid #e0ebe6;
  background: linear-gradient(180deg, #fff 0%, #f8fcfa 100%);
}

.nordic-item {
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 0 1rem;
}

@media (min-width: 700px) {
  .nordic-item + .nordic-item {
    border-left: 1px solid #dce8e3;
  }
}

.nordic-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--green-dark);
  text-transform: none;
  letter-spacing: 0;
  margin-top: .25rem;
}

/* Split feature with image */
.split-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .split-block { grid-template-columns: 1fr 1fr; }
  .split-block.reverse .split-media { order: 2; }
}

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-media img { width: 100%; min-height: 280px; object-fit: cover; }

/* Download badges */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .75rem 1.25rem;
  background: var(--green-dark);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  transition: background .15s;
}

.store-badge:hover { background: var(--green); color: #fff; }
.store-badge small { display: block; font-size: .65rem; font-weight: 500; opacity: .75; }

.store-badge.soon {
  background: #e8f0ec;
  color: var(--muted);
  cursor: default;
  pointer-events: none;
}

/* ROI metrics (B2B) */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.roi-card {
  background: var(--surface);
  border: 1px solid #dce8e3;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.roi-card .num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  letter-spacing: var(--heading-tight);
}

.roi-card p { font-size: .88rem; color: var(--muted); margin-top: .5rem; }

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.market-card {
  background: var(--surface);
  border: 1px solid #dce8e3;
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
}

.market-card .num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
  letter-spacing: var(--heading-tight);
}

.market-card h3 {
  font-size: .95rem;
  margin-top: .65rem;
  color: var(--text);
}

.market-card p {
  font-size: .84rem;
  color: var(--muted);
  margin-top: .45rem;
  line-height: 1.5;
}

.target-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.target-list li {
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid #e8f0ec;
  border-radius: var(--radius);
}

.target-list strong { color: var(--green-dark); }

.target-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .65rem;
}

.target-tag {
  font-size: .75rem;
  color: var(--muted);
  background: #f4f8f6;
  border: 1px solid #e0ebe6;
  border-radius: 999px;
  padding: .2rem .55rem;
}

.search-empty { color: var(--muted); }

.section-title--left { text-align: left; }
.section-lead--left { text-align: left; margin-left: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .btn:hover, .card:hover, .path-card:hover { transform: none; }
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  padding: .5rem;
  cursor: pointer;
}

.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--green-dark);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: .85rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .site-nav .nav-cta { margin: 1rem 0 0; text-align: center; }
  .site-header { position: relative; flex-wrap: nowrap; }
}

@media (max-width: 640px) {
  .hero { padding-top: 2rem; }
  .hero--hub { padding-bottom: 2.5rem; }
  .section--overlap { margin-top: -1.5rem; }
  .path-card { min-height: 300px; }
  .nordic-item + .nordic-item { border-left: none; }
}

/* Kontakt & feedback */
.page-hero--compact { min-height: 14rem; padding: 3rem 0 2.5rem; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info h2 { font-size: 1.35rem; color: var(--green); margin-bottom: .25rem; }
.contact-info > p { color: var(--muted); max-width: 32rem; }

.contact-card {
  background: var(--surface);
  border: 1px solid rgba(11, 94, 74, .1);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: .35rem;
}

.contact-card a { font-weight: 600; font-size: 1.05rem; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
.contact-card p { margin-top: .45rem; font-size: .95rem; color: var(--muted); }
.contact-card code { font-size: .85em; background: var(--green-glow); padding: .1rem .35rem; border-radius: 4px; }

.contact-form {
  background: var(--surface);
  border: 1px solid rgba(11, 94, 74, .1);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form h2 { font-size: 1.35rem; color: var(--green); }
.form-hint { font-size: .92rem; color: var(--muted); margin-top: -.25rem; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-field span { font-weight: 600; font-size: .92rem; color: var(--text); }

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  padding: .75rem .9rem;
  border: 1px solid rgba(11, 94, 74, .18);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.form-field textarea { resize: vertical; min-height: 8rem; }

.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: .25rem; }
.form-status { font-size: .92rem; color: var(--muted); margin: 0; }
.form-status.is-ok { color: var(--accent); font-weight: 600; }
.form-status.is-error { color: #b91c1c; font-weight: 600; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}