/* ============================================================
   KundenPlus — Festpreis-Webseiten Onepager
   Design tokens & visuelles System (aus Figma-Vorlage adaptiert)
   ============================================================ */

/* Spinner für Screenshot-Loader */
@keyframes spin { to { transform: rotate(360deg); } }

:root {
  --bg: #edecec;
  --bg-soft: #f4f4f5;
  --ink: #09090b;
  --ink-2: #292c2e;
  --muted: #71717a;
  --line: #d4d4d8;
  --line-soft: #e4e4e7;
  --card: #f4f4f5;
  --card-soft: #fafafa;
  --dark: #18181b;
  --dark-2: #27272a;
  --accent: #fd3a25;
  --accent-soft: rgba(253, 58, 37, 0.12);

  --shadow-card:
    0 7.77px 16px rgba(0,0,0,0.06),
    0 3px 3px rgba(0,0,0,0.1),
    inset 0 -8px 0 rgba(0,0,0,0.05),
    inset 0 4px 0 rgba(255,255,255,0.6);
  --shadow-card-dark:
    0 7.77px 16px rgba(0,0,0,0.08),
    0 3px 3px rgba(0,0,0,0.1),
    inset 0 -8px 0 #2e2e2e,
    inset 0 4px 0 rgba(255,255,255,0.06);
  --shadow-pill-dark:
    inset 0 -3px 0 #080808,
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 3px 6px rgba(0,0,0,0.2);
  --shadow-pill-light:
    inset 0 -3px 0 #e9e9e9,
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 3px 3px rgba(0,0,0,0.12);
  --shadow-accent:
    0 22.91px 37.08px rgba(255,59,0,0.18),
    0 14px 34px rgba(255,59,0,0.25),
    0 1px 2px rgba(255,59,0,0.4);
  --shadow-tag:
    inset 0 -3px 0 #e9e9e9,
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 3px 3px rgba(0,0,0,0.14);

  /* Velvet easings used throughout */
  --ease-velvet: cubic-bezier(0.22, 1, 0.36, 1);   /* silk, slow-out */
  --ease-silk:   cubic-bezier(0.16, 1, 0.3, 1);     /* quintic out, longer landing */
  --ease-settle: cubic-bezier(0.34, 1.18, 0.4, 1);  /* soft overshoot */
  --ease-glide:  cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Urbanist', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: page-in 1.2s var(--ease-velvet) both;
}
@keyframes page-in { from { opacity: 0; } to { opacity: 1; } }

button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
::selection { background: var(--accent); color: #fff; }

/* Scroll-progress bar at very top */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 100; pointer-events: none;
}
.scroll-progress > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  width: var(--p, 0%);
  transition: width 0.4s var(--ease-velvet);
}

/* ----- Layout ----- */
.container { max-width: 1296px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4 { margin: 0; letter-spacing: -0.03em; font-weight: 700; line-height: 1; }
h1 { font-size: clamp(48px, 8vw, 96px); }
h2 { font-size: clamp(30px, 6vw, 72px); line-height: 1.02; }
h3 { font-size: 28px; line-height: 1.15; }
h4 { font-size: 20px; line-height: 1.25; }
p { margin: 0; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
}

/* ----- Tag pill ----- */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  width: auto; max-width: max-content;
  height: 36px; padding: 0 16px; border-radius: 8px;
  background: var(--card); box-shadow: var(--shadow-tag);
  font-weight: 700; font-size: 14px; color: var(--accent);
  letter-spacing: -0.005em; white-space: nowrap;
}
.tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  animation: pulse-dot 3.4s var(--ease-velvet) infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px var(--accent-soft); }
  50%      { box-shadow: 0 0 0 8px transparent; }
}

/* ----- Buttons ----- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  height: 52px; padding: 0 28px; border-radius: 100px;
  font-weight: 700; font-size: 16px; letter-spacing: -0.005em;
  white-space: nowrap; overflow: hidden;
  transition:
    transform 0.55s var(--ease-velvet),
    box-shadow 0.55s var(--ease-velvet),
    filter 0.4s var(--ease-velvet),
    background 0.4s var(--ease-velvet);
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); filter: brightness(0.95); transition-duration: 0.05s; }
.btn:disabled { cursor: not-allowed; }
.btn .arrow-wrap { display: inline-flex; transition: transform 0.55s var(--ease-silk); }
.btn:hover .arrow-wrap { transform: translateX(6px); }

.btn-dark { background: var(--dark-2); color: #fff; box-shadow: var(--shadow-pill-dark); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-pill-light); }
.btn-accent {
  background: linear-gradient(180deg, #ff4f30, var(--accent));
  color: #fff;
  box-shadow:
    inset 0 -3px 0 #c91d0a,
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 14px 34px rgba(255,59,0,0.32),
    0 1px 2px rgba(255,59,0,0.4);
}
.btn-accent:hover {
  filter: brightness(1.05);
  box-shadow:
    inset 0 -3px 0 #c91d0a,
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 20px 44px rgba(255,59,0,0.42),
    0 1px 2px rgba(255,59,0,0.4);
}
/* Cursor-tracked highlight on accent buttons */
.btn-accent::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120px circle at var(--mx, 50%) var(--my, 50%),
              rgba(255,255,255,0.22), transparent 50%);
  opacity: 0; transition: opacity 0.5s var(--ease-velvet);
  pointer-events: none;
}
.btn-accent:hover::before { opacity: 1; }
.btn-block { width: 100%; }

.arrow { display: inline-flex; align-items: center; justify-content: center; }

/* ----- Cards ----- */
.card {
  background: var(--card);
  border-radius: 32px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.7s var(--ease-silk), box-shadow 0.7s var(--ease-silk);
}
.card-hover:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 48px rgba(0,0,0,0.08),
    0 8px 12px rgba(0,0,0,0.06),
    inset 0 -8px 0 rgba(0,0,0,0.05),
    inset 0 4px 0 rgba(255,255,255,0.6);
}
.card-dark {
  background: var(--dark); color: #fff;
  border-radius: 32px; box-shadow: var(--shadow-card-dark); overflow: hidden;
}

/* Reusable icon circle */
.icon-circle {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; flex-shrink: 0;
}

/* ============ Sticky nav ============ */
.nav {
  position: sticky; top: 16px; z-index: 50;
  margin: 16px auto 0; max-width: 1296px; padding: 0 32px;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px 10px 24px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 8px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(255,255,255,0.7);
  transition: background 0.5s var(--ease-velvet), box-shadow 0.5s var(--ease-velvet);
}
.nav-inner.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 12px 32px rgba(0,0,0,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.nav-logo img { display: block; }
.nav-logo .wm { display: inline-flex; align-items: baseline; }
.nav-logo .wm b { color: var(--accent); font-weight: 800; }
.nav-links { display: flex; gap: 28px; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.nav-links a { position: relative; transition: color 0.2s; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.3s var(--ease-velvet);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { height: 44px; padding: 0 20px; font-size: 14px; }
@media (max-width: 820px) { .nav-links { display: none; } }

/* ============ Reveal on scroll ============ */
.reveal {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.9s var(--ease-silk),
    transform 1.1s var(--ease-silk);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateX(0); }
/* Large surfaces slide a touch less so big areas glide gently */
.reveal.process-block, .reveal.footer-block, .reveal.seo-card { transform: translateX(-20px); }
/* …and must reset to 0 when revealed (sonst bleiben sie dauerhaft 20px nach links verschoben) */
.reveal.in.process-block, .reveal.in.footer-block, .reveal.in.seo-card { transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-delay-5 { transition-delay: 0.60s; }
.reveal-delay-6 { transition-delay: 0.72s; }
.reveal h1, .reveal h2 { letter-spacing: -0.02em; transition: letter-spacing 1.6s var(--ease-velvet); }
.reveal.in h1, .reveal.in h2 { letter-spacing: -0.03em; }

/* ============ Hero ============ */
.hero { padding: 80px 0 40px; }
.hero-col { display: flex; flex-direction: column; gap: 28px; align-items: flex-start; }
.hero-h1 {
  font-size: clamp(42px, 11vw, 132px);
  letter-spacing: -0.035em; line-height: 1.05; padding-bottom: 0.12em;
}
.hero-lead {
  max-width: 720px; font-size: 22px; line-height: 1.4;
  color: var(--ink-2); font-weight: 500;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 8px; }

/* Hero headline highlight: animated underline ink */
.ink-hl { position: relative; display: inline-block; }
.ink-hl > .ink-hl-bg {
  position: absolute; left: -4%; right: -4%; bottom: 10%; height: 28%;
  background: var(--accent); border-radius: 6px;
  transform: rotate(-1.5deg) scaleX(0); transform-origin: left center;
  z-index: 1; transition: transform 1.4s var(--ease-silk) 0.8s;
}
.reveal.in .ink-hl > .ink-hl-bg { transform: rotate(-1.5deg) scaleX(1); }
.ink-hl > span { position: relative; z-index: 2; }

.pill-hl { position: relative; display: inline-block; padding: 0 0.04em; }
.pill-hl > .pill-hl-bg {
  position: absolute; left: -2%; right: -2%; top: 12%; bottom: 18%;
  background: var(--dark); border-radius: 12px;
  transform: rotate(0.6deg) scale(0.7); opacity: 0; z-index: 1;
  transition: transform 1.1s var(--ease-settle) 1.4s, opacity 0.9s var(--ease-velvet) 1.4s;
}
.reveal.in .pill-hl > .pill-hl-bg { opacity: 1; transform: rotate(0.6deg) scale(1); }
.pill-hl > span { position: relative; z-index: 2; color: #fff; }

/* Soft accent highlight (services headline) */
.hl-soft { position: relative; display: inline-block; white-space: nowrap; }
.hl-soft > span { position: relative; z-index: 2; }
.hl-soft::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4%; height: 22%;
  background: var(--accent-soft); z-index: 1; border-radius: 4px;
}

/* Hero proof strip */
.hero-proof {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line);
}
.proof-people { display: flex; align-items: center; gap: 12px; }
.avatars { display: flex; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--bg); margin-left: -10px;
  display: grid; place-items: center; font-size: 13px; font-weight: 700; color: #1f2937;
  animation: avatar-in 1.1s var(--ease-settle) both;
}
.avatar:first-child { margin-left: 0; }
.avatar:nth-child(1) { background: #fda4af; animation-delay: 0.2s; }
.avatar:nth-child(2) { background: #fcd34d; animation-delay: 0.34s; }
.avatar:nth-child(3) { background: #86efac; animation-delay: 0.48s; }
.avatar:nth-child(4) { background: #a5b4fc; animation-delay: 0.62s; }
@keyframes avatar-in {
  from { opacity: 0; transform: scale(0.3) rotate(-12deg); }
  to   { opacity: 1; transform: scale(1)   rotate(0); }
}
.stars-anim { display: flex; gap: 2px; color: #f5b400; }
.stars-anim svg { opacity: 0; animation: star-in 0.85s var(--ease-settle) both; }
.stars-anim svg:nth-child(1) { animation-delay: 0.9s; }
.stars-anim svg:nth-child(2) { animation-delay: 1.05s; }
.stars-anim svg:nth-child(3) { animation-delay: 1.20s; }
.stars-anim svg:nth-child(4) { animation-delay: 1.35s; }
.stars-anim svg:nth-child(5) { animation-delay: 1.50s; }
@keyframes star-in {
  from { opacity: 0; transform: rotate(-40deg) scale(0.4); }
  to   { opacity: 1; transform: rotate(0)      scale(1); }
}
.proof-rating { font-size: 13px; color: var(--ink-2); font-weight: 600; }
.proof-div { height: 24px; width: 1px; background: var(--line); }
.proof-stats { font-size: 14px; color: var(--ink-2); }
.proof-stats .sep { color: var(--muted); }

/* ============ Hero showcase slider ============ */
.showcase { margin-top: 64px; position: relative; }
.browser {
  border-radius: 32px; overflow: hidden;
  background: #fff; box-shadow: var(--shadow-card);
  border: 1px solid var(--line-soft);
}
.browser-bar {
  display: flex; align-items: center; gap: 10px; padding: 14px 18px;
  background: #fafafa; border-bottom: 1px solid var(--line-soft);
}
.browser-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.browser-dot.r { background: #fb7185; }
.browser-dot.y { background: #facc15; }
.browser-dot.g { background: #34d399; }
.browser-url {
  margin-left: 12px; flex: 1; min-width: 0; height: 28px; border-radius: 100px;
  background: #fff; border: 1px solid var(--line-soft);
  display: flex; align-items: center; padding: 0 14px;
  font-size: 12px; color: var(--muted);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.browser-nav {
  width: 30px; height: 30px; border-radius: 50%; background: #fff;
  border: 1px solid var(--line-soft); display: grid; place-items: center;
  cursor: pointer; color: var(--ink-2); flex-shrink: 0; font-size: 16px; line-height: 1;
}
.browser-nav:hover { color: var(--accent); border-color: var(--accent); }
.showcase-stage { position: relative; height: 480px; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(1.01);
  transition: opacity 0.85s var(--ease-silk), transform 1.2s var(--ease-silk);
  pointer-events: none; z-index: 1;
}
.slide.active { opacity: 1; transform: scale(1); pointer-events: auto; z-index: 2; }

.shot { position: absolute; inset: 0; overflow: hidden; background: #fff; }
.shot-loader {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(180deg, #fafafa, #f4f4f5);
  color: var(--muted); font-family: 'JetBrains Mono', monospace; font-size: 12px; z-index: 1;
  text-align: center; padding: 16px;
}
.shot-loader .stack { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.spinner {
  width: 28px; height: 28px; border-radius: 50%;
  border: 3px solid var(--line); border-top-color: var(--accent);
  animation: spin 0.9s linear infinite;
}
.shot-img {
  position: absolute; top: 0; left: 0; width: 100%; height: auto; display: block;
  opacity: 0; transition: opacity 0.5s var(--ease-velvet); z-index: 2;
}
.shot-img.loaded { opacity: 1; }
.shot-failed {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: #fafafa; color: var(--ink-2); text-align: center; padding: 32px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; z-index: 2;
}
.shot-failed .stack { display: flex; flex-direction: column; align-items: center; gap: 10px; max-width: 480px; }
.shot-failed .dom { font-size: 14px; font-weight: 700; color: var(--ink); }
.shot-failed code { background: var(--line); padding: 2px 6px; border-radius: 4px; }
.shot-failed a { margin-top: 6px; color: var(--accent); font-weight: 700; text-decoration: underline; }
.shot-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 50px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.7));
  pointer-events: none; z-index: 3;
}

.showcase-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; gap: 12px; flex-wrap: wrap;
}
.dots { display: flex; gap: 8px; align-items: center; }
.dot {
  height: 6px; border-radius: 100px; cursor: pointer; border: 0; padding: 0;
  width: 14px; background: var(--line);
  transition: width 0.5s var(--ease-velvet), background 0.5s var(--ease-velvet);
}
.dot.active { width: 36px; background: var(--accent); }
.showcase-meta {
  display: flex; align-items: center; gap: 12px; font-size: 13px;
  font-family: 'JetBrains Mono', ui-monospace, monospace; color: var(--muted);
}
.showcase-meta .vline { width: 1px; height: 12px; background: var(--line); }
.showcase-meta .label { color: var(--ink-2); font-weight: 600; }
.showcase-meta a { color: var(--accent); font-weight: 600; }

/* Floating cards */
.float-a { animation: float-a 11s ease-in-out infinite; }
.float-b { animation: float-b 13s ease-in-out infinite; }
@keyframes float-a {
  0%, 100% { transform: rotate(-3deg) translate3d(0, 0, 0); }
  50%      { transform: rotate(-2.4deg) translate3d(0, -14px, 0); }
}
@keyframes float-b {
  0%, 100% { transform: rotate(2deg) translate3d(0, 0, 0); }
  50%      { transform: rotate(1.6deg) translate3d(0, -16px, 0); }
}
.ps-card {
  position: absolute; right: -8px; bottom: 80px; z-index: 4;
  background: #fff; padding: 14px 20px; border-radius: 16px;
  box-shadow: var(--shadow-card); display: flex; align-items: center; gap: 12px;
}
.ps-icon { width: 40px; height: 40px; border-radius: 50%; }
.ps-card .t { font-size: 13px; font-weight: 700; }
.ps-card .v { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.url-cursor::after {
  content: "|"; margin-left: 2px;
  animation: caret 1.6s steps(1) infinite; color: var(--accent);
}
@keyframes caret { 50% { opacity: 0; } }

/* ============ Services ============ */
.services { padding: 120px 0 60px; }
.services-head {
  display: flex; gap: 32px; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; margin-bottom: 56px;
}
.services-head-l { display: flex; flex-direction: column; gap: 24px; max-width: 760px; }
.services-head-r { max-width: 360px; color: var(--ink-2); font-size: 17px; line-height: 1.5; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.svc { padding: 32px; display: flex; flex-direction: column; gap: 16px; min-height: 280px; }
.svc-top { display: flex; align-items: center; justify-content: space-between; }
.svc-num {
  width: 44px; height: 44px; border-radius: 14px; color: var(--accent);
  display: grid; place-items: center; font-weight: 800; font-size: 18px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  box-shadow: inset 0 -3px 0 #080808, inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative; overflow: hidden;
}
.svc-num::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
  transform: translateX(-110%); transition: transform 1.4s var(--ease-silk);
}
.card-hover:hover .svc-num::after { transform: translateX(110%); }
.badge-outline {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px;
}
.svc h3 { margin-top: auto; letter-spacing: -0.02em; }
.svc p { font-size: 15px; color: var(--ink-2); line-height: 1.55; }

/* ============ Process ============ */
.process { padding: 60px 0; }
.process-block {
  background: var(--dark); color: #fff; border-radius: 40px; padding: 64px;
  position: relative; overflow: hidden; box-shadow: var(--shadow-card-dark);
}
.process-glow {
  position: absolute; right: -120px; top: -120px; width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,58,37,0.4) 0%, rgba(253,58,37,0) 60%);
  pointer-events: none;
}
.process-head { display: flex; flex-direction: column; gap: 20px; margin-bottom: 48px; position: relative; }
.process-head h2 { color: #fff; max-width: 820px; }
.process-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; position: relative;
}
.process-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; padding: 28px; display: flex; flex-direction: column; gap: 16px;
  position: relative; min-height: 260px;
  transition: background 0.3s, border-color 0.3s;
}
.process-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.16); }
.step-top { display: flex; align-items: center; justify-content: space-between; }
.step-num { font-size: 56px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: rgba(255,255,255,0.18); }
.step-num.active { color: var(--accent); }
.step-foot {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 10px; border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; color: #a1a1aa;
}
.process-card h3 { color: #fff; }
.process-card p { color: #a1a1aa; font-size: 15px; line-height: 1.55; }
.step-arrow {
  position: absolute; right: -18px; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; background: var(--accent);
  display: grid; place-items: center;
  animation: pulse-ring 4.2s var(--ease-velvet) infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: var(--shadow-accent), 0 0 0 0 var(--accent-soft); }
  60%      { box-shadow: var(--shadow-accent), 0 0 0 22px transparent; }
}
@media (max-width: 920px) { .step-arrow { display: none !important; } }

/* ============ Über uns / Team ============ */
.about { padding: 80px 0; }
.about-head { display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center; margin-bottom: 56px; }
.about-head h2 { max-width: 820px; }
.about-intro { max-width: 640px; color: var(--ink-2); font-size: 17px; line-height: 1.55; }
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.team-card { padding: 28px; display: flex; gap: 22px; align-items: center; }
.team-photo {
  width: 104px; height: 104px; flex-shrink: 0; border-radius: 24px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--accent); display: grid; place-items: center;
  font-weight: 800; font-size: 34px; letter-spacing: -0.02em; overflow: hidden;
  box-shadow: inset 0 -3px 0 #080808, inset 0 1px 0 rgba(255,255,255,0.12);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-info h3 { letter-spacing: -0.02em; }
.team-role {
  display: inline-block; margin-top: 6px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent);
}
.team-info p { margin-top: 12px; font-size: 15px; color: var(--ink-2); line-height: 1.55; }
@media (max-width: 480px) { .team-card { flex-direction: column; text-align: center; } }

/* ============ Pricing ============ */
.pricing { padding: 80px 0; }
.pricing-head {
  display: flex; flex-direction: column; gap: 20px; align-items: center;
  text-align: center; margin-bottom: 56px;
}
.pricing-head h2 { max-width: 820px; }
.pricing-head p { max-width: 580px; color: var(--ink-2); font-size: 17px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px; align-items: stretch;
}
.price-card { padding: 40px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.price-card.dark {
  background: var(--dark); color: #fff; border-radius: 32px; box-shadow: var(--shadow-card-dark);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.price-card.dark:hover { transform: translateY(-6px); }
.price-badge {
  position: absolute; top: 24px; right: 24px; padding: 6px 12px; border-radius: 999px;
  background: var(--accent); color: #fff; font-weight: 800; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; box-shadow: 0 6px 16px rgba(255,59,0,0.35);
}
.price-label {
  font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 12px;
}
.price-card.dark .price-label { color: #a1a1aa; }
.price-amount { display: flex; align-items: baseline; gap: 6px; }
.price-num { font-size: clamp(54px, 13vw, 96px); font-weight: 800; line-height: 1; letter-spacing: -0.04em; }
.price-cents { font-size: 0.66em; }
.price-cur { font-size: clamp(28px, 6vw, 44px); font-weight: 700; }
.price-cur.sm { font-size: clamp(20px, 4.4vw, 28px); }
.price-sub { font-size: 14px; color: var(--muted); margin-top: 4px; }
.price-card.dark .price-sub { color: #a1a1aa; }
.price-feats { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 12px; font-size: 15px; }
.feat { display: flex; gap: 12px; align-items: flex-start; }
.feat .icon-circle { margin-top: 1px; }
.price-card.dark .feat.no { color: #71717a; }
.feat.no .icon-circle { background: rgba(255,255,255,0.06); color: #71717a; }

/* SEO Ranking-Maschine (full width) */
.seo-card {
  margin-top: 24px; padding: 48px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #fff7f4 0%, #fff 55%, #fff7f4 100%);
  border: 1px solid rgba(253,58,37,0.18);
}
.seo-glow {
  position: absolute; right: -120px; top: -120px; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(253,58,37,0.18), transparent 65%); pointer-events: none;
}
.seo-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 56px;
  align-items: start; position: relative;
}
.booster-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px;
  background: #fff; border: 1px solid rgba(253,58,37,0.25); color: var(--accent);
  font-weight: 800; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px;
}
.booster-pill .d { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(253,58,37,0.18); }
.seo-eyebrow {
  font-size: 13px; color: var(--accent); font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px;
}
.seo-h3 { font-size: clamp(26px, 5.2vw, 40px); line-height: 1.05; letter-spacing: -0.03em; margin: 0 0 8px; max-width: 460px; }
.seo-card .price-amount { margin-top: 18px; }
.seo-card .price-num { font-size: clamp(50px, 12vw, 88px); }
.seo-card .price-cur { font-size: clamp(26px, 5.5vw, 40px); }
.price-once { font-size: 14px; color: var(--muted); font-weight: 600; margin-left: 8px; align-self: flex-end; padding-bottom: 8px; }
.seo-monthly { display: flex; align-items: baseline; gap: 6px; margin-top: 6px; }
.seo-monthly .lbl { font-size: 13px; color: var(--muted); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.seo-monthly .amt { font-size: 28px; font-weight: 800; line-height: 1; letter-spacing: -0.03em; color: var(--ink); }
.seo-monthly .per { font-size: 14px; color: var(--muted); font-weight: 600; }
.seo-note { font-size: 13px; color: var(--muted); margin-top: 6px; }
.seo-why { padding: 20px 22px; border-radius: 18px; margin-bottom: 28px; background: rgba(253,58,37,0.06); border: 1px dashed rgba(253,58,37,0.25); }
.seo-why-label { font-size: 11px; color: var(--accent); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
.seo-why p { font-size: 15.5px; line-height: 1.6; color: var(--ink-2); margin: 0; max-width: 720px; }
.seo-feats-label { font-size: 11px; color: var(--muted); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.seo-feats { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; font-size: 15px; }
.seo-feats .feat .icon-circle { margin-top: 1px; }
.seo-foot { margin-top: 22px; padding-top: 14px; border-top: 1px dashed var(--line); font-size: 13px; color: var(--muted); line-height: 1.5; }
@media (max-width: 820px) {
  .seo-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .seo-feats { grid-template-columns: 1fr !important; }
}

/* Pricing mode toggle (Einmalkauf / Miete) */
.pricing-toggle-wrap { display: flex; justify-content: center; margin: 0 0 40px; }
.pricing-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px; border-radius: 100px;
  background: var(--bg-soft);
  box-shadow: var(--shadow-tag);
}
.pt-btn {
  position: relative;
  height: 40px; padding: 0 22px; border-radius: 100px;
  font-weight: 700; font-size: 14px; color: var(--muted);
  letter-spacing: -0.005em; white-space: nowrap;
  transition: color 0.45s var(--ease-velvet),
              background 0.45s var(--ease-velvet),
              box-shadow 0.45s var(--ease-velvet);
}
.pt-btn:hover { color: var(--ink); }
.pt-btn.active { background: var(--dark); color: #fff; box-shadow: var(--shadow-pill-dark); }
.pricing-mode[hidden] { display: none !important; }

/* ============ Quiz funnel ============ */
.quiz { padding: 80px 0; }
.quiz-grid { display: grid; grid-template-columns: 380px minmax(0, 1fr); gap: 48px; align-items: flex-start; }
.quiz-rail { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.quiz-rail h2 { font-size: clamp(36px, 4vw, 56px); }
.quiz-rail p { color: var(--ink-2); font-size: 16px; line-height: 1.55; }
.quiz-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.mini-pill { font-size: 12px; font-weight: 700; padding: 6px 10px; border-radius: 999px; background: #fff; box-shadow: var(--shadow-tag); }
.accent { color: var(--accent); }

.quiz-card { padding: 0; overflow: hidden; }
.quiz-prog { padding: 20px 32px; border-bottom: 1px solid var(--line-soft); }
.quiz-prog-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.quiz-prog-label { font-size: 13px; color: var(--muted); font-weight: 600; }
.quiz-prog-pct { font-size: 13px; color: var(--accent); font-weight: 700; font-variant-numeric: tabular-nums; }
.quiz-track { height: 6px; background: var(--line-soft); border-radius: 100px; overflow: hidden; }
.quiz-bar { height: 100%; width: 0%; background: var(--accent); border-radius: 100px; transition: width 0.55s cubic-bezier(.2,.8,.2,1); }

.quiz-stage { position: relative; padding: 36px; }
.quiz-step { animation: quiz-in 0.85s var(--ease-silk) both; display: flex; flex-direction: column; gap: 24px; }
@keyframes quiz-in {
  from { opacity: 0; transform: translateY(22px) scale(0.992); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0)    scale(1);     filter: blur(0); }
}
.quiz-step.back { animation-name: quiz-in-back; }
@keyframes quiz-in-back {
  from { opacity: 0; transform: translateY(-22px) scale(0.992); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0)    scale(1);     filter: blur(0); }
}
.quiz-step h3 { font-size: 28px; letter-spacing: -0.02em; }
.quiz-q-sub { color: var(--muted); font-size: 14px; margin-top: 8px; }
.opt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.opt {
  position: relative; overflow: hidden; text-align: left; padding: 18px;
  border-radius: 16px; background: #fff; color: var(--ink);
  border: 2px solid var(--line-soft); display: flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  transition: background 0.45s var(--ease-velvet), color 0.45s var(--ease-velvet),
              border-color 0.45s var(--ease-velvet), transform 0.45s var(--ease-velvet),
              box-shadow 0.45s var(--ease-velvet);
}
.opt:hover { border-color: var(--accent); transform: translateY(-2px); }
.opt.active { background: var(--dark); color: #fff; border-color: var(--dark); }
.opt.active:hover { transform: none; }
.opt::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent); opacity: 0;
  transform: translate(-50%, -50%) scale(1); pointer-events: none;
}
.opt.pop::after { animation: opt-ripple 0.9s var(--ease-silk); }
@keyframes opt-ripple {
  0%   { opacity: 0.32; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0;    transform: translate(-50%, -50%) scale(55); }
}
.opt-emoji { font-size: 22px; }
.opt-label { flex: 1; }
.opt-check { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.check-pop { animation: check-pop 0.65s var(--ease-settle); }
@keyframes check-pop {
  0%   { transform: scale(0)   rotate(-30deg); }
  60%  { transform: scale(1.18) rotate(8deg); }
  100% { transform: scale(1)    rotate(0); }
}
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.quiz-nav .btn { height: 48px; padding: 0 22px; font-size: 14px; }
.quiz-nav .btn:disabled { opacity: 0.4; }
.btn-light:disabled { opacity: 0.35; }

/* progress bar shine (quiz + anywhere) */
.progress-bar { position: relative; overflow: hidden; }
.progress-bar::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: translateX(-100%); animation: progress-shine 3.6s var(--ease-velvet) infinite;
}
@keyframes progress-shine {
  0%   { transform: translateX(-100%); }
  55%  { transform: translateX(220%); }
  100% { transform: translateX(220%); }
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.field input {
  height: 48px; padding: 0 16px; border-radius: 12px; background: #fff;
  border: 2px solid var(--line-soft); font-size: 15px; color: var(--ink);
  outline: none; transition: border-color 0.15s;
}
.field input:focus { border-color: var(--accent); }
.consent { display: flex; gap: 10px; font-size: 13px; color: var(--muted); align-items: flex-start; }
.consent input { margin-top: 3px; }
.consent a { color: var(--accent); text-decoration: underline; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error {
  display: none; padding: 12px 16px; border-radius: 12px;
  background: rgba(253,58,37,0.08); border: 1px solid rgba(253,58,37,0.3);
  color: var(--accent); font-size: 14px; font-weight: 600; line-height: 1.45;
}
.form-error.show { display: block; }
.form-error a { color: var(--accent); text-decoration: underline; }

.quiz-done { display: flex; flex-direction: column; gap: 20px; text-align: center; padding: 24px 0; }
.done-check {
  width: 88px; height: 88px; border-radius: 50%; background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; margin: 0 auto; box-shadow: var(--shadow-accent);
}
.quiz-done h3 { font-size: 36px; letter-spacing: -0.02em; }
.quiz-done > p { color: var(--ink-2); font-size: 17px; max-width: 480px; margin: 0 auto; line-height: 1.5; }
.done-next { margin-top: 12px; padding: 20px; background: var(--bg-soft); border-radius: 16px; text-align: left; font-size: 14px; color: var(--ink-2); }
.done-next .t { font-weight: 700; margin-bottom: 6px; }
.done-next ol { margin: 0; padding-left: 18px; display: grid; gap: 4px; }
@media (max-width: 920px) {
  .quiz-grid { grid-template-columns: 1fr; }
  .quiz-rail { position: static; }
}

/* ============ FAQ ============ */
.faq { padding: 80px 0; }
.faq-grid { display: grid; grid-template-columns: 380px minmax(0, 1fr); gap: 64px; }
.faq-rail { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; align-self: flex-start; }
.faq-rail h2 { font-size: clamp(36px, 4vw, 56px); }
.faq-rail p { color: var(--ink-2); font-size: 16px; line-height: 1.5; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { padding: 0; box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 2px 6px rgba(0,0,0,0.04); }
.faq-item.open { box-shadow: var(--shadow-card); }
.faq-q { width: 100%; padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; text-align: left; }
.faq-q-text { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.faq-chevron {
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg-soft); color: var(--ink);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform 0.6s var(--ease-settle), background 0.55s var(--ease-velvet), color 0.55s var(--ease-velvet);
}
.faq-item.open .faq-chevron { background: var(--accent); color: #fff; transform: rotate(180deg); }
.faq-chevron .minus { display: none; }
.faq-item.open .faq-chevron .plus { display: none; }
.faq-item.open .faq-chevron .minus { display: inline-flex; }
.faq-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.85s var(--ease-silk); }
.faq-item.open .faq-body { grid-template-rows: 1fr; }
.faq-body > div { overflow: hidden; }
.faq-body-inner {
  opacity: 0; transform: translateY(-10px);
  transition: opacity 0.7s var(--ease-velvet) 0.12s, transform 0.8s var(--ease-silk) 0.12s;
  padding: 0 28px 26px; color: var(--ink-2); font-size: 16px; line-height: 1.55; max-width: 760px;
}
.faq-item.open .faq-body-inner { opacity: 1; transform: translateY(0); }
@media (max-width: 920px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-rail { position: static; }
}

/* ============ Footer ============ */
.footer { padding: 40px 0 60px; }
.footer-block {
  background: var(--dark); border-radius: 40px; padding: 64px; color: #fff;
  position: relative; overflow: hidden; box-shadow: var(--shadow-card-dark);
}
.footer-glow {
  position: absolute; left: 50%; top: -80px; transform: translateX(-50%); width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(253,58,37,0.25) 0%, rgba(253,58,37,0) 70%); pointer-events: none;
}
.footer-cta { display: flex; flex-direction: column; gap: 24px; align-items: center; text-align: center; position: relative; }
.footer-cta h2 { color: #fff; max-width: 800px; }
.footer-cta p { color: #a1a1aa; max-width: 560px; font-size: 17px; line-height: 1.5; }
.footer-cta .btn { margin-top: 8px; height: 60px; padding: 0 36px; font-size: 17px; }
.footer hr { border: 0; border-top: 1px solid rgba(255,255,255,0.1); margin: 64px 0 32px; position: relative; }
.footer-bot {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap; position: relative; font-size: 13px; color: #a1a1aa;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { display: block; }
.footer-brand b { color: #fff; }
.footer-brand b i { color: var(--accent); font-style: normal; }
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: #fff; }
.footer-company { color: #fff; text-decoration: underline; text-underline-offset: 2px; transition: color 0.25s var(--ease-velvet); }
.footer-company:hover { color: var(--accent); }
.accent-text { color: var(--accent); }

/* ============ Mobile nav: hamburger + dropdown ============ */
.nav-inner { position: relative; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 50%;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  flex-shrink: 0; background: var(--bg-soft);
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform 0.35s var(--ease-velvet), opacity 0.25s var(--ease-velvet);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-menu {
  position: absolute; left: 0; right: 0; top: calc(100% + 10px);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 24px; box-shadow: 0 14px 36px rgba(0,0,0,0.14);
  padding: 14px; display: flex; flex-direction: column; gap: 4px; z-index: 60;
  animation: nav-menu-in 0.4s var(--ease-silk);
}
@keyframes nav-menu-in {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.nav-menu[hidden] { display: none; }
.nav-menu a {
  padding: 13px 16px; border-radius: 14px; font-weight: 700; font-size: 16px; color: var(--ink-2);
  transition: background 0.25s var(--ease-velvet), color 0.25s var(--ease-velvet);
}
.nav-menu a:hover, .nav-menu a:active { background: var(--bg-soft); color: var(--accent); }
.nav-menu .nav-menu-cta { margin-top: 8px; color: #fff; justify-content: center; }
.nav-menu .nav-menu-cta:hover { color: #fff; }

/* ============ Responsive: Tablet & unten (≤1024) ============ */
@media (max-width: 1024px) {
  .services { padding: 96px 0 48px; }
  .process-block, .footer-block { padding: 52px; }
}

/* ≤820 — Tablet portrait & Phones: Inline-Nav → Hamburger */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ≤768 — Tablet portrait */
@media (max-width: 768px) {
  .hero { padding: 56px 0 24px; }
  .services { padding: 72px 0 40px; }
  .process { padding: 48px 0; }
  .pricing, .about, .quiz, .faq { padding: 64px 0; }
  .showcase { margin-top: 48px; }
  .showcase-stage { height: 380px; }
  .services-head, .pricing-head, .about-head { margin-bottom: 40px; }

  /* Sektions-Überschriften auf Mobil einheitlich zentrieren */
  .services-head { flex-direction: column; align-items: center; text-align: center; }
  .services-head-l { align-items: center; max-width: 640px; }
  .services-head-r { max-width: 560px; }
  .process-head { align-items: center; text-align: center; }
  .quiz-rail { align-items: center; text-align: center; }
  .quiz-badges { justify-content: center; }
  .faq-rail { align-items: center; text-align: center; }

  /* SEO Ranking-Maschine (Booster) auf Mobil zentrieren */
  .seo-grid { text-align: center; }
  .seo-card .price-amount,
  .seo-card .seo-monthly { justify-content: center; }
  .seo-why { text-align: center; }
  .seo-feats-label { text-align: center; }
  .seo-feats { max-width: 360px; margin-left: auto; margin-right: auto; text-align: left; }
}

/* ≤640 — Phones */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav { padding: 0 16px; }
  .nav-inner { padding: 8px 8px 8px 18px; }
  .nav-logo { font-size: 17px; }
  .process-block, .footer-block { padding: 36px 24px; }
  .seo-card { padding: 32px 22px; }
  .price-card { padding: 32px 26px; }
  .ps-card { display: none; }
  .showcase { margin-top: 36px; }
  .showcase-stage { height: 320px; }
  .hero-proof { gap: 20px 24px; margin-top: 40px; padding-top: 28px; }
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .footer-bot { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* ≤480 — kleine Phones */
@media (max-width: 480px) {
  .hero { padding: 40px 0 16px; }
  .pricing, .about, .quiz, .faq { padding: 48px 0; }
  .services { padding: 56px 0 32px; }
  .services-head, .pricing-head, .about-head, .process-head { margin-bottom: 32px; }
  .process-block, .footer-block { padding: 32px 20px; }
  .price-card { padding: 28px 22px; }
  .seo-card { padding: 28px 20px; }
  .quiz-stage, .quiz-prog { padding-left: 22px; padding-right: 22px; }
  .quiz-prog { padding-top: 18px; padding-bottom: 18px; }
  .browser-bar { padding: 12px 12px; gap: 8px; }
  .showcase-stage { height: 280px; }
  .footer-links { flex-wrap: wrap; gap: 14px 20px; }
  .pricing-toggle { width: 100%; }
  .pt-btn { flex: 1; padding: 0 12px; }
}

/* ≤400 — sehr schmale Phones (Galaxy Fold etc.) */
@media (max-width: 400px) {
  .browser-dot { display: none; }
  .browser-url { margin-left: 0; }
  .showcase-stage { height: 250px; }
  .opt { padding: 16px 14px; }
  .badge-outline { display: none; }
}
