/* ============================================
   Nadine Borgulat Design
   Look: Türkis + Gelb, pinke Akzente — kreativ & klar
   ============================================ */

:root {
  --color-teal: #10B6A8;
  --color-teal-soft: #6FD8CE;
  --color-teal-dark: #0B5952;
  --color-ink: #16302E;

  --color-yellow: #FFCB2D;
  --color-yellow-soft: #FFE694;
  --color-pink: #FF4D97;
  --color-pink-soft: #FF8CBE;

  --color-bg: #FDFBF5;
  --color-tint: #E4F7F4;
  --color-tint-warm: #FFF6E0;
  --color-card: #FFFFFF;

  --color-text: #22322F;
  --color-text-muted: #5E6E6B;
  --color-border: #D7ECE8;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-soft: 0 4px 20px rgba(11, 89, 82, 0.08);
  --shadow-medium: 0 12px 38px rgba(11, 89, 82, 0.15);

  --radius: 14px;
  --radius-lg: 22px;
  --transition: all 0.25s ease;
}

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

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

.container { width: 90%; max-width: 1080px; margin: 0 auto; }
.container.narrow { max-width: 720px; }

h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; color: var(--color-ink); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.4rem; font-weight: 600; }

p { margin-bottom: 1rem; }
.center { text-align: center; }
.muted { color: var(--color-text-muted); }
.small { font-size: 0.9rem; }
.lead { font-size: 1.15rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 5%;
  background: rgba(253, 251, 245, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.brand { font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.01em; color: var(--color-ink); white-space: nowrap; }
.brand .sep { color: var(--color-pink); margin: 0 0.35rem; }
.brand-more { font-weight: 400; color: var(--color-text-muted); font-size: 0.92em; }
@media (max-width: 760px) { .brand-more { display: none; } }
.header-cta {
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  color: #fff; background: var(--color-teal); padding: 0.45rem 1.1rem;
  border-radius: 100px; transition: var(--transition);
}
.header-cta:hover { background: var(--color-teal-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; font-weight: 600;
  padding: 0.85rem 1.9rem; border-radius: 100px; transition: var(--transition);
  cursor: pointer; border: 1.5px solid transparent; font-size: 1rem;
}
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.92rem; }
.btn-primary { background: var(--color-teal); color: #fff; box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--color-teal-dark); transform: translateY(-2px); }
.btn-pink { background: var(--color-pink); color: #fff; box-shadow: 0 6px 20px rgba(255, 77, 151, 0.28); }
.btn-pink:hover { background: #E63A83; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--color-teal-dark); border-color: var(--color-teal); }
.btn-ghost:hover { background: var(--color-teal); color: #fff; }
.btn-yellow { background: var(--color-yellow); color: var(--color-ink); }
.btn-yellow:hover { background: var(--color-yellow-soft); transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(155deg, #E4F7F4 0%, #FDFBF5 52%, #FFF3D6 100%);
  padding: 4.5rem 0 5rem;
  border-bottom: 1px solid var(--color-border);
}
.hero-inner { text-align: center; max-width: 900px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.8rem;
  font-weight: 700; color: var(--color-teal); margin-bottom: 1rem;
}
.hero h1 { color: var(--color-ink); margin-bottom: 1.1rem; }
.hero h1 .hl { color: var(--color-teal); }
.hero h1 .hl-pink { color: var(--color-pink); }
.hero h1 .hl-under { background: linear-gradient(transparent 62%, var(--color-yellow-soft) 62%); padding: 0 0.1em; }
.hero-rule { display: block; width: 68px; height: 4px; background: var(--color-pink); border-radius: 2px; margin: 0 auto 1.4rem; }
.hero-sub { font-size: 1.2rem; color: var(--color-text-muted); max-width: 660px; margin: 0 auto 1.6rem; }
.hero-badge {
  display: inline-block; background: #fff; border: 1px solid var(--color-yellow);
  color: var(--color-ink); padding: 0.6rem 1.4rem; border-radius: 100px;
  font-size: 1.05rem; box-shadow: var(--shadow-soft); margin-bottom: 1.8rem;
}
.hero-badge strong { color: var(--color-pink); }
.hero-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.4rem; }
.hero-meta { font-size: 0.92rem; color: var(--color-text-muted); }

/* ---------- Hero-Animation: Idee -> Landingpage -> App ---------- */
.hero-scene { max-width: 780px; margin: 2rem auto 0.4rem; }
.hero-scene svg { width: 100%; height: auto; display: block; overflow: visible; }
.scene-label { font-family: var(--font-body); font-size: 15px; font-weight: 600; letter-spacing: 0.02em; fill: #8A9997; text-anchor: middle; }
.scene-label.teal { fill: var(--color-teal); }
.scene-label.pink { fill: var(--color-pink); }

.flow-arrow { stroke-dasharray: 40; stroke-dashoffset: 40; }
.flow-arrow.a1 { animation: flowDraw 8s ease-in-out infinite .6s; }
.flow-arrow.a2 { animation: flowDraw 8s ease-in-out infinite 2.6s; }
@keyframes flowDraw { 0%,5% { stroke-dashoffset: 40; } 12%,94% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 40; } }

.idea-bulb { transform-box: fill-box; transform-origin: center; animation: bulbGlow 8s ease-in-out infinite; }
@keyframes bulbGlow { 0%,92%,100% { opacity: .55; } 5%,22% { opacity: 1; } }
.idea-ray { transform-box: fill-box; transform-origin: center; animation: rayPulse 8s ease-in-out infinite; }
@keyframes rayPulse { 0%,92%,100% { opacity: 0; transform: scale(.6); } 6%,18% { opacity: 1; transform: scale(1); } }

.win-block { transform-box: fill-box; transform-origin: left center; }
.win-block.b1 { animation: blockGrow 8s ease-in-out infinite 1.0s; }
.win-block.b2 { animation: blockGrow 8s ease-in-out infinite 1.2s; }
.win-block.b3 { animation: blockGrow 8s ease-in-out infinite 1.4s; }
.win-block.b4 { animation: blockGrow 8s ease-in-out infinite 1.6s; }
@keyframes blockGrow {
  0%,13% { opacity: 0; transform: scaleX(0); }
  22%,94% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(0); }
}
.win-cta { transform-box: fill-box; transform-origin: center; animation: ctaPop 8s ease-in-out infinite 1.9s; }
@keyframes ctaPop { 0%,24% { opacity: 0; transform: scale(.4); } 34%,94% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(.6); } }

/* Smartphone: ruhig einblenden und lange sichtbar halten */
.phone-pop { transform-box: fill-box; transform-origin: bottom center; animation: phoneShow 8s ease-in-out infinite 2.8s; }
@keyframes phoneShow {
  0%,30% { opacity: 0; transform: translateY(10px); }
  42%,95% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(6px); }
}
.win-spark { transform-box: fill-box; transform-origin: center; animation: twinkle 2.2s ease-in-out infinite; }
@keyframes twinkle { 0%,100% { opacity: .15; } 50% { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .flow-arrow, .idea-bulb, .idea-ray, .win-block, .win-cta, .phone-pop, .win-spark { animation: none; }
  .idea-bulb, .idea-ray, .win-block, .win-cta, .phone-pop { opacity: 1; transform: none; }
  .flow-arrow { stroke-dashoffset: 0; }
}

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }
.section-tint { background: var(--color-tint); }
.section-warm { background: var(--color-tint-warm); }
.section h2.center { margin-bottom: 0.6rem; }
.section-sub { text-align: center; max-width: 640px; margin: 0 auto 2.6rem; color: var(--color-text-muted); font-size: 1.1rem; }

/* ---------- Portfolio / Fächer ---------- */
.fan-wrap { position: relative; }
.fan {
  position: relative; height: 380px; display: flex; justify-content: center; align-items: flex-end;
  margin-bottom: 1.5rem;
}
.fan-card {
  position: absolute; bottom: 20px; width: 230px; height: 320px;
  background: var(--color-card); border: 1px solid var(--color-border); border-radius: 18px;
  box-shadow: var(--shadow-medium); overflow: hidden; transform-origin: bottom center;
  transition: transform 0.35s ease, box-shadow 0.35s ease; cursor: default;
}
.fan-card:nth-child(1) { transform: rotate(-22deg) translateX(-150px) translateY(28px); z-index: 1; }
.fan-card:nth-child(2) { transform: rotate(-11deg) translateX(-76px) translateY(6px); z-index: 2; }
.fan-card:nth-child(3) { transform: rotate(0deg) translateY(-4px); z-index: 3; }
.fan-card:nth-child(4) { transform: rotate(11deg) translateX(76px) translateY(6px); z-index: 2; }
.fan-card:nth-child(5) { transform: rotate(22deg) translateX(150px) translateY(28px); z-index: 1; }
.fan:hover .fan-card:nth-child(1) { transform: rotate(-27deg) translateX(-210px) translateY(20px); }
.fan:hover .fan-card:nth-child(2) { transform: rotate(-13deg) translateX(-108px); }
.fan:hover .fan-card:nth-child(4) { transform: rotate(13deg) translateX(108px); }
.fan:hover .fan-card:nth-child(5) { transform: rotate(27deg) translateX(210px) translateY(20px); }
.fan-card:hover { z-index: 10; box-shadow: 0 22px 55px rgba(11,89,82,.30); border-color: var(--color-teal-soft); }

/* Mini-Mockup im Card */
.mock { display: flex; flex-direction: column; height: 100%; }
.mock-bar { height: 26px; background: var(--color-tint); display: flex; align-items: center; gap: 5px; padding: 0 10px; flex-shrink: 0; }
.mock-bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--color-teal-soft); display: block; }
.mock-body { flex: 1; padding: 16px 14px; display: flex; flex-direction: column; gap: 9px; }
.mock-body .m-hl { height: 16px; width: 72%; border-radius: 5px; }
.mock-body .m-line { height: 8px; border-radius: 4px; background: #E6EDEC; }
.mock-body .m-line.s { width: 60%; }
.mock-body .m-img { flex: 1; border-radius: 10px; margin: 4px 0; }
.mock-body .m-btn { height: 26px; width: 96px; border-radius: 100px; margin-top: auto; }
.mock-shot { flex: 1; overflow: hidden; background: var(--color-tint); }
.mock-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.mock-foot { padding: 10px 14px 14px; border-top: 1px solid var(--color-border); flex-shrink: 0; }
.mock-foot strong { display: block; color: var(--color-ink); font-family: var(--font-heading); font-weight: 600; font-size: 0.98rem; }
.mock-foot span { font-size: 0.8rem; color: var(--color-text-muted); }
/* Farbvarianten je Card */
.v-teal .m-hl, .v-teal .m-btn { background: var(--color-teal); }
.v-teal .m-img { background: var(--color-tint); }
.v-pink .m-hl, .v-pink .m-btn { background: var(--color-pink); }
.v-pink .m-img { background: #FFE6F1; }
.v-yellow .m-hl, .v-yellow .m-btn { background: var(--color-yellow); }
.v-yellow .m-img { background: var(--color-tint-warm); }
.v-dark .m-hl, .v-dark .m-btn { background: var(--color-teal-dark); }
.v-dark .m-img { background: var(--color-tint); }
.fan-hint { text-align: center; color: var(--color-text-muted); font-size: 0.92rem; margin-bottom: 0.6rem; }
.hint-mobile { display: none; }

/* ---------- App-Demo ---------- */
.app-demo { display: flex; align-items: center; gap: 3rem; margin-top: 1rem; }
.app-demo .phone {
  flex: 0 0 auto; width: 250px; height: 510px; background: var(--color-ink);
  border-radius: 40px; padding: 12px; box-shadow: var(--shadow-medium);
}
.app-screen { width: 100%; height: 100%; background: linear-gradient(170deg, var(--color-teal) 0%, var(--color-teal-dark) 100%); border-radius: 30px; overflow: hidden; display: flex; flex-direction: column; color: #fff; }
.app-top { padding: 26px 20px 14px; }
.app-top .app-greet { font-size: 0.78rem; opacity: 0.85; }
.app-top .app-title { font-family: var(--font-heading); font-weight: 600; font-size: 1.15rem; }
.app-avatar { width: 74px; height: 74px; border-radius: 50%; background: var(--color-yellow); margin: 4px auto 10px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.app-sheet { background: #fff; border-radius: 24px 24px 0 0; margin-top: auto; padding: 20px 18px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.app-card { background: var(--color-tint); border-radius: 14px; padding: 12px 14px; }
.app-card b { color: var(--color-ink); font-family: var(--font-heading); font-size: 0.9rem; }
.app-card p { margin: 4px 0 0; font-size: 0.8rem; color: var(--color-text-muted); }
.app-pill { background: var(--color-pink); color: #fff; text-align: center; border-radius: 100px; padding: 11px; font-weight: 600; font-size: 0.9rem; margin-top: auto; }
.app-text { flex: 1; }
.app-text h3 { font-size: 1.5rem; }
.app-text ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.app-text li { position: relative; padding-left: 1.7rem; margin-bottom: 0.6rem; color: var(--color-text-muted); }
.app-text li::before { content: "✦"; position: absolute; left: 0; color: var(--color-pink); }

/* ---------- App-Screenshots (3 echte Handys) ---------- */
.app-phones { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.phone-shot { width: 132px; aspect-ratio: 1 / 2; box-sizing: border-box; border: 6px solid var(--color-ink); border-radius: 26px; overflow: hidden; background: var(--color-ink); box-shadow: var(--shadow-medium); flex: 0 0 auto; }
.phone-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.phone-shot:nth-child(1) { transform: rotate(-6deg); margin-right: -18px; z-index: 1; }
.phone-shot:nth-child(2) { transform: translateY(-16px); z-index: 3; box-shadow: 0 18px 44px rgba(11,89,82,.30); }
.phone-shot:nth-child(3) { transform: rotate(6deg); margin-left: -18px; z-index: 2; }

@media (max-width: 760px) {
  .app-demo { flex-direction: column; gap: 2rem; text-align: center; }
  .app-text li { text-align: left; }
  .phone-shot { width: 125px; }
}

/* ---------- Pain-Callout ---------- */
.pain-callout {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; line-height: 1.35;
  color: var(--color-ink); background: var(--color-tint-warm);
  border-left: 4px solid var(--color-pink); border-radius: var(--radius);
  padding: 1.3rem 1.6rem; margin: 1.6rem 0;
}

/* ---------- Prozess (So einfach) ---------- */
.steps { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.2rem; }
.step {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--color-card); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 1.4rem 1.6rem; box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-medium); }
.step-num {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: var(--color-teal); color: #fff; font-weight: 700; font-family: var(--font-heading);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.step:nth-child(2) .step-num { background: var(--color-pink); }
.step:nth-child(3) .step-num { background: var(--color-yellow); color: var(--color-ink); }
.step:nth-child(4) .step-num { background: var(--color-teal-dark); }
.step:nth-child(5) .step-num { background: var(--color-pink); }
.step h3 { color: var(--color-ink); }
.step p { margin: 0; color: var(--color-text-muted); }

/* ---------- Zeitaufwand-Highlight ---------- */
.aufwand {
  text-align: center; background: var(--color-tint); border: 1px solid var(--color-teal-soft);
  border-radius: var(--radius-lg); padding: 1.5rem 1.8rem; max-width: 640px; margin: 2.4rem auto 0;
}
.aufwand p { margin: 0; color: var(--color-text); }
.aufwand strong { color: var(--color-teal-dark); font-family: var(--font-heading); font-size: 1.35rem; }

/* ---------- Cards 3 ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-bottom: 2rem; }
.card {
  background: var(--color-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 2rem 1.6rem; box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.card-icon { font-size: 1.5rem; margin-bottom: 0.7rem; }
.card h3 { color: var(--color-ink); }
.card p { margin: 0; color: var(--color-text-muted); }

/* ---------- Preise ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.price-card {
  position: relative; background: var(--color-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 2rem 1.8rem; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; transition: var(--transition); border-top: 4px solid var(--color-teal);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.price-card.featured { border-top-color: var(--color-pink); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--color-pink); color: #fff; font-size: 0.78rem; font-weight: 600;
  padding: 0.28rem 0.9rem; border-radius: 100px; letter-spacing: 0.02em; white-space: nowrap;
}
.price-card h3 { color: var(--color-ink); font-size: 1.4rem; margin-bottom: 0.2rem; }
.price-tag { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--color-teal-dark); line-height: 1.1; margin: 0.6rem 0 0.1rem; }
.price-card.featured .price-tag { color: var(--color-pink); }
.price-tag small { font-size: 0.9rem; font-family: var(--font-body); font-weight: 500; color: var(--color-text-muted); }
.price-note { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 1.2rem; }
.price-list { list-style: none; margin: 0 0 1.6rem; padding: 0; }
.price-list li { position: relative; padding-left: 1.6rem; margin-bottom: 0.55rem; color: var(--color-text-muted); }
.price-list li::before { content: "✓"; position: absolute; left: 0; color: var(--color-teal); font-weight: 700; }
.price-card .btn { margin-top: auto; text-align: center; }
.price-fineprint { text-align: center; margin-top: 1.6rem; }

/* ---------- Facts ---------- */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.fact { display: flex; flex-direction: column; gap: 0.3rem; }
.fact-big { font-family: var(--font-heading); font-size: 1.7rem; font-weight: 700; color: var(--color-teal); }
.fact:nth-child(2) .fact-big { color: var(--color-pink); }
.fact:nth-child(3) .fact-big { color: var(--color-teal-dark); }
.fact:nth-child(4) .fact-big { color: var(--color-teal); }
.fact span:last-child { color: var(--color-text-muted); font-size: 0.95rem; }
/* Fakten auf dunklem Hintergrund lesbar */
.section-dark .fact:nth-child(1) .fact-big,
.section-dark .fact:nth-child(3) .fact-big { color: #fff; }
.section-dark .fact:nth-child(2) .fact-big,
.section-dark .fact:nth-child(4) .fact-big { color: var(--color-yellow); }
.section-dark .fact span:last-child { color: rgba(255,255,255,0.85); }

/* ---------- Dark section ---------- */
.section-dark {
  background: linear-gradient(150deg, var(--color-teal-dark), var(--color-teal));
  color: #fff;
}
.section-dark .on-dark { color: #fff; }
.section-dark h2 { color: #fff; }
.on-dark-sub { color: rgba(255,255,255,0.88); max-width: 620px; margin: 1rem auto 0; }

/* ---------- Expertise (Foto von Nadine) ---------- */
.about { display: flex; align-items: center; gap: 3rem; }
.about-photo { flex: 0 0 320px; position: relative; }
.about-photo img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-medium);
  display: block; aspect-ratio: 4 / 5; object-fit: cover;
}
.about-photo::after {
  content: ""; position: absolute; inset: 14px -14px -14px 14px; z-index: -1;
  border-radius: var(--radius-lg); background: var(--color-yellow);
}
.about-text { flex: 1; }
.about-text h2 { margin-bottom: 1rem; }
.expertise-list { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.expertise-list li { position: relative; padding-left: 1.9rem; margin-bottom: 0.7rem; color: var(--color-text-muted); }
.expertise-list li::before { content: "✦"; position: absolute; left: 0; color: var(--color-pink); font-size: 1.1rem; }
.expertise-list li strong { color: var(--color-ink); }

@media (max-width: 760px) {
  .about { flex-direction: column; text-align: center; gap: 2.4rem; }
  .about-photo { flex: 0 0 auto; max-width: 280px; }
  .about-photo::after { inset: 12px -12px -12px 12px; }
  .expertise-list { text-align: left; display: inline-block; }
}

/* ---------- Cross-Promo Punkte ---------- */
.li-points { list-style: none; padding: 0; margin: 1.4rem auto 1.8rem; display: inline-block; text-align: left; }
.li-points li { position: relative; padding-left: 1.9rem; margin-bottom: 0.6rem; color: var(--color-text-muted); }
.li-points li::before { content: "✓"; position: absolute; left: 0; color: var(--color-teal); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq {
  background: var(--color-card); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 1.1rem 1.4rem; margin-bottom: 0.8rem;
}
.faq summary { font-weight: 600; cursor: pointer; color: var(--color-ink); list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--color-pink); font-size: 1.3rem; line-height: 1; }
.faq[open] summary::after { content: "–"; }
.faq p { margin: 0.8rem 0 0; color: var(--color-text-muted); }

/* ---------- Kontaktformular ---------- */
.contact-wrap {
  background: var(--color-card); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 2.2rem; box-shadow: var(--shadow-soft);
}
.contact-form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label { font-size: 0.9rem; font-weight: 600; color: var(--color-ink); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--color-text);
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 0.8rem 1rem; transition: var(--transition); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--color-teal); box-shadow: 0 0 0 3px rgba(16, 182, 168, 0.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-file input { padding: 0.7rem; background: var(--color-tint); cursor: pointer; }
.field-hint { font-size: 0.82rem; color: var(--color-text-muted); }
.hp { position: absolute; left: -9999px; }
.contact-form .btn { justify-self: start; margin-top: 0.4rem; }
.contact-aside { color: var(--color-text-muted); }
.contact-aside a { color: var(--color-teal-dark); font-weight: 600; }

/* ---------- Legal ---------- */
.legal h1 { color: var(--color-ink); margin-bottom: 1.6rem; font-size: clamp(2rem, 4vw, 2.6rem); }
.legal h2 { font-size: 1.3rem; color: var(--color-teal-dark); margin: 2rem 0 0.5rem; }
.legal a { color: var(--color-teal-dark); }
.legal-back { margin-top: 2.5rem; }
.legal-back a { font-weight: 600; text-decoration: none; }

/* ---------- Danke ---------- */
.thanks { text-align: center; max-width: 620px; }
.thanks .check {
  width: 84px; height: 84px; border-radius: 50%; background: var(--color-tint);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.6rem;
  color: var(--color-teal); font-size: 2.4rem;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--color-ink); color: rgba(255,255,255,0.8); padding: 2.4rem 0; text-align: center; font-size: 0.9rem; }
.site-footer p { margin: 0.3rem 0; }
.footer-links a { color: var(--color-yellow-soft); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .cards-3, .pricing { grid-template-columns: 1fr; }
  .facts { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
}
@media (max-width: 760px) {
  /* Fächer -> scrollbare Reihe */
  .fan { height: auto; display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: flex-start; gap: 1rem; overflow-x: auto; padding: 0.5rem 0.2rem 1.2rem; scroll-snap-type: x mandatory; scroll-padding-left: 0.2rem; margin-bottom: 1rem; }
  .fan-card { position: relative; bottom: auto; transform: none !important; flex: 0 0 210px; height: 300px; scroll-snap-align: start; }
  .hint-desktop { display: none; }
  .hint-mobile { display: block; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .step { padding: 1.2rem 1.2rem; }
}
@media (max-width: 520px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .header-cta { padding: 0.4rem 0.9rem; }
  .contact-form .btn { justify-self: stretch; width: 100%; }
}
