@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,600;1,300&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --bg: #F2F8FC;
  --text: #0D2535;
  --muted: #6A90A5;
  --accent: #B5D5E6;
  --warm: #D5EBF5;
  --highlight: #5AAED0;
  --nav-bg: rgba(242,248,252,.92);
  --footer-bg: #0D2535;
}

[data-theme="dark"] {
  --bg: #0D1F2D;
  --text: #E4F1F8;
  --muted: #7AABBF;
  --accent: #1B3A50;
  --warm: #12293A;
  --highlight: #5AAED0;
  --nav-bg: rgba(13,31,45,.92);
  --footer-bg: #060F17;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  cursor: none;
  overflow-x: hidden;
}

/* ── CUSTOM CURSOR ────────────────────────────── */
.cursor {
  width: 8px; height: 8px;
  background: var(--text);
  border-radius: 50%;
  position: fixed; top: -4px; left: -4px;
  pointer-events: none; z-index: 9999;
  transition: width .2s, height .2s, background .2s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid var(--text);
  border-radius: 50%;
  position: fixed; top: -18px; left: -18px;
  pointer-events: none; z-index: 9998;
  opacity: .4;
  transition: width .3s, height .3s, opacity .3s;
}
.cursor.hover { width: 16px; height: 16px; background: var(--highlight); }
.cursor-follower.hover { width: 56px; height: 56px; opacity: .15; }

/* ── PAGE TRANSITION ──────────────────────────── */
.page-transition {
  position: fixed; inset: 0;
  background: var(--text); z-index: 9000;
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .5s cubic-bezier(.76,0,.24,1);
}
.page-transition.active { transform: scaleY(1); }

/* ── SCROLL REVEAL ────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── NAVBAR ───────────────────────────────────── */
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 48px;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--accent);
}
.brand-link { text-decoration: none; color: inherit; }
.brand { font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; letter-spacing: -.5px; }
.brand span { color: var(--highlight); }
.nav-links a {
  font-size: .9rem; font-weight: 400; color: var(--text);
  margin-left: 28px; text-decoration: none;
  letter-spacing: .02em; transition: color .2s;
}
.nav-links a:hover { color: var(--highlight); }

/* Nav CTA pill */
.nav-cta {
  margin-left: 32px;
  background: var(--text); color: var(--bg);
  padding: 9px 20px; border-radius: 4px;
  text-decoration: none; font-size: .82rem; font-weight: 500;
  letter-spacing: .02em; white-space: nowrap;
  transition: background .3s, transform .2s;
}
.nav-cta:hover { background: var(--highlight); transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--bg); border-bottom: 1px solid var(--accent);
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.mobile-menu.open { max-height: 500px; padding: 20px 0; }
.mobile-menu-bottom { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px 4px; border-top: 1px solid var(--accent); margin-top: 8px; }
.mobile-lang { display: flex; align-items: center; gap: 4px; }
.mobile-theme-btn { display: flex; align-items: center; gap: 8px; background: none; border: none; color: var(--muted); font-family: 'DM Sans', sans-serif; font-size: .85rem; cursor: pointer; padding: 4px 8px; border-radius: 4px; transition: color .2s; }
.mobile-theme-btn:hover { color: var(--text); }
.mobile-menu a {
  font-size: 1.05rem; color: var(--text); text-decoration: none;
  padding: 14px 24px; border-bottom: 1px solid var(--accent);
  transition: background .2s;
}
.mobile-menu a:hover { background: var(--warm); }
.mobile-cta {
  background: var(--text) !important; color: var(--bg) !important;
  font-weight: 500; margin: 12px 24px 0; border-radius: 4px;
  border: none !important; text-align: center;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 90vh;
  display: flex; justify-content: center; align-items: center;
  text-align: center; flex-direction: column;
  padding: 80px 20px 60px;
  position: relative; overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  font-family: 'Fraunces', serif;
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 600; color: transparent;
  -webkit-text-stroke: 1px var(--accent);
  letter-spacing: -4px; user-select: none;
  opacity: .45; z-index: 0;
}
.hero-text { position: relative; z-index: 1; }
.hero-label {
  display: inline-block; font-size: .78rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--highlight); border: 1px solid var(--highlight);
  padding: 6px 16px; border-radius: 20px; margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600; line-height: 1.1;
  letter-spacing: -2px; margin-bottom: 1.2rem;
}
.hero h1 em { font-style: italic; font-weight: 300; color: var(--highlight); }
.hero p { color: var(--muted); font-size: 1.05rem; font-weight: 300; margin-bottom: 1.8rem; line-height: 1.7; }

/* Platform badges in hero */
.hero-platforms { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.platform-badge {
  font-size: .78rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted);
  background: var(--warm); border: 1px solid var(--accent);
  padding: 5px 14px; border-radius: 20px;
}

.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS / CTA ────────────────────────────── */
.cta {
  background: var(--text); color: var(--bg);
  padding: 14px 30px; border-radius: 4px;
  text-decoration: none; font-size: .9rem; font-weight: 500;
  letter-spacing: .02em; transition: background .3s, transform .2s;
  display: inline-block;
}
.cta:hover { background: var(--highlight); transform: translateY(-2px); }
.cta.alt {
  background: transparent; color: var(--text);
  border: 1px solid var(--accent);
}
.cta.alt:hover { border-color: var(--text); background: transparent; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 32px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: var(--muted); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .3; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.3); } }

/* ── STATS ────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(3,1fr); background: var(--text); color: var(--bg); }
.stat { padding: 52px 32px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.stat:last-child { border-right: none; }
.counter { font-family: 'Fraunces', serif; font-size: 3.2rem; font-weight: 600; display: block; color: var(--highlight); }
.stat p { font-size: .85rem; color: rgba(245,244,240,.5); margin-top: 6px; font-weight: 300; }

/* ── SECTION BASE ─────────────────────────────── */
.section { max-width: 900px; margin: 0 auto; padding: 120px 20px; text-align: center; }
.section-label {
  font-size: .75rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--highlight); margin-bottom: 16px;
}
.section-label.light { color: rgba(245,244,240,.5); }
.section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; line-height: 1.15;
  letter-spacing: -1px; margin-bottom: 1.2rem;
}
.section h2 em { font-style: italic; font-weight: 300; color: var(--highlight); }
.section > p {
  color: var(--muted); font-size: 1.05rem; font-weight: 300;
  line-height: 1.75; max-width: 600px; margin: 0 auto 56px;
}

/* ── PILLARS ──────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 20px; }
.pillar {
  background: white; border-radius: 16px; padding: 36px 24px;
  box-shadow: 0 2px 20px rgba(0,0,0,.04); border: 1px solid var(--accent);
  transition: transform .3s, box-shadow .3s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.pillar-icon { font-size: 1.8rem; margin-bottom: 14px; }
.pillar h3 { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
.pillar p { color: var(--muted); font-size: .9rem; font-weight: 300; }

/* ── LEISTUNGEN / PLATFORMS GRID ─────────────── */
.leistungen-section { max-width: 1100px; }
.platforms-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 8px; }
.platform-card {
  background: white; border-radius: 20px; padding: 36px 24px;
  box-shadow: 0 2px 20px rgba(0,0,0,.04); border: 1px solid var(--accent);
  text-align: left; transition: transform .3s, box-shadow .3s;
}
.platform-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.08); }
.platform-logo {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: white;
}
.platform-logo.insta { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.platform-logo.tiktok { background: #010101; }
.platform-logo.facebook { background: #1877f2; }
.platform-logo.linkedin { background: #0a66c2; }
.platform-card h3 { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; }
.platform-card p { color: var(--muted); font-size: .9rem; font-weight: 300; line-height: 1.65; margin-bottom: 16px; }
.platform-features { list-style: none; padding: 0; }
.platform-features li {
  font-size: .82rem; color: var(--muted); font-weight: 400;
  padding: 5px 0; border-bottom: 1px solid var(--warm);
}
.platform-features li::before { content: '→ '; color: var(--highlight); }
.platform-features li:last-child { border-bottom: none; }

/* ── PROZESS ──────────────────────────────────── */
.prozess-section { max-width: 960px; }
.prozess-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 20px;
  border: 1px solid var(--accent); border-radius: 20px; overflow: hidden;
}
.prozess-step {
  background: white; padding: 44px 28px 40px;
  border-right: 1px solid var(--accent);
  position: relative;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease, box-shadow .3s;
}
.prozess-step.visible { opacity: 1; transform: translateY(0); }
.prozess-step.last { border-right: none; }
.prozess-step:hover { background: var(--warm); }
.step-number {
  font-family: 'Fraunces', serif; font-size: 2.8rem; font-weight: 600;
  color: var(--accent); line-height: 1; margin-bottom: 20px;
  display: block;
}
.step-content h3 {
  font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 600;
  margin-bottom: 10px; color: var(--text);
}
.step-content p { color: var(--muted); font-size: .88rem; font-weight: 300; line-height: 1.65; }
.step-arrow {
  position: absolute; top: 44px; right: -14px;
  width: 28px; height: 28px; background: var(--highlight);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-size: .85rem; z-index: 2;
}
.prozess-step.last .step-arrow { display: none; }

/* ── VERGLEICH ────────────────────────────────── */
.vergleich-section { max-width: 900px; }
.vergleich-table { border: 1px solid var(--accent); border-radius: 16px; overflow: hidden; margin-top: 8px; text-align: left; }
.vergleich-header, .vergleich-row {
  display: grid; grid-template-columns: 1.2fr 1.6fr 1.6fr;
  border-bottom: 1px solid var(--accent);
}
.vergleich-row:last-child { border-bottom: none; }
.vergleich-header { background: var(--text); color: var(--bg); }
.vergleich-header > div { padding: 16px 24px; font-size: .8rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.vergleich-header .col-iscu { color: var(--highlight); }
.vergleich-header .col-klassisch { color: rgba(245,244,240,.5); }

.vergleich-row > div { padding: 18px 24px; font-size: .92rem; vertical-align: middle; }
.vergleich-row:nth-child(even) { background: rgba(255,255,255,.6); }
.col-label { font-weight: 500; color: var(--text); font-size: .85rem; }
.col-iscu.good {
  color: var(--text); font-weight: 400;
  display: flex; align-items: center; gap: 8px;
}
.col-iscu.good::before { content: '✓'; color: #5b9b6e; font-weight: 700; flex-shrink: 0; }
.col-klassisch.bad {
  color: var(--muted); font-weight: 300;
  display: flex; align-items: center; gap: 8px;
}
.col-klassisch.bad::before { content: '✕'; color: #c97171; font-weight: 700; flex-shrink: 0; }

/* ── FAQ ──────────────────────────────────────── */
.faq-section { max-width: 760px; }
.faq-list { text-align: left; }
.faq-item { border-bottom: 1px solid var(--accent); }
.faq-item:first-child { border-top: 1px solid var(--accent); }
.faq-question {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: none;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 500;
  color: var(--text); text-align: left; gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--highlight); }
.faq-icon {
  font-size: 1.4rem; font-weight: 300; color: var(--highlight);
  flex-shrink: 0; transition: transform .3s;
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer p { color: var(--muted); font-size: .95rem; font-weight: 300; line-height: 1.75; padding-bottom: 22px; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── CONTACT / BOOKING ────────────────────────── */
.contact { background: var(--text); color: var(--bg); text-align: center; padding: 120px 20px; }
.contact h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; letter-spacing: -1px; line-height: 1.15; margin-bottom: 1.2rem;
}
.contact h2 em { font-style: italic; font-weight: 300; color: var(--highlight); }
.contact-intro { color: rgba(245,244,240,.6); font-size: 1.05rem; font-weight: 300; line-height: 1.75; margin-bottom: 56px; }

.contact-options {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 0; max-width: 860px; margin: 0 auto;
  align-items: start;
}
.booking-card, .contact-form-card {
  background: rgba(255,255,255,.07); border-radius: 20px;
  border: 1px solid rgba(255,255,255,.1); padding: 40px 36px;
  text-align: left;
}
.booking-card { display: flex; flex-direction: column; gap: 16px; }
.booking-icon { font-size: 2.4rem; }
.booking-card h3, .contact-form-card h3 {
  font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600; color: var(--bg);
}
.booking-card p { color: rgba(245,244,240,.55); font-size: .92rem; font-weight: 300; line-height: 1.6; flex: 1; }
.booking-cta {
  background: var(--highlight); color: var(--text); border: none;
  padding: 15px 28px; border-radius: 4px; font-weight: 600; font-size: .92rem;
  text-align: center;
}
.booking-cta:hover { background: white; color: var(--text); transform: translateY(-2px); }

.or-divider {
  display: flex; align-items: center; justify-content: center;
  padding: 0 28px;
}
.or-divider span {
  font-size: .8rem; color: rgba(245,244,240,.3); text-transform: uppercase;
  letter-spacing: .1em; writing-mode: vertical-rl;
  border-left: 1px solid rgba(255,255,255,.1);
  padding-left: 12px;
}

.contact-form-card h3 { margin-bottom: 24px; }
.form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
input, textarea {
  border: 1px solid rgba(255,255,255,.12); border-radius: 8px;
  padding: 13px 16px; font-size: .93rem;
  font-family: 'DM Sans', sans-serif;
  background: rgba(255,255,255,.06); color: var(--bg);
  transition: border-color .2s; width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(245,244,240,.3); }
input:focus, textarea:focus { outline: none; border-color: var(--highlight); }
textarea { resize: vertical; min-height: 100px; }
button[type="submit"] {
  background: var(--bg); color: var(--text); border: none; border-radius: 4px;
  padding: 14px; font-size: .9rem; font-weight: 500;
  font-family: 'DM Sans', sans-serif; cursor: none;
  transition: background .3s, transform .2s;
}
button[type="submit"]:hover { background: var(--highlight); transform: translateY(-2px); }
button[type="submit"]:disabled { opacity: .6; transform: none; }
.form-success { display: none; color: var(--highlight); font-size: .9rem; margin-top: 8px; }

/* ── FOOTER ───────────────────────────────────── */
footer { background: var(--footer-bg); border-top: 1px solid rgba(255,255,255,.08); padding: 48px 20px 36px; }
.footer-inner { text-align: center; }
.footer-brand { font-size: 1.4rem; display: inline-block; margin-bottom: 8px; color: var(--bg); }
.footer-brand span { color: var(--highlight); }
.footer-tagline { font-size: .8rem; color: rgba(245,244,240,.35); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 28px; font-weight: 300; }
.footer-links { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.footer-links a { font-size: .85rem; color: rgba(245,244,240,.5); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--highlight); }
.footer-copy { font-size: .8rem; color: rgba(245,244,240,.25); }

/* ── SUBSCRIBE PAGE ───────────────────────────── */
.subscribe-wrapper {
  display: flex; justify-content: center; align-items: center;
  min-height: calc(100vh - 160px); padding: 60px 20px;
}
.questionnaire {
  background: white; border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,.06); border: 1px solid var(--accent);
  max-width: 600px; width: 100%; padding: 80px 60px;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.progress { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.progress-bar { width: 100%; height: 2px; background: var(--accent); border-radius: 2px; margin-bottom: 40px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: var(--highlight); border-radius: 2px; transition: width .4s ease; }
#form-container h2 { font-family: 'Fraunces', serif; font-size: 1.8rem; font-weight: 600; letter-spacing: -.5px; margin-bottom: 32px; color: var(--text); }
.answer-btn {
  background: white; color: var(--text); border: 1px solid var(--accent); border-radius: 8px;
  padding: 14px 24px; margin: 8px; min-width: 220px; cursor: none;
  font-weight: 400; font-family: 'DM Sans', sans-serif; font-size: .95rem;
  transition: all .25s ease;
}
.answer-btn:hover, .answer-btn.selected { background: var(--text); color: var(--bg); transform: translateY(-2px); border-color: var(--text); }
.questionnaire textarea, .questionnaire input {
  border: 1px solid var(--accent); border-radius: 8px; padding: 14px 16px;
  width: 100%; margin-bottom: 12px; font-size: .95rem;
  font-family: 'DM Sans', sans-serif; background: #fafaf8; color: var(--text);
  transition: border-color .2s;
}
.questionnaire textarea:focus, .questionnaire input:focus { outline: none; border-color: var(--highlight); }
.questionnaire textarea::placeholder, .questionnaire input::placeholder { color: var(--muted); }
.actions { display: flex; justify-content: center; margin-top: 32px; gap: 12px; }
.actions button {
  padding: 12px 28px; border-radius: 4px; border: 1px solid var(--accent);
  background: var(--text); color: var(--bg); cursor: none;
  font-weight: 500; font-family: 'DM Sans', sans-serif; transition: .25s ease;
}
.actions button:hover { background: var(--highlight); border-color: var(--highlight); }
.actions button:disabled { opacity: .3; }

/* ── RESPONSIVE ───────────────────────────────── */

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  .nav { padding: 16px 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hero { padding: 60px 20px 40px; min-height: 80vh; }
  .hero h1 { font-size: 2.4rem; letter-spacing: -1px; }
  .hero-bg-text { font-size: 28vw; }
  .hero-actions { flex-direction: column; align-items: center; }
  .scroll-hint { display: none; }

  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 36px 20px; }

  .section { padding: 64px 16px; }
  .pillars { grid-template-columns: 1fr; gap: 12px; }

  .platforms-grid { grid-template-columns: 1fr; gap: 14px; }
  .prozess-steps { grid-template-columns: 1fr; border-radius: 16px; }
  .prozess-step { border-right: none; border-bottom: 1px solid var(--accent); }
  .prozess-step.last { border-bottom: none; }
  .step-arrow { display: none; }

  .vergleich-header, .vergleich-row { grid-template-columns: 1fr; }
  .vergleich-header .col-label { display: none; }
  .vergleich-row .col-label { font-size: .75rem; color: var(--muted); padding-bottom: 4px; }
  .vergleich-row > div { padding: 12px 16px; }

  .contact-options { grid-template-columns: 1fr; gap: 20px; }
  .or-divider { padding: 0; }
  .or-divider span { writing-mode: horizontal-tb; border-left: none; border-top: 1px solid rgba(255,255,255,.1); padding-left: 0; padding-top: 8px; }
  .booking-card, .contact-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact { padding: 64px 16px; }
  .questionnaire { padding: 40px 24px; }
  .answer-btn { min-width: 100%; margin: 6px 0; }
}

/* Tablet (601px – 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  .nav { padding: 20px 32px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hero h1 { font-size: 3.2rem; }
  .platforms-grid { grid-template-columns: repeat(2,1fr); }
  .prozess-steps { grid-template-columns: repeat(2,1fr); }
  .prozess-step:nth-child(2) { border-right: none; }
  .prozess-step:nth-child(3) { border-top: 1px solid var(--accent); border-right: 1px solid var(--accent); }
  .prozess-step.last { border-top: 1px solid var(--accent); }
  .step-arrow { display: none; }
  .pillars { grid-template-columns: repeat(3,1fr); }
  .stats { grid-template-columns: repeat(3,1fr); }
  .section { padding: 80px 32px; }
  .contact-options { grid-template-columns: 1fr; gap: 24px; }
  .or-divider span { writing-mode: horizontal-tb; border-left: none; border-top: 1px solid rgba(255,255,255,.1); padding-left: 0; padding-top: 8px; }
  .questionnaire { padding: 60px 40px; }
}

/* Large screens (≥ 1440px) */
@media (min-width: 1440px) {
  .hero h1 { font-size: 5.5rem; }
  .section { max-width: 1000px; }
  .leistungen-section { max-width: 1200px; }
  .prozess-section { max-width: 1100px; }
  .questionnaire { max-width: 680px; }
  .counter { font-size: 3.6rem; }
}

/* ── FOOTER SOCIALS ───────────────────────────── */
.footer-socials {
  display: flex; gap: 20px; justify-content: center;
  margin-bottom: 28px; flex-wrap: wrap;
}
.social-link {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 500; color: rgba(242,248,252,.6);
  text-decoration: none; padding: 9px 18px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 30px;
  transition: color .25s, border-color .25s, background .25s;
}
.social-link:hover {
  color: #fff; border-color: var(--highlight);
  background: rgba(90,174,208,.15);
}

/* ── PLATFORM BADGES AS LINKS ─────────────────── */
a.platform-badge {
  text-decoration: none; transition: background .2s, border-color .2s, color .2s;
}
a.platform-badge:hover {
  background: var(--highlight); border-color: var(--highlight);
  color: white;
}

/* ── LOGO IMAGE ───────────────────────────────── */
.brand-logo {
  height: 38px;
  width: auto;
  mix-blend-mode: multiply;
  display: block;
}
.footer-logo {
  height: 44px;
  margin: 0 auto 10px;
  filter: brightness(0) invert(1);
  mix-blend-mode: normal;
  opacity: .85;
}

/* ── LANG SWITCHER ────────────────────────────── */
.nav-right {
  display: flex; align-items: center; gap: 16px;
}
.lang-switcher {
  display: flex; align-items: center; gap: 4px;
}
.lang-btn {
  background: none; border: none; padding: 4px 6px;
  font-size: .78rem; font-weight: 500; letter-spacing: .06em;
  color: var(--muted); cursor: none; border-radius: 3px;
  transition: color .2s, background .2s; font-family: \'DM Sans\', sans-serif;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active { color: var(--highlight); font-weight: 700; }
.lang-sep { color: var(--accent); font-size: .75rem; }
.theme-toggle {
  background: none; border: none; padding: 4px 6px;
  cursor: none; border-radius: 3px; display: flex; align-items: center;
  color: var(--muted); transition: color .2s, transform .2s;
}
.theme-toggle:hover { color: var(--text); transform: scale(1.15); }

/* ── ABOUT / WARUM GIBT ES UNS ────────────────── */
.about-section { max-width: 820px; }
.about-text { text-align: left; margin-bottom: 56px; }
.about-text p {
  color: var(--muted); font-size: 1rem; font-weight: 300;
  line-height: 1.8; margin-bottom: 1.2rem;
}
.about-tagline {
  font-size: 1.05rem !important; font-style: italic;
  color: var(--text) !important; font-weight: 400 !important;
  border-left: 3px solid var(--highlight); padding-left: 16px;
}
.mission-vision {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; text-align: left;
}
.mv-card {
  background: white; border-radius: 20px; padding: 36px 32px;
  border: 1px solid var(--accent); box-shadow: 0 2px 20px rgba(0,0,0,.04);
  transition: transform .3s, box-shadow .3s;
}
.mv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.08); }
.mv-icon { font-size: 2rem; margin-bottom: 14px; }
.mv-card h3 {
  font-family: \'Fraunces\', serif; font-size: 1.3rem; font-weight: 600;
  margin-bottom: 12px; color: var(--text);
}
.mv-card p { color: var(--muted); font-size: .92rem; font-weight: 300; line-height: 1.7; }

/* ── ANGEBOT / SERVICE CARDS ──────────────────── */
.angebot-section { max-width: 1100px; }
.angebot-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 8px;
}
.angebot-card {
  background: white; border-radius: 20px; padding: 36px 24px;
  box-shadow: 0 2px 20px rgba(0,0,0,.04); border: 1px solid var(--accent);
  text-align: left; transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.angebot-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.08); }
.angebot-icon { font-size: 2.2rem; margin-bottom: 16px; }
.angebot-card h3 {
  font-family: \'Fraunces\', serif; font-size: 1.15rem; font-weight: 600; margin-bottom: 10px;
}
.angebot-card p {
  color: var(--muted); font-size: .88rem; font-weight: 300; line-height: 1.65;
  margin-bottom: 20px; flex: 1;
}
.angebot-features { list-style: none; padding: 0; margin-top: auto; }
.angebot-features li {
  font-size: .82rem; color: var(--muted); padding: 6px 0;
  border-bottom: 1px solid var(--warm);
}
.angebot-features li::before { content: \'\\2192  \'; color: var(--highlight); }
.angebot-features li:last-child { border-bottom: none; }

/* ── TEAM ─────────────────────────────────────── */
.team-section { max-width: 760px; }
.team-grid {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-top: 16px;
}
.team-card {
  background: white; border-radius: 24px; padding: 40px 32px;
  border: 1px solid var(--accent); box-shadow: 0 2px 20px rgba(0,0,0,.04);
  text-align: center; width: 240px;
  transition: transform .3s, box-shadow .3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.08); }
.team-photo {
  width: 96px; height: 96px; border-radius: 50%;
  margin: 0 auto 20px; overflow: hidden;
  border: 3px solid var(--accent);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.placeholder-photo {
  background: var(--warm); display: flex; align-items: center;
  justify-content: center; font-family: \'Fraunces\', serif;
  font-size: 2.4rem; font-weight: 600; color: var(--highlight);
}
.team-card h3 {
  font-family: \'Fraunces\', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 4px;
}
.team-role { font-size: .82rem; color: var(--muted); font-weight: 400; margin-bottom: 8px; }
.team-email {
  font-size: .82rem; color: var(--highlight); text-decoration: none;
  transition: color .2s;
}
.team-email:hover { color: var(--text); }
.team-fun {
  font-size: .78rem; color: var(--muted); font-style: italic;
  margin-top: 8px; line-height: 1.5;
}
.team-card--cat .team-photo { border-color: var(--highlight); }

/* ── RESPONSIVE ADDITIONS ─────────────────────── */
@media (max-width: 600px) {
  .nav-right { display: none; }
  .lang-switcher { display: none; }
  .mission-vision { grid-template-columns: 1fr; }
  .angebot-grid { grid-template-columns: 1fr; }
  .team-grid { flex-direction: column; align-items: center; }
  .about-text { text-align: center; }
  .about-tagline { text-align: left; }
}
@media (min-width: 601px) and (max-width: 1024px) {
  .nav-right .nav-cta { display: none; }
  .angebot-grid { grid-template-columns: repeat(2,1fr); }
  .mission-vision { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────
   TAB NAVIGATION
───────────────────────────────────────── */
.page-tabs {
  position: sticky;
  top: 68px;
  z-index: 90;
  background: var(--bg);
  border-bottom: 1px solid var(--accent);
  padding: 10px 20px;
}
.page-tabs-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.page-tabs-inner::-webkit-scrollbar { display: none; }
.page-tab {
  flex-shrink: 0;
  padding: 8px 22px;
  border-radius: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  transition: all .2s;
  white-space: nowrap;
}
.page-tab:hover:not(.active) {
  background: var(--warm);
  color: var(--text);
}
.page-tab.active {
  background: var(--text);
  color: var(--bg);
  border-radius: 6px;
}

/* Sections hidden by default, shown when tab-active */
.tabbed-section {
  display: none;
}
.tabbed-section.tab-active {
  display: block;
  animation: tabFadeIn .35s ease;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .page-tabs { top: 60px; padding: 8px 12px; }
  .page-tab  { padding: 7px 14px; font-size: .8rem; }
}
