/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0a0a0a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { border: 0; background: transparent; cursor: pointer; font: inherit; color: inherit; }

.serif { font-family: 'Instrument Serif', serif; font-weight: 400; letter-spacing: -0.02em; }
.italic { font-style: italic; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; line-height: 1.05; font-weight: 500; }
h1 { font-size: clamp(2.2rem, 5.2vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.5rem); }
h3 { font-size: 1.5rem; font-weight: 500; }
h4 { font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 500; }
p  { margin: 0; color: #555; line-height: 1.6; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 0.75rem 0;
}
.header-container { padding: 0.75rem; }
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.04);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.2rem;
  color: #0a0a0a;
}
.nav-menu {
  display: none;
  background: rgba(10,10,10,0.05);
  border-radius: 999px;
  padding: 0.25rem;
}
.nav-menu ul { display: flex; gap: 0.25rem; }
.nav-menu a {
  display: inline-block;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.92rem;
  color: #0a0a0a;
  transition: background 0.3s;
}
.nav-menu a:hover { background: rgba(0,0,0,0.08); }

.nav-actions { display: flex; align-items: center; gap: 0.4rem; }
.btn-ghost, .btn-dark {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s;
  display: none;
}
.btn-ghost {
  border: 1px solid #0a0a0a;
  color: #0a0a0a;
  background: transparent;
}
.btn-ghost:hover { background: #0a0a0a; color: #fff; }
.btn-dark {
  background: #0a0a0a;
  color: #fff;
}
.btn-dark:hover { opacity: 0.9; }
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.7s ease-in-out;
}
.theme-toggle:hover { transform: rotate(180deg); }
.theme-toggle .icon-moon { display: none; }
.menu-toggle { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; }

@media (min-width: 1024px) {
  .nav-menu { display: flex; }
  .btn-ghost, .btn-dark { display: inline-block; }
  .menu-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: 11rem;
  padding-bottom: 3rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 6rem; left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background: linear-gradient(to right, #dbeafe, #ffffff, #fef3c7);
  filter: blur(60px);
  border-radius: 50%;
  z-index: -1;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.hero-title { max-width: 900px; }
.hero-sub {
  max-width: 38rem;
  font-size: 1rem;
  color: #666;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* reveal animation base */
.reveal-words span {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20%);
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
  margin-right: 0.28em;
}
.reveal-words span:last-child { margin-right: 0; }
.reveal-words.in span { opacity: 1; filter: blur(0); transform: translateY(0); }
.reveal-words.in span:nth-child(1) { transition-delay: 0.05s; }
.reveal-words.in span:nth-child(2) { transition-delay: 0.10s; }
.reveal-words.in span:nth-child(3) { transition-delay: 0.15s; }
.reveal-words.in span:nth-child(4) { transition-delay: 0.20s; }
.reveal-words.in span:nth-child(5) { transition-delay: 0.25s; }
.reveal-words.in span:nth-child(6) { transition-delay: 0.30s; }
.reveal-words.in span:nth-child(7) { transition-delay: 0.35s; }
.reveal-words.in span:nth-child(8) { transition-delay: 0.40s; }
.reveal-words.in span:nth-child(9) { transition-delay: 0.45s; }
.reveal-words.in span:nth-child(10) { transition-delay: 0.50s; }
.reveal-words.in span:nth-child(11) { transition-delay: 0.55s; }
.reveal-words.in span:nth-child(12) { transition-delay: 0.60s; }
.reveal-words.in span:nth-child(13) { transition-delay: 0.65s; }
.reveal-words.in span:nth-child(14) { transition-delay: 0.70s; }

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up.in { opacity: 1; transform: translateY(0); }

.reveal-scale {
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.15);
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
}
.reveal-scale.in { opacity: 1; filter: blur(0); transform: scale(1); }

/* arrow button */
.btn-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  height: 48px;
  border-radius: 999px;
  padding: 4px 56px 4px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  overflow: hidden;
  transition: all 0.5s;
  background: #0a0a0a;
  color: #fff;
  white-space: nowrap;
}
.btn-arrow span { position: relative; z-index: 1; transition: all 0.5s; }
.btn-arrow .arrow-circle {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
.btn-arrow:hover { padding-left: 56px; padding-right: 24px; }
.btn-arrow:hover .arrow-circle {
  right: calc(100% - 44px);
  transform: rotate(45deg);
}
.btn-arrow-white { background: #fff; color: #0a0a0a; }
.btn-arrow-white .arrow-circle { background: #0a0a0a; color: #fff; }
.btn-arrow-outline { background: transparent; color: #fff; border: 1px solid #fff; }

/* avatars */
/* Trust line + ghost button */
.hero-trust {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #444;
  opacity: 0;
  transform: translateY(20%);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-trust.in { opacity: 1; transform: translateY(0); }
.hero-trust .dot { color: #16a34a; font-size: 0.7rem; margin-right: 0.25rem; }

.btn-arrow-ghost {
  background: #fff;
  color: #0a0a0a;
  border: 1px solid rgba(0,0,0,0.15);
}
.btn-arrow-ghost .arrow-circle { background: #0a0a0a; color: #fff; }

.avatars { display: flex; }
.avatars li {
  width: 44px; height: 44px;
  margin-right: -8px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  transition: margin 0.4s;
}
.avatars:hover li { margin-right: 4px; }
.avatars img { width: 100%; height: 100%; object-fit: cover; }
.trust-group { display: flex; align-items: center; gap: 1rem; }
.stars { color: #f59e0b; font-size: 0.9rem; }
.trust-info p { font-size: 0.85rem; color: #0a0a0a; margin-top: 2px; }

/* ---------- Brands Slider ---------- */
.brands { padding: 3rem 0; }
.brands-label {
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}
.brands-label p {
  display: inline-block;
  position: relative;
  padding: 0 1rem;
  color: #666;
  font-size: 0.95rem;
}
.brands-label p::before,
.brands-label p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 140px;
  height: 2px;
  background: linear-gradient(to right, rgba(10,10,10,0.1), transparent);
}
.brands-label p::before { right: 100%; margin-right: 12px; }
.brands-label p::after { left: 100%; margin-left: 12px; background: linear-gradient(to left, rgba(10,10,10,0.1), transparent); }

.slider-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.slider-track {
  display: flex;
  width: calc(200px * 10);
  animation: logoSlide 22s linear infinite;
}
.slide {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-logo {
  color: #0a0a0a;
  font-weight: 600;
  font-size: 1.2rem;
  opacity: 0.75;
  letter-spacing: -0.02em;
}
@keyframes logoSlide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-200px * 5)); }
}

/* ---------- About / Stats ---------- */
.about { padding: 3rem 0; }
.about-wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
.about-title { max-width: 1100px; text-align: center; }

.pills { display: flex; gap: 0.5rem 1rem; flex-wrap: wrap; justify-content: center; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}
.pill-purple { background: rgba(168,85,247,0.10); color: #a855f7; }
.pill-sky    { background: rgba(56,189,248,0.10); color: #38bdf8; }
.pill-orange { background: rgba(251,146,60,0.10); color: #fb923c; }

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.stat {
  position: relative;
  padding: 1rem 3rem;
  text-align: center;
  flex: 1 1 250px;
}
.stat h2 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 500;
  line-height: 1;
}
.stat h2 sup { font-size: 0.5em; top: -0.5em; }
.stat h2 .unit { font-size: 0.45em; font-weight: 500; margin-left: 0.15em; color: #555; }
.stat .count-static { font-size: clamp(3rem, 7vw, 6rem); line-height: 1; }
.stat p { margin-top: 0.5rem; color: #555; }
.stat-divider {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 110px;
  background: rgba(0,0,0,0.12);
}
.stat:last-child .stat-divider { display: none; }
@media (max-width: 767px) { .stat-divider { display: none; } }

/* ---------- Section head ---------- */
.section-head {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 3rem;
}
.section-head h2 { line-height: 1.1; }

/* ---------- Services ---------- */
.services { padding: 3rem 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .services-grid { grid-template-columns: repeat(5, 1fr); } }

.service-card {
  padding: 2rem;
  border-radius: 1.25rem;
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-card h3 {
  font-size: 1.4rem;
  line-height: 1.15;
  color: inherit;
}
.service-card .svc-desc {
  color: inherit;
  opacity: 0.8;
  font-size: 0.88rem;
  line-height: 1.4;
  margin-top: 0.25rem;
}

/* CTA banner */
.cta-banner {
  background: #0a0a0a;
  color: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.cta-banner h4 { color: #fff; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

@media (min-width: 1100px) {
  .cta-banner { flex-direction: row; text-align: left; }
}

/* ---------- Losses / Schock-Rechnung ---------- */
.losses { padding: 3rem 0; }
.section-sub { max-width: 560px; margin: 1rem auto 0; color: #555; }

.calc {
  background: #0a0a0a;
  color: #fff;
  border-radius: 1.75rem;
  padding: 2rem;
  overflow: hidden;
}
.calc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  background: rgba(255,255,255,0.08);
  padding: 0.3rem;
  border-radius: 999px;
  width: fit-content;
  margin: 0 auto 2rem;
}
.calc-tab {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: all 0.3s;
  white-space: nowrap;
}
.calc-tab:hover { color: #fff; }
.calc-tab.is-active { background: #fff; color: #0a0a0a; }

.calc-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 900px) { .calc-body { grid-template-columns: 1fr 1fr; } }

.calc-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  padding: 1.5rem;
}
.calc-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  color: rgba(255,255,255,0.85);
}
.calc-row.highlight {
  grid-template-columns: 1fr auto;
  color: #fff;
  font-weight: 500;
  padding: 0.45rem 0;
}
.calc-row.highlight:last-of-type .calc-val { color: #fde68a; font-weight: 600; }
.calc-ico { width: 24px; text-align: center; }
.calc-val { font-variant-numeric: tabular-nums; font-weight: 500; }
.calc-divider { height: 1px; background: rgba(255,255,255,0.12); margin: 0.25rem 0; }

.calc-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(160deg, rgba(239,68,68,0.12), rgba(253,224,71,0.12));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
}
.calc-hero-label { color: rgba(255,255,255,0.7); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; }
.calc-big {
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 500;
  line-height: 1;
  margin: 1rem 0 0.75rem;
  color: #fef08a;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}
.calc-hero-sub { color: #fff; font-size: 1.1rem; margin-bottom: 1rem; }
.calc-hero-sub .italic { color: #fde68a; }
.calc-fine { color: rgba(255,255,255,0.55); font-size: 0.8rem; max-width: 360px; }

/* Mini cards */
.loss-mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 768px) { .loss-mini-grid { grid-template-columns: repeat(3, 1fr); } }
.loss-mini {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 1.25rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.loss-emoji { font-size: 2rem; }
.loss-title { font-weight: 600; color: #0a0a0a; font-size: 1.05rem; }
.loss-mini p:last-child { color: #555; font-size: 0.95rem; line-height: 1.5; }

.turn-banner {
  margin-top: 2.5rem;
  padding: 2.5rem;
  background: linear-gradient(to right, #dbeafe, #fff, #fef3c7);
  border-radius: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.turn-banner h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: #0a0a0a;
  font-weight: 500;
  line-height: 1.35;
  max-width: 760px;
}
.turn-banner h3 strong { font-weight: 600; }
.turn-banner p { max-width: 640px; color: #333; }

/* ---------- Work (legacy, still available) ---------- */
.work { padding: 3rem 0; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }

.work-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  cursor: pointer;
  transition: transform 0.3s;
}
.work-card:hover { transform: translateY(-4px); }
.work-img {
  position: relative;
  aspect-ratio: 625 / 410;
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-phone {
  font-size: 1.75rem;
  font-weight: 600;
  color: #111;
}
.work-card h3 {
  font-size: 1.5rem;
  transition: color 0.3s;
}
.work-card:hover h3 { color: #6366f1; }
.tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tag {
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  color: #333;
  transition: background 0.25s, color 0.25s;
}
.tag:hover { background: #0a0a0a; color: #fff; }

/* ---------- Team ---------- */
.team { padding: 3rem 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem 1.5rem;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  transition: filter 0.4s;
}
.team-card:hover .team-photo { filter: grayscale(1); }
.team-icon-wrap {
  width: 100%;
  aspect-ratio: 1;
  max-width: 180px;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}
.team-card:hover .team-icon-wrap { transform: translateY(-4px); }
.team-card .name { font-weight: 500; color: #0a0a0a; }
.team-card .role { color: #666; font-size: 0.9rem; }
.socials { display: flex; gap: 1rem; }
.socials a { color: #666; transition: color 0.25s; }
.socials a:hover { color: #4338ca; }

/* ---------- Testimonials ---------- */
.testimonials { padding: 3rem 0; }
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .testi-grid {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
  }
  .testi-main { grid-row: 1; grid-column: 1; }
  .testi-stat { grid-row: 1; grid-column: 2; }
  .testi-small { grid-row: 2; grid-column: 1; }
  .testi-wide { grid-row: 2; grid-column: 2 / 3; }
}
@media (min-width: 1100px) {
  .testi-grid {
    grid-template-columns: 1fr 1.6fr;
  }
  .testi-main { grid-row: 1; grid-column: 1; }
  .testi-stat { grid-row: 1; grid-column: 2; }
  .testi-small { grid-row: 2; grid-column: 1; }
  .testi-wide { grid-row: 2; grid-column: 2; }
}

.kicker {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #666;
  font-weight: 500;
}

.testi-main {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 380px;
  color: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testi-main .kicker { color: rgba(255,255,255,0.85); position: relative; z-index: 1; }
.testi-main .testi-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: brightness(0.6);
}
.testi-main h3 { position: relative; z-index: 1; color: #fff; font-size: 1.5rem; max-width: 400px; }
.testi-author { position: relative; z-index: 1; }
.testi-author .name { color: #fff; font-weight: 500; }
.testi-author .role { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

.testi-stat {
  background: #fef08a;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: space-between;
  min-height: 380px;
}
.testi-stat h2 { font-size: 4.5rem; line-height: 1; }
.testi-stat h2 span { font-size: 2.5rem; font-weight: 500; }
.testi-stat p { color: #111; max-width: 220px; }

.testi-small {
  background: #0a0a0a;
  color: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 280px;
  justify-content: space-between;
}
.testi-small .kicker { color: rgba(255,255,255,0.7); }
.testi-small h4 { color: #fff; font-size: 1.1rem; line-height: 1.4; }
.testi-small .testi-img.small {
  height: 100px;
  border-radius: 0.75rem;
  margin-top: auto;
}

.testi-wide {
  background: #f5f5f5;
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
  min-height: 280px;
}
.testi-wide h3 {
  font-size: 1.35rem;
  line-height: 1.45;
  font-weight: 400;
  color: #111;
}

/* ---------- Pricing ---------- */
.pricing { padding: 3rem 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pricing-grid.three { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  position: relative;
  border-radius: 1.75rem;
  padding: 2.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.pricing-grid:not(.three) .price-card { grid-template-columns: 1fr; }
@media (min-width: 600px) {
  .pricing-grid:not(.three) .price-card { grid-template-columns: 1fr 1fr; }
}
.price-yellow { background: #fde68a; color: #0a0a0a; }
.price-purple { background: #6d28d9; color: #fff; }
.price-dark   { background: #0a0a0a; color: #fff; }

.price-card.featured { transform: translateY(-6px); box-shadow: 0 25px 50px rgba(109,40,217,0.25); }
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fde68a;
  color: #0a0a0a;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-tag.light-tag { background: rgba(255,255,255,0.15); color: #fff; }
.price-name { font-size: 1.4rem; font-weight: 500; margin: 0.9rem 0 0.25rem; color: #0a0a0a; }
.price-name.light { color: #fff; }
.price-setup { font-size: 0.85rem; color: #333; margin: -0.5rem 0 1.25rem; }
.price-setup.light { color: rgba(255,255,255,0.75); }
.price-purple .price-desc { color: rgba(255,255,255,0.85); }
.price-dark .price-desc { color: rgba(255,255,255,0.85); }
.price-note { text-align: center; color: #666; margin-top: 1.5rem; font-size: 0.9rem; }

.price-tag {
  display: inline-block;
  background: #0a0a0a;
  color: #fff;
  border-radius: 999px;
  padding: 0.4rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.price-tag.dark { background: #0a0a0a; }
.price-desc { margin: 1rem 0 1.5rem; color: inherit; opacity: 0.85; max-width: 260px; }
.price-purple .price-desc { color: rgba(255,255,255,0.85); }
.price { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 1.5rem; }
.price h2 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
.price span { font-size: 1rem; opacity: 0.7; }

.price-features h4 { margin-bottom: 1rem; color: inherit; }
.price-features ul { display: flex; flex-direction: column; gap: 0.75rem; }
.price-features li { font-size: 0.95rem; display: flex; align-items: center; gap: 0.5rem; }
.price-features.light h4, .price-features.light li { color: #fff; }

.price-purple .btn-arrow { background: #0a0a0a; color: #fff; }

/* ---------- FAQ ---------- */
.faq { padding: 3rem 0; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
}
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #0a0a0a;
}
.plus {
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 1.25rem; }

/* ---------- Awards ---------- */
.awards { padding: 3rem 0; }
.awards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 900px) { .awards-grid { grid-template-columns: repeat(3, 1fr); } }
.award-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
}
.award-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.07); }
.award-logo { font-size: 2.5rem; font-weight: 600; color: #0a0a0a; }
.award-kicker { color: #666; font-size: 0.95rem; }
.award-text { color: #0a0a0a; font-size: 1.2rem; line-height: 1.35; }
.award-year { color: #666; margin-top: auto; }

/* ---------- Final CTA ---------- */
.final-cta { padding: 3rem 0; }
.final-box {
  background: linear-gradient(to right, #dbeafe, #fff, #fef3c7);
  border-radius: 1.75rem;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
.final-box h2 { max-width: 700px; }
.final-box p { max-width: 520px; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 4rem 0 2rem;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); } }

.footer-col h5 { margin: 0 0 1rem; font-size: 1rem; font-weight: 500; }
.footer-col p { color: #666; font-size: 0.95rem; margin-bottom: 0.5rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li a { color: #666; font-size: 0.95rem; transition: color 0.25s; }
.footer-col li a:hover { color: #0a0a0a; }
.footer-col .logo { margin-bottom: 1rem; }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

/* ---------- Scroll-top ---------- */
.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #6366f1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(99,102,241,0.35);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 40;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: #4f46e5; }

/* ---------- Header scrolled ---------- */
.site-header.scrolled .nav-bar {
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

/* ---------- Dark mode ---------- */
body.dark {
  background: #0a0a0a;
  color: #f5f5f5;
}
body.dark p { color: #a3a3a3; }
body.dark .nav-bar {
  background: rgba(20,20,20,0.85);
}
body.dark .logo { color: #fff; }
body.dark .nav-menu { background: rgba(255,255,255,0.06); }
body.dark .nav-menu a { color: #f5f5f5; }
body.dark .nav-menu a:hover { background: rgba(255,255,255,0.1); }
body.dark .btn-ghost { border-color: rgba(255,255,255,0.5); color: #fff; }
body.dark .btn-ghost:hover { background: #fff; color: #0a0a0a; }
body.dark .btn-dark { background: rgba(255,255,255,0.15); }

body.dark .hero-glow {
  background: linear-gradient(to right, #1e293b, #0a0a0a, #44403c);
}
body.dark .brands-label p::before { background: linear-gradient(to right, rgba(255,255,255,0.25), transparent); }
body.dark .brands-label p::after { background: linear-gradient(to left, rgba(255,255,255,0.25), transparent); }
body.dark .brand-logo { color: #f5f5f5; }

body.dark .stat-divider { background: rgba(255,255,255,0.15); }

body.dark .btn-arrow { background: rgba(255,255,255,0.12); color: #fff; }
body.dark .btn-arrow .arrow-circle { background: #fff; color: #0a0a0a; }

body.dark .testi-wide { background: rgba(255,255,255,0.05); }
body.dark .testi-wide h3 { color: #f5f5f5; }

body.dark .faq-item { background: #141414; border-color: rgba(255,255,255,0.1); }
body.dark .faq-q { color: #fff; }

body.dark .award-card { background: #141414; border-color: rgba(255,255,255,0.08); }
body.dark .award-logo, body.dark .award-text { color: #fff; }

body.dark .final-box {
  background: linear-gradient(to right, #1e293b, #0a0a0a, #44403c);
}

body.dark .site-footer { background: #0a0a0a; border-color: rgba(255,255,255,0.08); }
body.dark .footer-col li a:hover { color: #fff; }
body.dark .footer-bottom { border-color: rgba(255,255,255,0.08); }

body.dark .tag { border-color: rgba(255,255,255,0.2); color: #d4d4d4; }
body.dark .tag:hover { background: #fff; color: #0a0a0a; }

/* ---------- Legal page (Impressum / Datenschutz) ---------- */
.legal-page {
  padding: 120px 0 80px;
  min-height: 60vh;
}
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}
.legal-content h1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.15;
}
.legal-content h2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 2rem 0 0.5rem;
}
.legal-content p {
  margin: 0 0 1rem;
  line-height: 1.75;
}
.legal-content a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover { opacity: 0.7; }

.legal-meta {
  font-size: 0.9rem;
  opacity: 0.55;
  margin-bottom: 2rem;
}
.legal-content ul {
  padding-left: 1.4rem;
  margin: 0.25rem 0 1rem;
}
.legal-content ul li {
  margin-bottom: 0.35rem;
  line-height: 1.75;
}

.legal-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.12);
  margin: 3rem 0;
}

body.dark .legal-divider { border-color: rgba(255,255,255,0.1); }

body.dark .legal-content h1,
body.dark .legal-content h2 { color: #f5f5f5; }

/* ---------- Quiz Lead Modal ---------- */
#quiz-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
#quiz-overlay.active { display: flex; }

.quiz-modal {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  position: relative;
  animation: quizIn 0.35s cubic-bezier(.22,.68,0,1.2);
  transition: max-width 0.3s ease;
}
.quiz-modal.quiz-modal--wide {
  max-width: 900px;
}
@keyframes quizIn {
  from { opacity: 0; transform: scale(0.92) translateY(24px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.quiz-header {
  padding: 1.25rem 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.quiz-progress-wrap {
  flex: 1;
  height: 5px;
  background: rgba(0,0,0,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.quiz-progress-bar {
  height: 100%;
  background: #0a0a0a;
  border-radius: 999px;
  width: 25%;
  transition: width 0.4s ease;
}
.quiz-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.quiz-close:hover { background: rgba(0,0,0,0.12); }

.quiz-step { padding: 1.75rem 2rem 2.25rem; }

.quiz-step-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.6rem;
}
.quiz-question {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  line-height: 1.25;
  margin-bottom: 0.4rem;
}
.quiz-hint {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1.4rem;
}

.quiz-options { display: flex; flex-direction: column; gap: 0.65rem; }
.quiz-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.quiz-opt {
  text-align: left;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  border: 1.5px solid rgba(0,0,0,0.12);
  font-size: 0.92rem;
  font-weight: 500;
  color: #0a0a0a;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.quiz-opt:hover {
  border-color: #0a0a0a;
  background: rgba(0,0,0,0.04);
}
.quiz-opt.selected {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}
.quiz-opt-full { grid-column: 1 / -1; }

.quiz-form { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 0.75rem; }
.quiz-form-field input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  border: 1.5px solid rgba(0,0,0,0.12);
  font-size: 0.95rem;
  font-family: inherit;
  color: #0a0a0a;
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.quiz-form-field input:focus { border-color: #0a0a0a; }
.quiz-form-field input::placeholder { color: #aaa; }

.quiz-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}
.quiz-dsgvo {
  font-size: 0.78rem;
  color: #aaa;
  text-align: center;
  margin-top: 0.1rem;
}
.quiz-dsgvo a { text-decoration: underline; text-underline-offset: 2px; }

.quiz-step-success {
  text-align: center;
  padding: 3rem 2rem;
}
.quiz-success-icon { font-size: 3.5rem; margin-bottom: 0.75rem; }
.quiz-step-success h3 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.quiz-step-success p { margin-bottom: 0.75rem; }
.quiz-success-sub { color: #888; font-size: 0.92rem; margin-bottom: 1.75rem; }
.quiz-listen-btn { margin: 0 auto; }

/* Dark mode – quiz */
body.dark .quiz-modal { background: #141414; color: #f5f5f5; }
body.dark .quiz-close { background: rgba(255,255,255,0.08); }
body.dark .quiz-close:hover { background: rgba(255,255,255,0.14); }
body.dark .quiz-progress-wrap { background: rgba(255,255,255,0.1); }
body.dark .quiz-progress-bar { background: #fff; }
body.dark .quiz-hint { color: #888; }
body.dark .quiz-step-label { color: #666; }
body.dark .quiz-opt { border-color: rgba(255,255,255,0.14); color: #f5f5f5; }
body.dark .quiz-opt:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
body.dark .quiz-opt.selected { background: #fff; color: #0a0a0a; border-color: #fff; }
body.dark .quiz-form-field input { border-color: rgba(255,255,255,0.14); color: #f5f5f5; }
body.dark .quiz-form-field input:focus { border-color: #fff; }
body.dark .quiz-form-field input::placeholder { color: #666; }
body.dark .quiz-dsgvo { color: #555; }

