@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/InterVariable.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/InterVariable-Italic.woff2") format("woff2");
}

:root {
  --bg0: #f3f4f3;
  --bg1: #eef1ee;
  --card: #ffffff;
  --text: #0d1b16;
  --muted: rgba(13, 27, 22, 0.72);
  --muted2: rgba(13, 27, 22, 0.56);
  --line: rgba(13, 27, 22, 0.10);
  --shadow: 0 18px 38px rgba(10, 20, 16, 0.12);
  --shadow2: 0 10px 20px rgba(10, 20, 16, 0.10);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --primary: #137a5b;
  --primary2: #0c5f46;
  --primary-weak: rgba(19, 122, 91, 0.14);
  --focus: rgba(19, 122, 91, 0.35);
  --container: 1120px;
  --pad: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1100px 500px at 20% 0%, #ffffff 0%, var(--bg0) 45%, var(--bg1) 100%);
}

img,
svg {
  display: block;
}

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

.container {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cookie-root {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 999;
}

.cookie-banner {
  width: min(980px, calc(100% - (var(--pad) * 2)));
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 27, 22, 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  padding: 14px 14px;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-modal-backdrop[hidden] {
  display: none !important;
}

.cookie-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.cookie-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary2);
}

.cookie-desc {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-modal-backdrop {
  pointer-events: auto;
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 22, 0.36);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 1000;
}

.cookie-modal {
  width: min(720px, 100%);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(13, 27, 22, 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cookie-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(13, 27, 22, 0.10);
}

.cookie-modal-head h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--primary2);
}

.cookie-x {
  border: 1px solid rgba(13, 27, 22, 0.12);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.cookie-x:hover {
  background: rgba(19, 122, 91, 0.08);
}

.cookie-modal-body {
  padding: 14px 16px 10px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 10px;
  border: 1px solid rgba(13, 27, 22, 0.10);
  border-radius: 18px;
  background: rgba(243, 244, 243, 0.7);
  margin-bottom: 10px;
}

.cookie-opt-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cookie-opt-desc {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-switch {
  position: relative;
  width: 56px;
  height: 34px;
  display: inline-flex;
}

.cookie-switch input {
  appearance: none;
  -webkit-appearance: none;
  width: 56px;
  height: 34px;
  margin: 0;
  border-radius: 999px;
  background: rgba(13, 27, 22, 0.18);
  border: 1px solid rgba(13, 27, 22, 0.16);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.cookie-switch input:checked {
  background: rgba(19, 122, 91, 0.35);
  border-color: rgba(19, 122, 91, 0.35);
}

.cookie-switch input:disabled {
  cursor: not-allowed;
  opacity: 0.75;
}

.cookie-switch .cookie-slider {
  position: absolute;
  top: 50%;
  left: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(13, 27, 22, 0.12);
  transform: translateY(-50%);
  transition: transform 180ms ease;
  pointer-events: none;
}

.cookie-switch input:checked + .cookie-slider {
  transform: translate(22px, -50%);
}

.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(13, 27, 22, 0.10);
}

.cookie-fab {
  pointer-events: auto;
  position: fixed;
  left: 16px;
  bottom: 16px;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(13, 27, 22, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow2);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.01em;
  backdrop-filter: blur(10px);
  z-index: 1001;
}

.cookie-fab:hover {
  background: rgba(19, 122, 91, 0.08);
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 10px 12px;
  background: var(--card);
  border-radius: 12px;
  box-shadow: var(--shadow2);
  transform: translateY(-140%);
  transition: transform 160ms ease;
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(243, 244, 243, 0.86), rgba(243, 244, 243, 0.55));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 27, 22, 0.06);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 18px 0 12px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 27, 22, 0.10);
  box-shadow: 0 12px 20px rgba(10, 20, 16, 0.10);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary2) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 12px 20px rgba(19, 122, 91, 0.22);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-sub {
  color: var(--muted2);
  font-size: 13px;
  font-weight: 600;
}

.topline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(13, 27, 22, 0.10);
  box-shadow: 0 10px 18px rgba(10, 20, 16, 0.08);
  color: rgba(13, 27, 22, 0.72);
  font-weight: 700;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1 1 420px;
}

.topline-k {
  color: rgba(13, 27, 22, 0.62);
  font-weight: 800;
}

.topline-v {
  color: rgba(13, 27, 22, 0.84);
}

.topline-v:hover {
  text-decoration: underline;
}

.topline-sep {
  color: rgba(13, 27, 22, 0.34);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(13, 27, 22, 0.12);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 16px rgba(10, 20, 16, 0.08);
  cursor: pointer;
}

.menu-btn:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.menu-btn-lines {
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
  display: inline-block;
}

.menu-btn-lines::before,
.menu-btn-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.menu-btn-lines::before {
  top: -6px;
}
.menu-btn-lines::after {
  top: 6px;
}

.nav-wrap {
  padding-bottom: 18px;
}

.nav-pill {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(13, 27, 22, 0.10);
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 14px;
  gap: 10px;
}

.nav-pill[hidden] {
  display: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  color: rgba(13, 27, 22, 0.78);
  text-decoration: none;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.nav-link:hover {
  background: rgba(19, 122, 91, 0.08);
  color: rgba(13, 27, 22, 0.92);
  transform: translateY(-1px);
}

.nav-link.is-active,
.nav-link[aria-current="page"],
.nav-link[aria-current="location"] {
  background: rgba(19, 122, 91, 0.14);
  color: rgba(13, 27, 22, 0.95);
  box-shadow: inset 0 0 0 1px rgba(19, 122, 91, 0.22);
}

.nav-link.is-active:hover,
.nav-link[aria-current="page"]:hover,
.nav-link[aria-current="location"]:hover {
  transform: none;
}

.nav-link:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropbtn {
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  line-height: 1.1;
}

.nav-dropbtn:focus:not(:focus-visible) {
  outline: none;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(13, 27, 22, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 4px;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 170ms ease, transform 170ms ease;
}

.nav-dropdown-menu .nav-dd-link {
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(13, 27, 22, 0.86);
  font-weight: 650;
  text-decoration: none;
  transition: background 140ms ease, transform 140ms ease;
}

.nav-dropdown-menu .nav-dd-link:hover {
  background: rgba(19, 122, 91, 0.08);
  transform: translateY(-1px);
}

.nav-dropdown-menu .nav-dd-link[aria-current="page"] {
  background: rgba(19, 122, 91, 0.12);
  box-shadow: inset 0 0 0 1px rgba(19, 122, 91, 0.20);
}

.nav-dropdown-menu .nav-dd-link:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease;
  user-select: none;
}

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

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary2) 100%);
  color: #fff;
  box-shadow: 0 14px 24px rgba(19, 122, 91, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 16px 30px rgba(19, 122, 91, 0.26);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(13, 27, 22, 0.14);
  box-shadow: 0 10px 18px rgba(10, 20, 16, 0.10);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.0);
  border-color: rgba(13, 27, 22, 0.12);
  color: rgba(13, 27, 22, 0.86);
}

.btn-lg {
  padding: 12px 18px;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  padding: 42px 0 10px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 42px;
  align-items: center;
}

.hero-media {
  display: grid;
  place-items: center;
}

.hero-image {
  width: min(520px, 100%);
  height: auto;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(13, 27, 22, 0.10);
  box-shadow: var(--shadow);
}

.hero-copy h1 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 12px 0 10px;
  color: var(--primary2);
}

.eyebrow {
  margin: 0;
  color: rgba(13, 27, 22, 0.62);
  font-weight: 700;
}

.hero-subhead {
  margin: 0 0 14px;
  color: rgba(13, 27, 22, 0.74);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 52ch;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 12px;
}

.bullet-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(13, 27, 22, 0.82);
  line-height: 1.5;
}

.bullet-icon {
  width: 22px;
  height: 22px;
  color: var(--primary);
  background: var(--primary-weak);
  border: 1px solid rgba(19, 122, 91, 0.18);
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.bullet-icon svg {
  width: 16px;
  height: 16px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.fineprint {
  margin: 0;
  color: rgba(13, 27, 22, 0.54);
  font-size: 12.5px;
}

/* Mockup (pure CSS placeholder image) */
.mockup {
  width: min(520px, 100%);
  aspect-ratio: 1.25 / 1;
  position: relative;
  filter: drop-shadow(0 28px 48px rgba(10, 20, 16, 0.16));
}

.mockup-screen {
  position: absolute;
  left: 14%;
  top: 10%;
  width: 74%;
  height: 72%;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8f7 100%);
  border: 1px solid rgba(13, 27, 22, 0.10);
  border-radius: 18px;
  overflow: hidden;
}

.mockup-topbar {
  height: 34px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 7px;
  background: rgba(13, 27, 22, 0.04);
  border-bottom: 1px solid rgba(13, 27, 22, 0.08);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(13, 27, 22, 0.20);
}

.mockup-body {
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.mockup-card {
  height: 88px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(19, 122, 91, 0.14) 0%, rgba(19, 122, 91, 0.08) 100%);
  border: 1px solid rgba(19, 122, 91, 0.18);
}

.mockup-list {
  display: grid;
  gap: 10px;
}

.mockup-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(13, 27, 22, 0.10);
}

.w70 {
  width: 70%;
}
.w55 {
  width: 55%;
}
.w85 {
  width: 85%;
}
.w60 {
  width: 60%;
}

.mockup-box {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44%;
  height: 44%;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(13, 27, 22, 0.10);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.box-lid {
  position: absolute;
  top: 0;
  height: 28%;
  width: 100%;
  background: linear-gradient(180deg, rgba(19, 122, 91, 0.18) 0%, rgba(19, 122, 91, 0.06) 100%);
  border-bottom: 1px solid rgba(13, 27, 22, 0.10);
}

.box-body {
  position: absolute;
  bottom: 0;
  height: 72%;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(243, 244, 243, 0.85) 100%);
}

.box-label {
  position: relative;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(19, 122, 91, 0.10);
  border: 1px solid rgba(19, 122, 91, 0.20);
  color: rgba(13, 27, 22, 0.82);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Sections */
.section {
  padding: 56px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.20) 100%);
  border-top: 1px solid rgba(13, 27, 22, 0.06);
  border-bottom: 1px solid rgba(13, 27, 22, 0.06);
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.03em;
  color: var(--primary2);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(13, 27, 22, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 26px rgba(10, 20, 16, 0.08);
  padding: 16px 16px 14px;
  text-align: center;
}

.stat-num {
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 34px;
  color: var(--primary2);
}

.stat-label {
  margin-top: 6px;
  color: rgba(13, 27, 22, 0.62);
  font-weight: 800;
  font-size: 12.5px;
}

.card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 27, 22, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 26px rgba(10, 20, 16, 0.10);
  padding: 18px 18px 16px;
}

.card h3 {
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(13, 27, 22, 0.10);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  box-shadow: 0 14px 26px rgba(10, 20, 16, 0.08);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--primary2);
  background: rgba(19, 122, 91, 0.12);
  border: 1px solid rgba(19, 122, 91, 0.18);
}

.step h3 {
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 27, 22, 0.10);
  border-radius: var(--radius-xl);
  box-shadow: 0 14px 26px rgba(10, 20, 16, 0.10);
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: rgba(13, 27, 22, 0.04);
}

.product-card h3 {
  margin: 0;
  padding: 12px 14px 14px;
  font-size: 14px;
  letter-spacing: -0.01em;
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(13, 27, 22, 0.10);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 22px;
}

.price-card.subtle {
  box-shadow: 0 14px 26px rgba(10, 20, 16, 0.10);
}

.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(19, 122, 91, 0.12);
  border: 1px solid rgba(19, 122, 91, 0.20);
  font-weight: 800;
  font-size: 12px;
  color: rgba(13, 27, 22, 0.82);
}

.price-card h3 {
  margin: 0 0 8px;
}

.price {
  margin: 0 0 14px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-value {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--primary2);
}

.price-sub {
  color: var(--muted2);
  font-weight: 700;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
  color: rgba(13, 27, 22, 0.80);
}

.checklist li {
  position: relative;
  padding-left: 26px;
  line-height: 1.5;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 16px;
  height: 16px;
  border-radius: 7px;
  background: rgba(19, 122, 91, 0.12);
  border: 1px solid rgba(19, 122, 91, 0.22);
  box-shadow: inset 0 0 0 2px rgba(19, 122, 91, 0.16);
}

.smallnote {
  margin: 10px 0 0;
  color: rgba(13, 27, 22, 0.54);
  font-size: 12.5px;
  line-height: 1.5;
}

/* Split panels */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.split-media {
  margin-bottom: 16px;
}

.photo-stack {
  display: grid;
  gap: 12px;
  align-content: start;
}

.photo-card {
  margin: 0;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 27, 22, 0.10);
  border-radius: var(--radius-xl);
  box-shadow: 0 14px 26px rgba(10, 20, 16, 0.10);
  overflow: hidden;
}

.photo-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: rgba(13, 27, 22, 0.04);
}

.photo-card figcaption {
  padding: 12px 14px 14px;
  color: rgba(13, 27, 22, 0.66);
  font-weight: 800;
  font-size: 12.5px;
}

.photo-panel {
  padding: 0;
  overflow: hidden;
}

.panel-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: rgba(13, 27, 22, 0.04);
}

.panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 27, 22, 0.10);
  border-radius: var(--radius-xl);
  box-shadow: 0 14px 26px rgba(10, 20, 16, 0.10);
  padding: 22px;
}

.panel-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.45) 100%);
}

.panel h3 {
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.panel p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.trust-item {
  background: rgba(19, 122, 91, 0.08);
  border: 1px solid rgba(19, 122, 91, 0.16);
  border-radius: 16px;
  padding: 14px 12px;
}

.trust-num {
  display: block;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--primary2);
}

.trust-label {
  display: block;
  margin-top: 6px;
  color: rgba(13, 27, 22, 0.64);
  font-weight: 700;
  font-size: 12.5px;
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 27, 22, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 26px rgba(10, 20, 16, 0.08);
  padding: 14px 16px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.faq-body {
  padding-top: 10px;
}

.faq-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: start;
}

.form {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(13, 27, 22, 0.10);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  font-weight: 700;
  color: rgba(13, 27, 22, 0.78);
  font-size: 13px;
}

.field-full {
  grid-column: 1 / -1;
}

input,
textarea {
  font: inherit;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(13, 27, 22, 0.14);
  background: rgba(255, 255, 255, 0.86);
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

input:focus,
textarea:focus {
  border-color: rgba(19, 122, 91, 0.45);
  box-shadow: 0 0 0 4px rgba(19, 122, 91, 0.16);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 2px 0 12px;
  color: rgba(13, 27, 22, 0.72);
  line-height: 1.5;
  font-size: 13px;
  font-weight: 600;
}

.consent-input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  margin-top: 2px;
}

.form-msg {
  margin: 10px 0 0;
  min-height: 1.3em;
  color: rgba(13, 27, 22, 0.62);
  font-size: 12.5px;
}

.turnstile {
  margin: 10px 0 6px;
}

.toast-root {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 9999;
  display: grid;
  gap: 10px;
}

.toast {
  width: min(420px, calc(100vw - 32px));
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 10px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast-text {
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
}

.toast-close {
  border: 0;
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.toast-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  .toast {
    transition: none;
  }
}

.prose {
  max-width: 76ch;
}

.prose h2 {
  margin: 18px 0 10px;
  letter-spacing: -0.02em;
  color: var(--primary2);
}

.prose h3 {
  margin: 16px 0 10px;
  letter-spacing: -0.02em;
  color: var(--primary2);
}

.prose h4 {
  margin: 14px 0 8px;
  letter-spacing: -0.01em;
  color: rgba(13, 27, 22, 0.84);
}

.prose p {
  color: var(--muted);
  line-height: 1.75;
}

.prose ul {
  margin: 0 0 10px;
  padding-left: 18px;
  color: rgba(13, 27, 22, 0.78);
  line-height: 1.75;
}

.prose li {
  margin: 6px 0;
}

.copy-card {
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(13, 27, 22, 0.12);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow2);
  padding: 14px;
}

.copy-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.copy-title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgba(13, 27, 22, 0.82);
}

.copy-pre {
  margin: 12px 0 0;
  padding: 12px;
  border-radius: 14px;
  border: 1px dashed rgba(13, 27, 22, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(13, 27, 22, 0.78);
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
}

/* Reviews marquee */
.marquee {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 27, 22, 0.10);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow2);
  overflow: hidden;
  padding: 14px 12px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.marquee:focus {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll 70s linear infinite;
}

.marquee:hover .marquee-track,
.marquee:focus .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}

.review-card {
  width: min(440px, calc(100vw - 72px));
  min-width: 310px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 27, 22, 0.10);
  border-radius: 18px;
  padding: 14px 14px 12px;
  box-shadow: 0 14px 28px rgba(10, 20, 16, 0.10);
}

.review-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.review-author {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.review-date {
  color: var(--muted2);
  font-weight: 700;
  font-size: 12.5px;
  white-space: nowrap;
}

.review-title {
  margin: 0 0 8px;
  font-weight: 800;
  color: var(--primary2);
  letter-spacing: -0.02em;
}

.review-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* Blog */
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.post-card {
  --post-accent-a: rgba(19, 122, 91, 0.95);
  --post-accent-b: rgba(45, 108, 223, 0.92);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 27, 22, 0.10);
  border-radius: var(--radius-xl);
  box-shadow: 0 14px 26px rgba(10, 20, 16, 0.10);
  overflow: hidden;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.post-card.is-ratgeber {
  --post-accent-a: rgba(19, 122, 91, 0.95);
  --post-accent-b: rgba(26, 164, 155, 0.95);
}

.post-card.is-praxis {
  --post-accent-a: rgba(45, 108, 223, 0.95);
  --post-accent-b: rgba(255, 170, 70, 0.95);
}

.post-card.is-pflegegrad {
  --post-accent-a: rgba(122, 59, 201, 0.95);
  --post-accent-b: rgba(19, 122, 91, 0.95);
}

.post-card.is-pflegegrad .post-badge {
  background: linear-gradient(90deg, rgba(122, 59, 201, 0.14), rgba(19, 122, 91, 0.12));
  border-color: rgba(122, 59, 201, 0.22);
  color: rgba(13, 27, 22, 0.86);
}

.post-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--post-accent-a), var(--post-accent-b));
  opacity: 0.95;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(10, 20, 16, 0.16);
  border-color: rgba(19, 122, 91, 0.18);
}

.post-media {
  display: block;
  position: relative;
}

.post-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 27, 22, 0) 45%, rgba(13, 27, 22, 0.12) 100%);
  pointer-events: none;
}

.post-media {
  display: block;
}

.post-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(13, 27, 22, 0.04);
  filter: saturate(1.08) contrast(1.02);
  transition: transform 280ms ease, filter 280ms ease;
}

.post-card:hover .post-media img {
  transform: scale(1.02);
  filter: saturate(1.16) contrast(1.04);
}

.post-body {
  padding: 16px 18px 18px;
}

.post-meta {
  margin: 0 0 8px;
  color: rgba(13, 27, 22, 0.56);
  font-weight: 800;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.post-date {
  color: rgba(13, 27, 22, 0.56);
}

.post-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(13, 27, 22, 0.10);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.52));
  box-shadow: 0 10px 18px rgba(10, 20, 16, 0.08);
  color: rgba(13, 27, 22, 0.78);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.post-card.is-ratgeber .post-badge {
  background: linear-gradient(90deg, rgba(19, 122, 91, 0.14), rgba(26, 164, 155, 0.12));
  border-color: rgba(19, 122, 91, 0.22);
  color: rgba(13, 27, 22, 0.84);
}

.post-card.is-praxis .post-badge {
  background: linear-gradient(90deg, rgba(45, 108, 223, 0.14), rgba(255, 170, 70, 0.14));
  border-color: rgba(45, 108, 223, 0.22);
  color: rgba(13, 27, 22, 0.84);
}

.post-title {
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: var(--primary2);
  font-size: 18px;
  line-height: 1.25;
}

.post-excerpt {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
}

/* Blog article helpers */
.callout {
  border-radius: 18px;
  border: 1px solid rgba(13, 27, 22, 0.10);
  background: linear-gradient(135deg, rgba(19, 122, 91, 0.12), rgba(45, 108, 223, 0.10));
  box-shadow: 0 14px 26px rgba(10, 20, 16, 0.10);
  padding: 16px 16px;
}

.callout h3 {
  margin: 0 0 8px;
  color: var(--primary2);
  letter-spacing: -0.02em;
}

.callout p {
  margin: 0;
  color: rgba(13, 27, 22, 0.78);
  line-height: 1.65;
  font-weight: 650;
}

.callout.soft {
  background: linear-gradient(135deg, rgba(122, 59, 201, 0.10), rgba(19, 122, 91, 0.10));
}

.table-wrap {
  border-radius: 18px;
  border: 1px solid rgba(13, 27, 22, 0.10);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 14px 26px rgba(10, 20, 16, 0.10);
  overflow: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.data-table th,
.data-table td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(13, 27, 22, 0.08);
  vertical-align: top;
}

.data-table th {
  text-align: left;
  font-size: 12.5px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: rgba(13, 27, 22, 0.70);
  background: linear-gradient(90deg, rgba(19, 122, 91, 0.10), rgba(45, 108, 223, 0.08));
}

.data-table tr:hover td {
  background: rgba(19, 122, 91, 0.05);
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(13, 27, 22, 0.10);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(13, 27, 22, 0.80);
  font-weight: 850;
  font-size: 12.5px;
}

.tag.green {
  background: rgba(19, 122, 91, 0.12);
  border-color: rgba(19, 122, 91, 0.22);
}

.tag.blue {
  background: rgba(45, 108, 223, 0.12);
  border-color: rgba(45, 108, 223, 0.22);
}

.tag.purple {
  background: rgba(122, 59, 201, 0.12);
  border-color: rgba(122, 59, 201, 0.22);
}

.tag.orange {
  background: rgba(255, 170, 70, 0.14);
  border-color: rgba(255, 170, 70, 0.24);
}

.contact-aside {
  display: grid;
  gap: 12px;
}

.aside-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 27, 22, 0.10);
  border-radius: var(--radius-xl);
  box-shadow: 0 14px 26px rgba(10, 20, 16, 0.10);
  padding: 20px;
}

.aside-card.soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.60) 0%, rgba(255, 255, 255, 0.40) 100%);
}

.aside-card h3 {
  margin: 0 0 10px;
}

.aside-line {
  margin: 0 0 10px;
  display: grid;
  gap: 4px;
}

.aside-k {
  color: rgba(13, 27, 22, 0.56);
  font-weight: 800;
  font-size: 12.5px;
}

.text-link {
  font-weight: 800;
  color: var(--primary2);
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  padding: 28px 0 34px;
  border-top: 1px solid rgba(13, 27, 22, 0.06);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.05));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.footer-head {
  margin: 0 0 10px;
  color: rgba(13, 27, 22, 0.66);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .brand-logo {
  width: 44px;
  height: 44px;
}

.footer-contact {
  margin-top: 10px;
  display: grid;
  gap: 6px;
  color: rgba(13, 27, 22, 0.72);
  font-weight: 650;
  line-height: 1.45;
}

.footer-contact a {
  color: inherit;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}

.footer-legal {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(13, 27, 22, 0.06);
  color: rgba(13, 27, 22, 0.64);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* To top */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary2) 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(19, 122, 91, 0.25);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.to-top svg {
  width: 22px;
  height: 22px;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.to-top:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-media {
    order: 2;
  }
  .hero-copy {
    order: 1;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .pricing {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }

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

  .stats {
    grid-template-columns: 1fr;
  }

  .post-grid {
    grid-template-columns: 1fr;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .nav-wrap {
    padding-bottom: 12px;
  }

  .nav-pill {
    border-radius: 18px;
    padding: 10px;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropbtn {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 6px;
    padding: 6px 6px 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    opacity: 1;
    transform: none;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 220ms ease;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 520px;
    pointer-events: auto;
  }

  .nav-dropdown-menu .nav-dd-link {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(13, 27, 22, 0.12);
  }
}

@media (max-width: 760px) {
  .cookie-content {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  .cookie-modal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-fab {
    left: 12px;
    bottom: 12px;
  }

  .header-row {
    padding: 14px 0 10px;
  }

  .topline {
    display: none;
  }

  .btn-ghost {
    display: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
