/* =========================================================
   steuerkanzlei-website.com
   CI: Recruiting-Site – Navy / Hot-Pink / Lime-Grün
   ========================================================= */

:root {
  /* Kernfarben */
  --c-navy:       #0e1729;    /* Primärhintergrund */
  --c-navy-2:     #162040;    /* etwas heller */
  --c-navy-3:     #090f1c;    /* etwas dunkler */
  --c-pink:       #ef0ca4;    /* Primär-CTA */
  --c-pink-hover: #d0089a;
  --c-lime:       #9dea1a;    /* Sekundär-CTA / Akzent */
  --c-lime-soft:  #7bff68;    /* Icons, Highlights */
  --c-lavender:   #c1c1da;    /* Sanfte Sektionen */
  --c-lavender-2: #a5a5b5;
  --c-white:      #ffffff;
  --c-off-white:  #f4f3fa;    /* Helle Abschnitte */
  --c-ink:        #010101;
  --c-ink-soft:   rgba(1,1,1,.65);
  --c-muted:      rgba(1,1,1,.45);

  /* Typografie */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --fs-xs:  .82rem;
  --fs-sm:  .94rem;
  --fs-md:  1.05rem;
  --fs-lg:  1.2rem;
  --fs-xl:  1.55rem;
  --fs-2xl: 2.2rem;
  --fs-3xl: 3.1rem;
  --fs-4xl: 3.9rem;

  /* Abstände */
  --space-2: 1rem;
  --space-4: 2.5rem;
  --space-6: 6rem;

  /* Shapes */
  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 28px;
  --container: 1180px;

  /* Schatten */
  --shadow-sm: 0 2px 8px rgba(14,23,41,.1);
  --shadow:    0 12px 40px rgba(14,23,41,.18);
  --shadow-lg: 0 24px 60px rgba(14,23,41,.28);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-off-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block }
svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0 }
a { color: var(--c-navy); text-decoration: none; transition: color .2s }
a:hover { color: var(--c-pink) }
ul { margin: 0; padding: 0; list-style: none }
h1,h2,h3,h4 { font-weight: 800; line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.03em }
h1 { font-size: var(--fs-4xl) }
h2 { font-size: var(--fs-3xl) }
h3 { font-size: var(--fs-xl) }
p  { margin: 0 0 1em }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem }
.muted { color: var(--c-muted) }

/* Skip-Link */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--c-navy); color: #fff; padding: .75rem 1rem; z-index: 1000 }
.skip-link:focus { left: 0; color: #fff }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 1rem 2rem; border-radius: 999px; font-weight: 700; font-size: var(--fs-sm);
  border: 2px solid transparent; cursor: pointer; transition: all .25s ease;
  line-height: 1; white-space: nowrap; text-decoration: none;
}
/* Pink – primärer CTA */
.btn-primary {
  background: var(--c-pink); color: #fff; border-color: var(--c-pink);
}
.btn-primary:hover {
  background: var(--c-pink-hover); border-color: var(--c-pink-hover); color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(239,12,164,.4);
}
/* Lime – sekundärer CTA */
.btn-lime {
  background: var(--c-lime); color: var(--c-navy); border-color: var(--c-lime);
}
.btn-lime:hover {
  background: var(--c-lime-soft); border-color: var(--c-lime-soft); color: var(--c-navy);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(157,234,26,.4);
}
/* Ghost (auf dunklem Hintergrund) */
.btn-ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover {
  border-color: #fff; background: rgba(255,255,255,.08); color: #fff;
}
/* Ghost (auf hellem Hintergrund) */
.btn-ghost-dark {
  background: transparent; color: var(--c-navy); border-color: var(--c-navy);
}
.btn-ghost-dark:hover {
  background: var(--c-navy); color: #fff;
}
.btn-block { width: 100%; justify-content: center }
.btn-small { padding: .65rem 1.15rem; font-size: .88rem }

/* Eyebrow */
.eyebrow {
  display: inline-block; font-size: var(--fs-xs); text-transform: uppercase;
  letter-spacing: .14em; font-weight: 700; color: var(--c-lime);
  margin-bottom: .8rem;
}
.eyebrow-pink { color: var(--c-pink) }

/* Section head */
.section-head { max-width: 760px; margin: 0 auto 3rem; text-align: center }
.section-head h2 { color: var(--c-navy) }
.section-head .lead { font-size: var(--fs-lg); color: var(--c-ink-soft) }
.lead { font-size: var(--fs-lg); color: var(--c-ink-soft); line-height: 1.55 }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--c-navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-top: env(safe-area-inset-top);
  transition: transform .3s ease, box-shadow .3s ease;
}
.site-header.header-hidden {
  transform: translateY(-110%);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; padding-block: 1.15rem }

/* Brand: Logo Icon + Name */
.brand { display: flex; flex-direction: row; align-items: center; gap: .75rem; color: #fff; line-height: 1; text-decoration: none }
.brand { font-size: 1.55rem }
.brand-icon { flex-shrink: 0; color: #fff; display: block; width: 1.95em; height: 1.95em }
.brand-name {
  font-family: 'Inter Tight', 'Inter', system-ui;
  font-size: 1em; font-weight: 700; letter-spacing: -.03em;
  color: #fff; white-space: nowrap;
}
.brand-sep { color: var(--c-pink) }

/* Nav Contact: Telefon, E-Mail, WhatsApp + CTA */
.nav-contact {
  display: flex; align-items: center; gap: .9rem; flex-shrink: 0;
}
.nav-contact-icons {
  display: flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: .25rem;
}
.nav-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  color: rgba(255,255,255,.85);
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.nav-icon-btn svg { width: 17px; height: 17px; }
.nav-icon-btn:hover {
  background: var(--c-lime); color: var(--c-navy);
  transform: translateY(-1px);
}
.nav-icon-whatsapp:hover { background: #25d366; color: #fff; }
.nav-cta { box-shadow: 0 4px 16px rgba(157,234,26,.28); }

.primary-nav ul { display: flex; align-items: center; gap: 1.8rem }
.primary-nav a { color: rgba(255,255,255,.8); font-weight: 500; font-size: .95rem }
.primary-nav a:hover { color: var(--c-lime) }
.primary-nav .btn-small { color: var(--c-navy) }
.primary-nav .btn-small:hover { color: var(--c-navy) }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .5rem;
  width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s }
.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) }

/* ---- Hero ---- */
.hero {
  background: var(--c-navy);
  padding: 6rem 0 5rem; overflow-x: clip; position: relative;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(50% 60% at 100% 0%, rgba(239,12,164,.2), transparent 60%),
    radial-gradient(40% 50% at 0% 100%, rgba(157,234,26,.12), transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 2.5rem; align-items: center; position: relative }
.hero-text h1 { font-size: var(--fs-4xl); color: #fff; letter-spacing: -.03em }
.hero-text h1 .accent { color: var(--c-lime) }
.hero-text .lead { margin: 1.2rem 0 2rem; max-width: 560px; color: rgba(255,255,255,.8) }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem }
.hero-bullets { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: .95rem; color: rgba(255,255,255,.7) }
.hero-bullets li { display: flex; align-items: center; gap: .5rem }
.hero-bullets svg { color: var(--c-lime); width: 18px; height: 18px }

.hero-visual {
  display: flex; flex-direction: column; align-items: center; gap: .9rem;
  position: relative; overflow: visible;
}

/* Story pills */
.story-pills { display: flex; gap: .4rem; }
.story-pill {
  background: rgba(255,255,255,.05); color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.08);
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700; font-family: inherit; cursor: pointer;
  transition: all .25s ease; letter-spacing: .2px;
}
.story-pill.active { background: var(--c-lime); color: var(--c-navy); border-color: var(--c-lime); }

/* Stacked frame wrapper */
.stacked-wrap {
  width: 540px; height: 400px; position: relative;
}
@keyframes stackedFade { from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none} }
.stacked-wrap.animate { animation: stackedFade .55s ease-out; }

/* Browser chrome base */
.browser-frame {
  position: absolute;
  display: flex; flex-direction: column;
  /* NO overflow:hidden here — labels sit outside the frame bounds */
}
.browser-bar {
  height: 30px; flex-shrink: 0;
  display: flex; align-items: center; padding: 0 12px; gap: 6px;
  border-radius: 12px 12px 0 0;
}
.browser-bar-light {
  background: #ecebe7;
  border: 1px solid rgba(0,0,0,.08); border-bottom: none;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.5);
}
.browser-bar-dark {
  background: #0a1020;
  border: 1px solid rgba(255,255,255,.08); border-bottom: none;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04);
}
.browser-dots { display: flex; gap: 6px; flex-shrink: 0 }
.browser-dots i { display: block; width: 9px; height: 9px; border-radius: 50%; font-style: normal }
.browser-dots i:nth-child(1) { background: #ff5f57 }
.browser-dots i:nth-child(2) { background: #febc2e }
.browser-dots i:nth-child(3) { background: #28c840 }
.browser-url {
  flex: 1; height: 18px; background: #fff; border-radius: 4px;
  display: flex; align-items: center; padding: 0 10px;
  font-size: 10px; font-family: ui-monospace, Menlo, monospace;
  color: #555; letter-spacing: .2px;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.browser-url-dark { background: rgba(255,255,255,.07); color: rgba(255,255,255,.6) }
.browser-content {
  flex: 1; position: relative; background: #fff; min-height: 0;
  overflow: hidden; border-radius: 0 0 12px 12px;
  border: 1px solid rgba(0,0,0,.08); border-top: none;
}
.browser-bar-dark + .browser-content {
  border-color: rgba(255,255,255,.08);
}
.browser-content img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top; display: block;
}

/* Old window */
.stacked-old {
  top: 26px; left: 0; width: 314px; height: 235px;
  transform: rotate(-5deg); filter: grayscale(.55) brightness(.85); opacity: .95;
}
/* New window */
.stacked-new { top: 118px; right: 0; width: 409px; height: 270px; transform: rotate(3deg); }

/* Labels */
.stacked-label {
  position: absolute; top: -16px; z-index: 10;
  padding: 5px 11px; border-radius: 4px;
  font-size: 10px; font-family: ui-monospace, Menlo, monospace;
  letter-spacing: 1.8px; font-weight: 700;
  white-space: nowrap;
}
.stacked-label-old { left: 14px; background: #1a1a1a; color: rgba(255,255,255,.75); transform: rotate(-5deg); box-shadow: 0 4px 12px rgba(0,0,0,.3); }
.stacked-label-new { right: 14px; background: var(--c-lime); color: var(--c-navy); transform: rotate(3deg); box-shadow: 0 4px 16px rgba(157,234,26,.3); }

/* Migrate arrow SVG */
.stacked-arrow {
  position: absolute; left: 240px; top: 170px;
  width: 113px; height: 78px; z-index: 2;
  overflow: visible; pointer-events: none;
}

/* Caption */
.stacked-caption { text-align: center }
.stacked-caption-name { color: #fff; font-size: 15px; font-weight: 700 }
.stacked-caption-loc { color: rgba(255,255,255,.5); font-size: 12px; margin-top: 2px; font-family: ui-monospace, Menlo, monospace; letter-spacing: .5px }

/* Pulsing live badge */
.stacked-badge {
  background: rgba(14,23,41,.9); border: 1px solid var(--c-lime);
  border-radius: 999px; padding: 9px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; color: #fff;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-lime); box-shadow: 0 0 12px var(--c-lime);
  animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ---- Trust-Strip ---- */
.trust-strip { background: var(--c-pink); padding: 2.5rem 0 }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem }
.trust-item { display: flex; align-items: center; gap: 1rem }
.trust-item svg { width: 32px; height: 32px; color: #fff; flex-shrink: 0 }
.trust-item strong { display: block; font-size: 1rem; color: #fff }
.trust-item span { display: block; font-size: .82rem; color: rgba(255,255,255,.8) }

/* ---- Problem ---- */
.problem { padding: var(--space-6) 0; background: var(--c-off-white) }
.problem .section-head h2 { color: var(--c-navy) }
.problem-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem }
.problem-card {
  background: #fff; border-radius: var(--radius-lg); padding: 2.2rem 2rem;
  border: 1.5px solid var(--c-lavender); transition: all .3s ease;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--c-pink) }
.problem-num { font-size: .8rem; font-weight: 700; color: var(--c-pink); letter-spacing: .1em; margin-bottom: .8rem }
.problem-card h3 { font-size: 1.35rem; margin-bottom: .5rem; color: var(--c-navy) }
.problem-card p { color: var(--c-ink-soft); margin: 0 }

/* ---- Packages ---- */
.packages { padding: var(--space-6) 0; background: var(--c-navy) }
.packages .section-head h2 { color: #fff }
.packages .section-head .lead { color: rgba(255,255,255,.75) }
.packages .eyebrow { color: var(--c-lime) }
.package-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: stretch }
.package {
  background: rgba(255,255,255,.06); border-radius: var(--radius-lg);
  padding: 2.2rem 2rem; border: 1.5px solid rgba(255,255,255,.12);
  display: flex; flex-direction: column; transition: all .3s ease;
}
.package:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.1); transform: translateY(-4px) }
.package-featured {
  border-color: var(--c-pink); background: var(--c-pink);
  transform: scale(1.03); position: relative; overflow: hidden;
}
.package-featured:hover { transform: scale(1.03) translateY(-4px) }
/* Diagonal ribbon top-right */
.package-featured::after {
  content: 'Empfohlen';
  position: absolute; top: 22px; right: -34px;
  width: 140px; text-align: center;
  background: var(--c-lime); color: var(--c-navy);
  font-size: .6rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; padding: .38rem 0;
  transform: rotate(45deg);
}
/* Tag im Header beim Featured ausblenden (ersetzt durch Ribbon) */
.package-featured .tag-accent { display: none; }

.package header { margin-bottom: 1.5rem }
.tag {
  display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: rgba(255,255,255,.6); padding: .3rem .7rem;
  background: rgba(255,255,255,.1); border-radius: 999px; margin-bottom: 1rem;
}
.tag-accent { background: var(--c-lime); color: var(--c-navy) }
.package h3 { font-size: 1.8rem; margin: 0 0 .3rem; color: #fff }
.package .sub { font-size: .95rem; color: rgba(255,255,255,.65); margin: 0 }
.package-featured .sub { color: rgba(255,255,255,.85) }
.package-price { font-size: 1.7rem; font-weight: 800; color: #fff; margin: .5rem 0 0; font-family: var(--font-head); }
.package-price small { font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.6); margin-left: .2rem; }
.package-featured .package-price { color: #fff; }
.package-desc { flex: 1; font-size: .95rem; color: rgba(255,255,255,.75); line-height: 1.6; margin: 0 0 1.5rem; }
.package-featured .package-desc { color: rgba(255,255,255,.9); }
.package-featured .btn-primary {
  background: var(--c-lime); color: var(--c-navy); border-color: var(--c-lime);
}
.package-featured .btn-primary:hover {
  background: var(--c-lime-soft); border-color: var(--c-lime-soft); color: var(--c-navy);
  box-shadow: 0 8px 24px rgba(157,234,26,.4);
}

.feature-list { flex: 1; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .65rem }
.feature-list li {
  position: relative; padding-left: 1.8rem; font-size: .95rem;
  color: rgba(255,255,255,.85); line-height: 1.4;
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: .15rem; width: 18px; height: 18px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239dea1a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.packages-note {
  text-align: center; margin-top: 2.5rem; color: rgba(255,255,255,.55);
  font-size: .92rem; max-width: 760px; margin-inline: auto;
}

/* ---- Preisversprechen ---- */
.price-promise {
  background: var(--c-navy);
  padding: 5rem 0;
  text-align: center;
  border-top: 3px solid var(--c-lime);
  border-bottom: 3px solid var(--c-lime);
}
.price-promise-eyebrow {
  font-size: .75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .15em; color: var(--c-lime); margin: 0 0 1.1rem;
}
.price-promise-h {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-family: var(--font-head);
  color: #fff;
  margin: 0 0 1.4rem;
  line-height: 1.15;
}
.price-promise-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 540px;
  margin: 0 auto 2.4rem;
  line-height: 1.75;
}

/* ---- Wartung Overview ---- */
.wartung-overview { padding: var(--space-6) 0; background: var(--c-navy-2) }
.wartung-overview .section-head h2 { color: #fff }
.wartung-overview .lead { color: rgba(255,255,255,.65) }
.wartung-overview-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; max-width: 780px; margin: 0 auto;
}
.wartung-overview-card {
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: border-color .25s;
}
.wartung-overview-card:hover { border-color: rgba(255,255,255,.28) }
.wartung-overview-featured { border-color: var(--c-lime); }
.wartung-ov-name { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: #fff }
.wartung-ov-rate { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--c-lime); line-height: 1 }
.wartung-overview-featured .wartung-ov-rate { color: var(--c-lime) }
.wartung-ov-desc { font-size: .95rem; color: rgba(255,255,255,.75); line-height: 1.6; margin: 0 }
.wartung-ov-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .45rem }
.wartung-ov-list li {
  position: relative; padding-left: 1.6rem; font-size: .9rem; color: rgba(255,255,255,.75);
}
.wartung-ov-list li::before {
  content: ""; position: absolute; left: 0; top: .15rem; width: 16px; height: 16px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239dea1a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}

/* ---- Process ---- */
.process { padding: var(--space-6) 0; background: var(--c-off-white) }
.process .section-head h2 { color: var(--c-navy) }
.process-list {
  list-style: none; padding: 0; display: grid;
  grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  max-width: 860px; margin-left: auto; margin-right: auto;
}
.process-list li {
  background: #fff; border-radius: var(--radius); padding: 2rem 1.5rem;
  border: 1.5px solid var(--c-lavender); transition: all .3s ease;
  text-align: center;
}
.process-list li:hover { border-color: var(--c-pink); box-shadow: var(--shadow-sm); transform: translateY(-3px) }
.step-num { display: inline-block; font-size: .85rem; font-weight: 800; color: var(--c-pink); letter-spacing: .05em; margin-bottom: .8rem }
.process-list h3 { font-size: 1.1rem; margin-bottom: .4rem; color: var(--c-navy) }
.process-list p { font-size: .9rem; color: var(--c-ink-soft); margin: 0; line-height: 1.5 }

/* ---- About ---- */
.about { padding: var(--space-6) 0; background: var(--c-navy) }
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: center }
.about-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 2px solid rgba(255,255,255,.1) }
.about-text .eyebrow { color: var(--c-lime) }
.about-text h2 { color: #fff; margin-bottom: 1.2rem }
.about-text p { color: rgba(255,255,255,.8) }
.stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  margin: 2rem 0; padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.stats li { display: flex; flex-direction: column }
.stats strong { font-size: 2rem; font-weight: 800; color: var(--c-lime); letter-spacing: -.03em; line-height: 1 }
.stats span { font-size: .85rem; color: rgba(255,255,255,.6); margin-top: .3rem }
.cert-row { display: flex; align-items: center; gap: 1.2rem; margin-top: 1.5rem }
.cert-row img { width: 80px; height: 80px; border-radius: 12px; box-shadow: var(--shadow-sm) }
.cert-row p { margin: 0; font-size: .95rem; color: rgba(255,255,255,.85) }
.cert-row strong { color: #fff }
.cert-row .muted { color: rgba(255,255,255,.55) }

/* ---- USPs ---- */
.usps { padding: var(--space-6) 0; background: var(--c-off-white) }
.usps .section-head h2 { color: var(--c-navy) }
.usp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem }
.usp-card {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem 1.6rem;
  border: 1.5px solid var(--c-lavender); transition: all .3s ease;
}
.usp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--c-pink) }
.usp-card svg { width: 36px; height: 36px; color: var(--c-pink); margin-bottom: 1rem }
.usp-card h3 { font-size: 1.15rem; margin-bottom: .5rem; color: var(--c-navy) }
.usp-card p { font-size: .9rem; color: var(--c-ink-soft); margin: 0; line-height: 1.55 }

/* ---- FAQ ---- */
.faq { padding: var(--space-6) 0; background: var(--c-navy) }
.faq .section-head h2 { color: #fff }
.faq .section-head .lead { color: rgba(255,255,255,.75) }
.faq .eyebrow { color: var(--c-lime) }
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem }
.faq details {
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 1.3rem 1.6rem; transition: all .3s ease;
}
.faq details[open] { border-color: var(--c-pink); background: rgba(255,255,255,.1) }
.faq summary {
  list-style: none; cursor: pointer; font-weight: 600; font-size: 1.05rem;
  padding-right: 2rem; position: relative; color: #fff;
}
.faq summary::-webkit-details-marker { display: none }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--c-lime); font-weight: 400; transition: transform .3s; line-height: 1;
}
.faq details[open] summary::after { content: "−"; color: var(--c-pink) }
.faq details p { margin: 1rem 0 0; color: rgba(255,255,255,.8); font-size: .95rem; line-height: 1.65 }
.faq details a { color: var(--c-lime) }
.faq details a:hover { color: var(--c-lime-soft) }

/* ---- Contact ---- */
.contact { padding: var(--space-6) 0; background: var(--c-pink); position: relative; overflow: hidden }
.contact::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(40% 50% at 100% 0%, rgba(255,255,255,.15), transparent 60%);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; position: relative }
.contact-text .eyebrow { color: #fff; opacity: .8; letter-spacing: .14em }
.contact-text h2 { color: #fff; margin-bottom: 1rem }
.contact-text .lead { color: rgba(255,255,255,.9) }
.contact-methods { margin-top: 2rem; display: flex; flex-direction: column; gap: .8rem }
.contact-link {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 1.3rem;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius); color: #fff; transition: all .25s ease;
}
.contact-link:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.4); color: #fff; transform: translateX(4px) }
.contact-link svg { color: #fff; width: 26px; height: 26px }
.contact-link span { display: flex; flex-direction: column; line-height: 1.3 }
.contact-link em { font-style: normal; font-size: .82rem; color: rgba(255,255,255,.7) }

.contact-form {
  background: #fff; border-radius: var(--radius-lg); padding: 2.5rem;
  color: var(--c-ink); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-form h3 { margin-bottom: .5rem; font-size: 1.35rem; color: var(--c-navy) }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem }
.contact-form label { display: flex; flex-direction: column; font-size: .88rem; font-weight: 600; color: var(--c-navy); gap: .35rem }
.contact-form input, .contact-form textarea {
  font-family: inherit; font-size: var(--fs-md); padding: .8rem 1rem;
  border: 1.5px solid var(--c-lavender); border-radius: var(--radius-sm);
  background: var(--c-off-white); color: var(--c-ink); transition: all .2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--c-pink); background: #fff;
  box-shadow: 0 0 0 3px rgba(239,12,164,.12);
}
.contact-form textarea { resize: vertical; min-height: 110px }
.checkbox { flex-direction: row !important; align-items: flex-start; gap: .6rem; font-size: .85rem; line-height: 1.45 }
.checkbox input { width: 18px; height: 18px; margin-top: .2rem; flex-shrink: 0; accent-color: var(--c-pink) }
.honey { position: absolute; left: -9999px; height: 0; width: 0; overflow: hidden }
.form-status { margin: .5rem 0 0; font-size: .9rem; min-height: 1.4em }
.form-status.ok  { color: #1a7a3e }
.form-status.err { color: #c0392b }

.form-success {
  background: #fff;
  border: 2px solid var(--c-lime);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  animation: fadeInUp .45s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 12px 40px rgba(14,23,41,.08);
}
.form-success-icon {
  width: 64px; height: 64px; margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--c-lime); color: var(--c-navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; font-weight: 800;
  animation: pop .4s cubic-bezier(.2,.8,.2,1) .1s both;
}
.form-success h3 { margin: 0 0 .5rem; font-size: 1.5rem; color: var(--c-navy) }
.form-success p  { margin: 0; color: var(--c-slate); font-size: 1rem; line-height: 1.55; max-width: 420px; margin-inline: auto }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px) } to { opacity: 1; transform: none } }
@keyframes pop { 0% { transform: scale(.4); opacity: 0 } 60% { transform: scale(1.15) } 100% { transform: scale(1); opacity: 1 } }

/* ---- Footer ---- */
.site-footer { background: var(--c-navy-3); color: rgba(255,255,255,.75); padding: 4rem 0 2rem }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem }
.footer-brand { font-size: 1.1rem; color: #fff; margin-bottom: .3rem }
.site-footer h4 { font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 1rem }
.site-footer a { color: rgba(255,255,255,.75) }
.site-footer a:hover { color: var(--c-lime) }
.footer-links { display: flex; flex-direction: column; gap: .5rem }
.footer-sub { color: var(--c-lime); font-size: .92rem; margin: .2rem 0 0 }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; font-size: .85rem; color: rgba(255,255,255,.4) }
.footer-bottom p { margin: 0 }

/* ---- Consent Banner ---- */
.consent-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 9999;
  background: var(--c-navy); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg); box-shadow: 0 8px 40px rgba(0,0,0,.45);
  max-width: 520px; margin-inline: auto;
  animation: consentIn .35s cubic-bezier(.16,1,.3,1);
}
@keyframes consentIn { from { transform: translateY(24px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
.consent-inner { padding: 1.4rem 1.6rem; display: flex; flex-direction: column; gap: 1.1rem }
.consent-title { font-size: 1rem; font-weight: 700; color: #fff; margin: 0 0 .3rem }
.consent-text { margin: 0; font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.55 }
.consent-text a { color: var(--c-lime); text-decoration: underline }
.consent-actions { display: flex; flex-direction: column; gap: .5rem }
/* Primär-CTA: groß, lime, auffällig */
.consent-btn-accept {
  width: 100%; padding: .9rem 1.5rem; border-radius: 999px;
  background: var(--c-lime); color: var(--c-navy);
  font-weight: 800; font-size: 1rem; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
  letter-spacing: .01em;
}
.consent-btn-accept:hover { background: var(--c-lime-soft); transform: translateY(-1px) }
/* Sekundär: kleiner Textlink, kaum sichtbar */
.consent-btn-deny {
  width: 100%; padding: .4rem; background: none; border: none; cursor: pointer;
  font-size: .78rem; color: rgba(255,255,255,.38); text-decoration: underline;
  transition: color .2s;
}
.consent-btn-deny:hover { color: rgba(255,255,255,.65) }

/* ---- Legal Pages ---- */
.back-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--c-lime); color: var(--c-navy); font-weight: 700;
  padding: .85rem 1.6rem; border-radius: 999px; font-size: var(--fs-sm);
  margin-bottom: 2.5rem; transition: all .25s ease;
  box-shadow: 0 4px 16px rgba(157,234,26,.35);
}
.back-btn:hover { background: #8dd415; color: var(--c-navy); transform: translateX(-3px) }

.legal { padding: 4rem 0 var(--space-6); background: var(--c-off-white) }
.legal .container { max-width: 820px }
.legal h1 { font-size: var(--fs-3xl); margin-bottom: 1.5rem; color: var(--c-navy) }
.legal h2 { font-size: var(--fs-xl); margin-top: 2.5rem; margin-bottom: .8rem; color: var(--c-navy) }
.legal h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: .5rem; color: var(--c-navy) }
.legal p, .legal li { color: var(--c-ink-soft); font-size: var(--fs-md); line-height: 1.7 }
.legal ul, .legal ol { padding-left: 1.5rem; list-style: revert; margin-bottom: 1rem }
.legal ul li, .legal ol li { margin-bottom: .4rem }
.legal a { text-decoration: underline; color: var(--c-pink) }

/* ---- Responsive ---- */

/* --- 960 px: tablet landscape / small desktop --- */
@media (max-width: 960px) {
  :root { --fs-4xl: 2.6rem; --fs-3xl: 2.1rem; --fs-xl: 1.35rem; --space-6: 4.5rem }

  /* Layout */
  .hero { padding: 4rem 0 3.5rem }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem }
  .trust-grid { grid-template-columns: repeat(2,1fr); gap: 1.5rem }
  .problem-grid, .package-grid, .usp-grid, .process-list { grid-template-columns: 1fr }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem }

  /* Packages */
  .package-featured { transform: none }
  .package-featured:hover { transform: translateY(-4px) }

  /* Contact form */
  .contact-form { padding: 2rem 1.5rem }
  .form-row { grid-template-columns: 1fr }

  /* Navigation */
  .nav-wrap { padding-block: .75rem }
  .brand { font-size: 1.35rem }
  .nav-contact { gap: .5rem }
  .nav-contact-icons { padding: .2rem; gap: .2rem }
  .nav-icon-btn { width: 34px; height: 34px }
  .nav-cta { display: none }
  .nav-toggle { display: flex }
  .primary-nav {
    position: fixed; inset: calc(72px + env(safe-area-inset-top)) 0 auto 0;
    background: var(--c-navy-3); border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 1.5rem; transform: translateY(-110%); transition: transform .3s ease;
    box-shadow: var(--shadow);
  }
  .primary-nav.open { transform: translateY(0) }
  .primary-nav ul { flex-direction: column; gap: 1rem; align-items: stretch }
  .primary-nav a { padding: .5rem 0; min-height: 44px; display: flex; align-items: center }
  .primary-nav .btn { justify-content: center; margin-top: .5rem; min-height: 44px }

  /* Hero visual – native 400×296 (scale 0.741 of 540×400) */
  .hero-visual { width: 100%; max-width: 420px; margin: 0 auto }
  .stacked-wrap { width: 400px; height: 296px }
  .stacked-old { top: 19px; left: 0; width: 233px; height: 174px }
  .stacked-new { top: 87px; right: 0; width: 303px; height: 200px }
  .stacked-arrow { left: 178px; top: 126px; width: 84px; height: 58px }

  /* Story pills */
  .story-pills { gap: .4rem }
  .story-pill { font-size: .7rem; padding: .3rem .7rem; min-height: 30px }

  /* Badge / caption */
  .stacked-badge { font-size: .72rem; padding: 7px 14px }
  .stacked-caption { font-size: .8rem }
}

/* --- 640 px: tablet portrait / large phone landscape --- */
@media (max-width: 640px) {
  :root { --fs-4xl: 2.1rem; --fs-3xl: 1.75rem; --fs-xl: 1.2rem; --space-6: 3.5rem }

  .container { padding-inline: 1.1rem }
  .trust-grid { grid-template-columns: 1fr }
  .hero-cta { flex-direction: column }
  .hero-cta .btn { width: 100%; min-height: 48px; justify-content: center }
  .consent-inner { padding: 1.1rem 1.2rem }
  .consent-btn-accept { font-size: .95rem; padding: .85rem 1.2rem }

  /* Hero visual – native 324×240 (scale 0.60 of 540×400) */
  .hero-visual { max-width: 340px }
  .stacked-wrap { width: 324px; height: 240px }
  .stacked-old { top: 16px; left: 0; width: 188px; height: 141px }
  .stacked-new { top: 71px; right: 0; width: 245px; height: 162px }
  .stacked-arrow { left: 144px; top: 102px; width: 68px; height: 47px }

  .stacked-badge { font-size: .68rem; padding: 6px 12px }
  .stacked-caption { font-size: .75rem }
}

/* --- 480 px: kleine Smartphones – Icons ausblenden, nur Hamburger --- */
@media (max-width: 480px) {
  .nav-contact-icons { display: none }
}

/* --- 430 px: small phone --- */
@media (max-width: 430px) {
  :root { --fs-4xl: 1.8rem; --fs-3xl: 1.5rem; --fs-xl: 1.1rem; --space-6: 3rem }

  .container { padding-inline: .9rem }

  /* Hero visual – native 281×208 (scale 0.52 of 540×400) */
  .hero-visual { max-width: 295px }
  .stacked-wrap { width: 281px; height: 208px }
  .stacked-old { top: 14px; left: 0; width: 163px; height: 122px }
  .stacked-new { top: 61px; right: 0; width: 213px; height: 140px }
  .stacked-arrow { left: 125px; top: 88px; width: 59px; height: 41px }

  .stacked-badge { font-size: .64rem; padding: 5px 10px; gap: 5px }
  .stacked-caption { font-size: .7rem }
  .story-pill { font-size: .65rem; padding: .25rem .55rem; min-height: 28px }

  /* Tighter hero layout on smallest screens */
  .hero { padding: 3rem 0 2.5rem }
  .hero-grid { gap: 2rem }

  /* Trust strip wraps cleanly */
  .trust-strip { padding: .85rem 0 }
  .trust-item { font-size: .72rem; gap: .35rem }
  .trust-icon { width: 28px; height: 28px }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   Referenzen — Vorher / Nachher Slider
   ========================================================= */

/* Page hero */
.referenzen-hero { background: var(--c-navy-3); padding: 4.5rem 0 3rem; text-align: center }
.referenzen-hero h1 { font-size: clamp(2rem,5vw,3.2rem); margin: .5rem 0 1rem }
.referenzen-hero .lead { color: var(--c-text-muted); max-width: 560px; margin: 0 auto }

/* Grid of cards */
.referenzen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 440px), 1fr));
  gap: 3rem;
  padding: 3.5rem 0 4rem;
}

/* Empty state */
.referenzen-empty {
  text-align: center; padding: 4rem 0;
  color: var(--c-text-muted);
}
.referenzen-empty svg { width: 48px; height: 48px; opacity: .3; margin-bottom: 1rem }

/* Individual reference card */
.vn-card { display: flex; flex-direction: column; gap: 1rem }

/* Browser-frame wrapper (matches hero style) */
.vn-browser {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.07);
}
.vn-browser-bar {
  display: flex; align-items: center; gap: .5rem;
  background: #232b3e; padding: .55rem .9rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.vn-browser-dots { display: flex; gap: 5px }
.vn-browser-dots i { width: 10px; height: 10px; border-radius: 50%; background: #3d4b66; display: block }

/* Slider container */
.vn-slider {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
  background: var(--c-navy-2);
  aspect-ratio: 16/9;
}
.vn-slider img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top left;
  display: block; pointer-events: none;
}
.vn-img-vorher  { z-index: 1 }
.vn-img-nachher { z-index: 2; clip-path: inset(0 50% 0 0) }

/* Divider line */
.vn-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--c-lime);
  transform: translateX(-50%);
  z-index: 10; pointer-events: none;
}

/* Handle circle */
.vn-handle {
  position: absolute; top: 50%; left: 50%;
  width: 48px; height: 48px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--c-lime); color: var(--c-navy);
  display: flex; align-items: center; justify-content: center;
  z-index: 11; pointer-events: none;
  box-shadow: 0 0 0 4px rgba(157,234,26,.25);
}
.vn-handle svg { width: 22px; height: 22px }

/* Labels */
.vn-label {
  position: absolute; bottom: .75rem; z-index: 9;
  font-size: .65rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; pointer-events: none;
  padding: .25rem .6rem; border-radius: 4px;
}
.vn-label-nachher { left: .75rem;  background: rgba(14,23,41,.75); color: rgba(255,255,255,.7) }
.vn-label-vorher  { right: .75rem; background: rgba(14,23,41,.75); color: var(--c-lime) }

/* Auto-animate keyframes (paused on interaction) */
@keyframes vn-auto { 0%,100% { --vn-pos: 25% } 50% { --vn-pos: 75% } }

/* Card meta below slider */
.vn-meta { padding: .25rem 0 }
.vn-meta-name { font-weight: 700; font-size: 1.05rem }
.vn-meta-ort  { font-size: .82rem; color: var(--c-text-muted) }

@media (max-width: 600px) {
  .vn-handle { width: 38px; height: 38px }
  .vn-handle svg { width: 18px; height: 18px }
  .referenzen-grid { gap: 2rem }
}
