:root {
  --bg: #ffffff;
  --bg-elevated: #f4f7fa;
  --bg-soft: #f8fafc;
  --surface: #ffffff;
  --border: #e2e8f0;
  --text: #0f172a;
  --muted: #64748b;
  --accent: #0d9488;
  --accent-dim: rgba(13, 148, 136, 0.12);
  --accent-hover: #0f766e;
  --accent-soft: rgba(13, 148, 136, 0.06);
  --font: "DM Sans", system-ui, sans-serif;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px rgba(15, 23, 42, 0.08);
  --layout-max: 1120px;
  --layout-pad: clamp(1rem, 4vw, 1.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

.container {
  width: 100%;
  max-width: var(--layout-max);
  margin-inline: auto;
  padding-inline: var(--layout-pad);
  box-sizing: border-box;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent);
  font-weight: 600;
}

.logo-with-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-with-mark img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 11px;
  box-shadow: 0 2px 10px rgba(13, 148, 136, 0.25);
}

@media (max-width: 380px) {
  .logo-with-mark img {
    width: 38px;
    height: 38px;
  }
  .logo-with-mark {
    font-size: 1.1rem;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--text);
}

.nav a[aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
}

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.25);
}

.nav-cta:hover {
  background: var(--accent-hover);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 calc(max(0px, (100vw - var(--layout-max)) / 2) + var(--layout-pad)) 1rem;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  box-sizing: border-box;
}

.mobile-nav a {
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 0;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .mobile-nav:not([hidden]) {
    display: flex;
  }
}

.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3.5rem, 9vw, 6rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 85% 0%, rgba(13, 148, 136, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 60% at 5% 100%, rgba(59, 130, 246, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  pointer-events: none;
}

/* Startseite / großes Hero mit Foto */
.hero--visual {
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  padding: clamp(5rem, 12vw, 7rem) 0 clamp(4rem, 8vw, 5.5rem);
}

.hero--visual .hero-bg {
  background-image: linear-gradient(
      105deg,
      rgba(15, 23, 42, 0.93) 0%,
      rgba(15, 23, 42, 0.72) 42%,
      rgba(15, 23, 42, 0.35) 72%,
      rgba(15, 23, 42, 0.2) 100%
    ),
    url("https://images.unsplash.com/photo-1519003722824-304227a9ee90?auto=format&fit=crop&w=2400&q=85");
  background-size: cover;
  background-position: center;
}

.hero--visual .eyebrow {
  color: #5eead4;
}

.hero--visual .hero h1,
.hero--visual h1 {
  color: #fff;
}

.hero--visual .lead {
  color: rgba(248, 250, 252, 0.88);
  max-width: 34rem;
}

.hero--visual .hero-badges {
  color: rgba(248, 250, 252, 0.82);
}

.hero--visual .hero-badges li::before {
  background: #5eead4;
}

.hero--visual .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  backdrop-filter: blur(8px);
}

.hero--visual .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
  color: #fff;
}

.hero--visual .hero-card {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero--visual .hero-stat strong {
  color: var(--accent);
}

.hero--visual .hero-stat span {
  color: var(--muted);
}

.hero-photo-credit {
  position: absolute;
  bottom: 0.65rem;
  right: var(--layout-pad);
  z-index: 2;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  text-align: right;
}

.hero .container.hero-rail,
.page-hero .container.page-hero__inner {
  position: relative;
}

.hero .container.hero-rail .hero-photo-credit,
.page-hero .container.page-hero__inner .hero-photo-credit {
  right: var(--layout-pad);
}

.hero-photo-credit a {
  color: rgba(255, 255, 255, 0.65);
}

/* Unterseiten-Header mit Foto */
.page-hero {
  position: relative;
  min-height: min(52vh, 440px);
  display: flex;
  align-items: flex-end;
  padding: clamp(6rem, 14vw, 8rem) 0 clamp(2.25rem, 5vw, 3rem);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.45) 0%,
    rgba(15, 23, 42, 0.82) 100%
  );
}

/* Neutrales Transport-Motiv (ohne Dekoration/Figuren im Raum) */
.page-hero--leistungen .page-hero__bg {
  background-image: url("https://images.unsplash.com/photo-1601584115197-04bcd0bdbcd9?auto=format&fit=crop&w=2000&q=85");
}

.page-hero--warum .page-hero__bg {
  background-image: url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=2000&q=85");
}

.page-hero--vorgehen .page-hero__bg {
  background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=2000&q=85");
}

.page-hero--kontakt .page-hero__bg {
  background-image: url("https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&w=2000&q=85");
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-hero .eyebrow {
  color: #5eead4;
}

.page-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
  color: #fff;
}

.page-hero .lead {
  margin: 0;
  max-width: 40rem;
  color: rgba(248, 250, 252, 0.88);
}

.page-hero .hero-photo-credit {
  bottom: 0.5rem;
  right: var(--layout-pad);
}

/* Längere Textblöcke Unterseiten */
.page-prose {
  max-width: 48rem;
}

.page-prose p {
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.7;
}

.page-prose p:last-child {
  margin-bottom: 0;
}

.page-prose h2,
.page-prose h3 {
  color: var(--text);
  margin: 1.75rem 0 0.65rem;
  font-size: 1.2rem;
}

.page-prose h2:first-child,
.page-prose h3:first-child {
  margin-top: 0;
}

.page-prose ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.65;
}

.page-prose li {
  margin-bottom: 0.4rem;
}

.detail-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.detail-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
}

.detail-block h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--text);
}

.detail-block p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

.warum-extended {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .warum-extended {
    grid-template-columns: 1fr 1fr;
  }
}

.compare-list-title {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  padding-left: 1.5rem;
  position: relative;
  color: var(--muted);
  line-height: 1.55;
}

.compare-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-simple {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin: 0;
}

.timeline-simple dt {
  font-weight: 700;
  color: var(--text);
  margin-top: 1.25rem;
}

.timeline-simple dt:first-child {
  margin-top: 0;
}

.timeline-simple dd {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--text);
}

.lead {
  color: var(--muted);
  max-width: 36rem;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-badges li {
  position: relative;
  padding-left: 1.1rem;
}

.hero-badges li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.hero-stat {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.hero-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-stat:first-child {
  padding-top: 0;
}

.hero-stat strong {
  display: block;
  font-size: 2.25rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.hero-stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Page intro (Unterseiten) */
.page-head {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 5vw, 3rem);
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.page-head h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  letter-spacing: -0.02em;
}

.page-head .lead {
  margin: 0;
  max-width: 40rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.75rem;
}

.section-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.leistungen {
  background: var(--bg-elevated);
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .leistungen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .leistungen-grid {
    grid-template-columns: 1fr;
  }
}

.card-leistung {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}

.card-leistung:hover {
  border-color: rgba(13, 148, 136, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-wrap svg {
  width: 28px;
  height: 28px;
}

.card-leistung h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.card-leistung p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.split-dual {
  background: var(--bg);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 800px) {
  .split-grid {
    grid-template-columns: 1fr;
  }
}

.split-cta {
  background: linear-gradient(145deg, var(--accent-soft) 0%, var(--surface) 40%);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.split-pro {
  background: var(--surface);
  border: 1px solid var(--border);
}

.split-cta,
.split-pro {
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.25rem);
  box-shadow: var(--shadow);
}

.split-cta h2,
.split-pro h2 {
  margin: 0 0 0.75rem;
  font-size: 1.45rem;
}

.split-cta p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.split-note {
  margin: 1rem 0 0 !important;
  font-size: 0.88rem;
  color: var(--muted);
}

.pro-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pro-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.pro-list li:first-child {
  padding-top: 0;
}

.pro-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pro-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.pro-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.warum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .warum-grid {
    grid-template-columns: 1fr;
  }
}

.warum-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.warum-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-soft);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
}

.warum-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  position: relative;
}

.warum-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  position: relative;
}

.strategie {
  background: var(--bg-elevated);
}

.strategie-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 700px) {
  .strategie-layout {
    grid-template-columns: 1fr;
  }
}

.strategie-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
}

.strategie-card.accent {
  border-color: rgba(13, 148, 136, 0.35);
  background: linear-gradient(135deg, #fff 0%, var(--accent-soft) 100%);
}

.strategie-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: var(--accent);
}

.strategie-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.strategie-card p strong {
  color: var(--text);
}

.kontakt {
  padding-bottom: clamp(4rem, 10vw, 6rem);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 800px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
  }
}

.kontakt-intro h2 {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
}

.kontakt-intro > p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.kontakt-address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.8;
}

.kontakt-address strong {
  color: var(--text);
}

.kontakt-address a {
  color: var(--accent);
}

.kontakt-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-mail-hinweis {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.kontakt-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 500px) {
  .form-row.two {
    grid-template-columns: 1fr;
  }
}

.kontakt-form label {
  display: block;
}

.kontakt-form label span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.kontakt-form input,
.kontakt-form select,
.kontakt-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
}

.kontakt-form input:focus,
.kontakt-form select:focus,
.kontakt-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
  background: var(--bg);
}

.kontakt-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-hinweis {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.75rem 0 1rem;
}

.form-feedback {
  margin: 1rem 0 0;
  min-height: 1.5rem;
  font-weight: 500;
  color: var(--accent-hover);
}

/* Startseite: Vertrauensleiste */
.trust-strip {
  border-block: 1px solid var(--border);
  background: var(--bg);
  padding: 1.25rem 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.trust-strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-strip-inner span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Über uns / Split */
.split-about {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 880px) {
  .split-about {
    grid-template-columns: 1fr;
  }
}

.split-about__visual {
  border-radius: var(--radius);
  min-height: 320px;
  background:
    linear-gradient(145deg, rgba(13, 148, 136, 0.15) 0%, transparent 50%),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1200&q=85") center / cover;
  box-shadow: var(--shadow-md);
}

.split-about__text h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  letter-spacing: -0.02em;
}

.split-about__text > p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.split-about__list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.split-about__list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.split-about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent);
}

/* Leistungs-Vorschau Startseite */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .preview-grid {
    grid-template-columns: 1fr;
  }
}

.preview-card {
  display: block;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.preview-card:hover {
  border-color: rgba(13, 148, 136, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: inherit;
}

.preview-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.preview-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.preview-card .preview-more {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

/* Zahlen-Band */
.stats-band {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 48%, #115e59 100%);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
}

.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-band-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stats-band-item strong {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.stats-band-item span {
  font-size: 0.88rem;
  opacity: 0.88;
  line-height: 1.4;
}

/* Ablauf-Schritte */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  position: relative;
  padding: 1.5rem 1.35rem 1.5rem 1.35rem;
  padding-top: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.step-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  left: 1.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
}

.step-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Testimonial */
.testimonial-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 2rem 1.75rem;
  border-left: 4px solid var(--accent);
  background: var(--bg-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.testimonial-block blockquote {
  margin: 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
}

.testimonial-block figcaption {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  font-style: normal;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-list summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list .faq-answer {
  padding: 0 1.25rem 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Vollbreite */
.cta-fullbleed {
  background: linear-gradient(135deg, #134e4a 0%, #0d9488 50%, #0f766e 100%);
  color: #fff;
  text-align: center;
  padding: clamp(3rem, 8vw, 4.5rem) 1.5rem;
}

.cta-fullbleed h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-fullbleed > p {
  margin: 0 auto 1.5rem;
  max-width: 520px;
  opacity: 0.92;
  line-height: 1.6;
}

.cta-fullbleed .btn-primary {
  background: #fff;
  color: #0f766e;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-fullbleed .btn-primary:hover {
  background: #f0fdfa;
  color: #115e59;
}

.footer-photo-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.footer-photo-note a {
  color: var(--muted);
  text-decoration: underline;
}

/* Home: Teaser-Karten */
.teaser-section {
  background: var(--bg);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .teaser-grid {
    grid-template-columns: 1fr;
  }
}

.teaser-card {
  display: block;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.teaser-card:hover {
  border-color: rgba(13, 148, 136, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: inherit;
}

.teaser-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--text);
}

.teaser-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.teaser-card .teaser-arrow {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.page-nav-hint {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.page-nav-hint a {
  font-weight: 600;
  font-size: 0.9rem;
}

.page-nav-hint--below {
  margin-top: 2.5rem;
}

.cta-band {
  background: var(--bg-elevated);
}

.cta-centered {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.cta-centered h2 {
  margin: 0 0 0.75rem;
}

.cta-centered > p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.section-tight-top {
  padding-top: 0;
}

.section-alt {
  background: var(--bg-elevated);
}

.section-soft {
  background: var(--bg-soft);
}

.split-about__cta {
  margin-top: 1.25rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding-top: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0.75rem 0 0;
  max-width: 280px;
}

.footer-links h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 0.85rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  color: var(--text);
}

.footer-links a:hover {
  color: var(--accent);
}

/* Kurzinfo + interne Verlinkung – direkt vor dem Footer (nicht im <footer>) */
.footer-seo {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0 2rem;
  margin: 0;
  background: var(--bg-soft);
}

.footer-seo__heading {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.footer-seo__text {
  margin: 0;
  max-width: 48rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
}

.footer-seo__text a {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer-seo__text a:hover {
  color: var(--accent-hover);
}

.footer-seo--compact {
  padding: 1rem 0;
}

.footer-seo--compact .footer-seo__text {
  max-width: none;
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  background: var(--bg);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.legal-page {
  padding: 2rem 0 4rem;
}

.legal-page h1 {
  font-size: 1.85rem;
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin-top: 1.75rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* ========== Blog (Startseite + Artikel) ========== */
.section-blog {
  overflow: hidden;
}

.blog-slider-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.blog-slider-head .section-head {
  margin-bottom: 0;
  flex: 1;
  min-width: min(100%, 280px);
}

.blog-slider__controls {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.blog-slider__btn {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(13, 148, 136, 0.2);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
  box-shadow: var(--shadow);
}

.blog-slider__btn:hover:not(:disabled) {
  border-color: rgba(13, 148, 136, 0.45);
  color: var(--accent);
  transform: translateY(-1px);
}

.blog-slider__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.blog-slider__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(13, 148, 136, 0.45) transparent;
  outline: none;
}

.blog-slider__viewport:focus-visible {
  box-shadow: 0 0 0 3px var(--accent-dim);
  border-radius: var(--radius);
}

.blog-slider__track {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 1.25rem;
  width: max-content;
  min-width: 100%;
}

/* Breiten über Viewport/Layout, nicht % der Track-Breite (sonst bricht Snap) */
.blog-slider__slide {
  flex: 0 0 min(340px, calc(100vw - 2.5rem));
  width: min(340px, calc(100vw - 2.5rem));
  scroll-snap-align: start;
  box-sizing: border-box;
}

@media (min-width: 720px) {
  .blog-slider__slide {
    flex-basis: calc((min(1120px, 100vw - 2.5rem) - 1.25rem) / 2);
    width: calc((min(1120px, 100vw - 2.5rem) - 1.25rem) / 2);
  }
}

@media (min-width: 1024px) {
  .blog-slider__slide {
    flex-basis: calc((min(1120px, 100vw - 2.5rem) - 2 * 1.25rem) / 3);
    width: calc((min(1120px, 100vw - 2.5rem) - 2 * 1.25rem) / 3);
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover {
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog-card__link:hover {
  color: inherit;
}

.blog-card__img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-elevated);
}

.blog-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover .blog-card__img-wrap img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: 1.2rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.blog-card__meta {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.blog-card__body h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.35;
  color: var(--text);
}

.blog-card__excerpt {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.blog-card__more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.35rem;
}

.blog-card__link:hover .blog-card__more {
  color: var(--accent-hover);
}

.blog-post {
  padding-bottom: 3rem;
}

.blog-post__crumb {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.blog-post__crumb a {
  font-weight: 500;
}

.blog-post__header-block {
  padding: 2rem 0 1.5rem;
}

.blog-post__header-block h1 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.blog-post__meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.blog-post__cover {
  margin: 0;
  max-height: min(52vh, 420px);
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.blog-post__cover img {
  width: 100%;
  height: min(52vh, 420px);
  object-fit: cover;
  display: block;
}

.blog-post__cover .hero-photo-credit {
  margin: 0.5rem 0 0;
  padding: 0 0.25rem;
}

.blog-post__body {
  padding: 2rem 0 3rem;
}

.blog-article.blog-article {
  max-width: 42rem;
}

.blog-article .lead {
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.65;
}

.blog-article blockquote {
  margin: 1.35rem 0;
  padding: 1.1rem 1.35rem;
  border-left: 4px solid var(--accent);
  background: var(--bg-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.98rem;
}

.blog-article blockquote p {
  margin: 0;
}

.blog-sources {
  margin-top: 2.5rem;
  padding: 1.35rem 1.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.blog-sources h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.blog-sources ul {
  margin: 0;
  padding-left: 1.2rem;
}

.blog-sources li {
  margin-bottom: 0.4rem;
}

.blog-disclaimer {
  margin-top: 2rem !important;
  padding: 1rem 1.15rem;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.blog-post__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ========== Motion ========== */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  .site-header {
    animation: yos-header-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes yos-header-in {
    from {
      opacity: 0;
      transform: translateY(-0.75rem);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  .nav a:not(.nav-cta) {
    position: relative;
  }

  .nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav a:not(.nav-cta):hover::after,
  .nav a:not(.nav-cta)[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .logo-with-mark {
    transition: transform 0.25s ease;
  }

  .logo-with-mark:hover {
    transform: translateY(-1px);
  }

  .logo-with-mark img {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  }

  .logo-with-mark:hover img {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
  }

  .btn {
    transition:
      background 0.2s ease,
      color 0.2s ease,
      transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.25s ease;
  }

  .btn:hover {
    transform: translateY(-2px);
  }

  .btn:active {
    transform: translateY(0) scale(0.98);
  }

  .hero--visual .hero-bg {
    transform-origin: center center;
    animation: yos-hero-bg-drift 28s ease-in-out infinite alternate;
  }

  .page-hero__bg {
    transform-origin: center center;
    animation: yos-hero-bg-drift 24s ease-in-out infinite alternate;
  }

  @keyframes yos-hero-bg-drift {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.06);
    }
  }

  .anim-hero-in {
    opacity: 0;
    transform: translateY(1.6rem);
    animation: yos-hero-content-in 0.88s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .anim-hero-in--delay-1 {
    animation-delay: 0.1s;
  }

  .anim-hero-in--delay-2 {
    animation-delay: 0.22s;
  }

  .anim-hero-in--delay-3 {
    animation-delay: 0.34s;
  }

  .anim-hero-in--delay-4 {
    animation-delay: 0.46s;
  }

  @keyframes yos-hero-content-in {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .reveal-up {
    opacity: 0;
    transform: translateY(2rem);
    transition:
      opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal-up.is-visible {
    opacity: 1;
    transform: none;
  }

  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(1.25rem);
    transition:
      opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal-stagger.is-visible > *:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: 0.04s;
  }
  .reveal-stagger.is-visible > *:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: 0.1s;
  }
  .reveal-stagger.is-visible > *:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: 0.16s;
  }
  .reveal-stagger.is-visible > *:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: 0.22s;
  }
  .reveal-stagger.is-visible > *:nth-child(5) {
    opacity: 1;
    transform: none;
    transition-delay: 0.28s;
  }
  .reveal-stagger.is-visible > *:nth-child(6) {
    opacity: 1;
    transform: none;
    transition-delay: 0.34s;
  }
  .reveal-stagger.is-visible > *:nth-child(7) {
    opacity: 1;
    transform: none;
    transition-delay: 0.4s;
  }
  .reveal-stagger.is-visible > *:nth-child(8) {
    opacity: 1;
    transform: none;
    transition-delay: 0.46s;
  }

  .card-leistung,
  .teaser-card,
  .preview-card,
  .warum-item,
  .strategie-card,
  .detail-block,
  .step-card {
    transition:
      border-color 0.25s ease,
      transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.3s ease;
  }

  .stats-band-item {
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .reveal-up.is-visible .stats-band-item:nth-child(1) {
    animation: yos-stat-in 0.5s ease 0.05s both;
  }
  .reveal-up.is-visible .stats-band-item:nth-child(2) {
    animation: yos-stat-in 0.5s ease 0.12s both;
  }
  .reveal-up.is-visible .stats-band-item:nth-child(3) {
    animation: yos-stat-in 0.5s ease 0.19s both;
  }
  .reveal-up.is-visible .stats-band-item:nth-child(4) {
    animation: yos-stat-in 0.5s ease 0.26s both;
  }

  @keyframes yos-stat-in {
    from {
      opacity: 0;
      transform: translateY(0.75rem);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  .reveal-up:not(.is-visible) .stats-band-item {
    opacity: 0;
    transform: translateY(0.75rem);
  }

  details.faq-animate summary {
    transition: color 0.2s ease;
  }

  details.faq-animate[open] summary {
    color: var(--accent);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .hero--visual .hero-bg,
  .page-hero__bg {
    animation: none !important;
  }

  .anim-hero-in {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .reveal-up,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .reveal-up.is-visible .stats-band-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* Cookie Modal (WordPress Plugin Look) */
.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cookie-consent__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
}

.cookie-consent__card {
  position: relative;
  width: min(720px, calc(100% - 1.5rem));
  margin: 0.75rem;
  border-radius: 12px;
  border: 1px solid #dbe2ea;
  background: #fff;
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.2);
  padding: 1.2rem 1.1rem 1rem;
}

.cookie-consent__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cookie-consent__card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  line-height: 1.25;
}

.cookie-consent__card p {
  margin: 0;
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.55;
}

.cookie-consent__buttons {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-consent__buttons .btn {
  border-radius: 8px;
  padding: 0.58rem 0.95rem;
  font-size: 0.9rem;
}

.cookie-consent__detail {
  margin-top: 0.85rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 0.85rem;
}

.cookie-consent__option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #334155;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.cookie-consent__option input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.cookie-consent__buttons--detail {
  margin-top: 0.7rem;
}

.cookie-consent__legal {
  margin-top: 0.85rem !important;
  font-size: 0.82rem !important;
  color: #64748b !important;
}

.cookie-consent__legal a {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 560px) {
  .cookie-consent__card {
    width: calc(100% - 1rem);
    margin: 0.5rem;
    padding: 1rem 0.9rem 0.9rem;
  }

  .cookie-consent__buttons .btn {
    flex: 1 1 auto;
  }
}
