:root {
  --navy: #060810;
  --navy-mid: #0D1525;
  --blue: #1E6FE0;
  --blue-light: #5FA0F5;
  --orange: #F2620F;
  --paper: #F4F6F8;
  --white: #FFFFFF;
  --ink: #1A2535;
  --ink-light: #4A5A6E;
  --line: #D5DCE4;
  --radius: 12px;
  --radius-lg: 20px;
  --maxw: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Archivo', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { margin: 0; line-height: 1.12; font-weight: 900; letter-spacing: -0.02em; }

p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-align: center;
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(242,98,15,.32);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(242,98,15,.42); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.28);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }
.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(30,111,224,.32);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(30,111,224,.42); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease, box-shadow .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6,8,16,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}
.nav-logo img { width: 140px; height: auto; }
.nav-links {
  display: none;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: .96rem;
  padding: 8px 2px;
  position: relative;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }
.nav-cta { display: none; }
.nav-cta .btn { min-height: 44px; padding: 10px 22px; font-size: .95rem; }

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
}
.mobile-overlay.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-overlay a {
  color: var(--white);
  font-size: 1.7rem;
  font-weight: 700;
}
.mobile-overlay a.btn { font-size: 1.1rem; margin-top: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  background: radial-gradient(1200px 700px at 75% 0%, #0f1b34 0%, var(--navy) 60%);
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}
.hero::before {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(30,111,224,.38), transparent 70%);
  top: -140px; right: -100px;
  animation: glowDrift 16s ease-in-out infinite;
}
.hero::after {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(242,98,15,.16), transparent 70%);
  bottom: -160px; left: -120px;
  animation: glowDrift 22s ease-in-out infinite reverse;
}
@keyframes glowDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 30px); }
}
#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#logo3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-logo-fallback {
  display: none;
  position: absolute;
  top: 50%;
  right: 4%;
  width: min(44vw, 440px);
  transform: translateY(-50%);
  z-index: 1;
  opacity: .85;
  filter: drop-shadow(0 30px 60px rgba(30,111,224,.5));
  pointer-events: none;
  animation: floatY 5s ease-in-out infinite;
}
@media (max-width: 767px) {
  #logo3d, .hero-logo-fallback { opacity: .38; }
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(30,111,224,.55);
  border-radius: 999px;
  color: var(--blue-light);
  background: rgba(30,111,224,.08);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 7vw, 4rem);
  margin-bottom: 22px;
}
.hero h1 .line2 { color: var(--blue); display: block; }
.hero-sub {
  color: rgba(255,255,255,.72);
  font-size: clamp(1.02rem, 2.4vw, 1.22rem);
  max-width: 620px;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  font-weight: 700;
}
.trust-pill .chk { color: #3ad17e; font-weight: 900; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  margin-top: 32px;
}
.hero-stat .num {
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat .lbl {
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  font-weight: 700;
  margin-top: 7px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.hero-demo {
  position: relative;
  width: 100%;
  max-width: 440px;
  animation: floatY 5s ease-in-out infinite;
}
.hero-demo::after {
  content: "";
  position: absolute;
  left: 12%; right: 12%;
  bottom: -26px;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(30,111,224,.5), transparent 70%);
  filter: blur(16px);
  z-index: -1;
}
.hero-demo-logo {
  position: absolute;
  top: -22px;
  right: -14px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--navy-mid);
  padding: 8px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 26px rgba(0,0,0,.45);
  z-index: 3;
}

@keyframes floatY {
  0%, 100% { transform: translateY(-10px); }
  50% { transform: translateY(10px); }
}

/* ---------- Signatur-Animation ---------- */
.signature {
  background: var(--navy);
  padding: 30px 0 90px;
}
.sig-card {
  max-width: 480px;
  margin-inline: auto;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 26px;
  color: var(--white);
  box-shadow: 0 30px 70px rgba(0,0,0,.4);
}
.sig-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .92rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
}
.sig-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 0 0 rgba(255,59,59,.6);
  animation: recPulse 1.6s ease-out infinite;
}
@keyframes recPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,59,59,.6); }
  70% { box-shadow: 0 0 0 9px rgba(255,59,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,59,0); }
}
.sig-wave {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  height: 54px;
  margin-bottom: 18px;
}
.sig-wave span {
  flex: 1;
  background: linear-gradient(var(--blue-light), var(--blue));
  border-radius: 3px;
  transform-origin: center;
  animation: wob 1.1s ease-in-out infinite;
}
@keyframes wob {
  0%, 100% { transform: scaleY(.35); }
  50% { transform: scaleY(1); }
}
.sig-arrow {
  text-align: center;
  color: var(--blue-light);
  font-size: 1.4rem;
  margin-bottom: 14px;
  animation: bounceY 1.5s ease-in-out infinite;
}
@keyframes bounceY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.sig-doc {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 18px;
}
.sig-doc-title {
  font-weight: 700;
  font-size: .88rem;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}
.sig-line {
  height: 9px;
  border-radius: 4px;
  background: rgba(255,255,255,.18);
  margin-bottom: 11px;
  transform: scaleX(0);
  transform-origin: left;
  animation: writeLine 7s ease infinite;
}
.sig-line:nth-child(2) { width: 90%; animation-delay: .2s; }
.sig-line:nth-child(3) { width: 75%; animation-delay: .5s; }
.sig-line:nth-child(4) { width: 85%; animation-delay: .8s; }
.sig-line:nth-child(5) { width: 60%; animation-delay: 1.1s; }
@keyframes writeLine {
  0% { transform: scaleX(0); }
  18%, 88% { transform: scaleX(1); }
  100% { transform: scaleX(1); }
}
.sig-sum {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-weight: 700;
}
.sig-sum .amount { color: var(--orange); font-size: 1.3rem; font-weight: 900; }
.sig-stamp {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(58,209,126,.14);
  border: 1px solid rgba(58,209,126,.4);
  color: #3ad17e;
  font-size: .82rem;
  font-weight: 700;
  opacity: 0;
  animation: stampIn 7s ease infinite;
}
@keyframes stampIn {
  0%, 30% { opacity: 0; transform: scale(.9); }
  42%, 90% { opacity: 1; transform: scale(1); }
  100% { opacity: 1; transform: scale(1); }
}

/* ---------- Generic section heads ---------- */
.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-pad { padding: 88px 0; }
.h2 { font-size: clamp(1.7rem, 4.4vw, 2.7rem); }

/* ---------- Problem ---------- */
.problem { background: var(--paper); color: var(--ink); }
.problem .h2 { max-width: 880px; margin-bottom: 36px; }
.problem-photo {
  width: 100%;
  height: clamp(220px, 38vw, 380px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 44px;
}
.problem-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.prob-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  border-top: 3px solid var(--blue);
}
.prob-card .time { color: var(--blue-light); font-weight: 900; font-size: 1.5rem; margin-bottom: 10px; }
.prob-card p { color: rgba(255,255,255,.8); }
.problem-closing {
  text-align: center;
  font-weight: 900;
  font-size: clamp(1.25rem, 3.4vw, 1.9rem);
  margin-top: 46px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ---------- Lösung ---------- */
.solution {
  background: var(--navy);
  color: var(--white);
}
.solution::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
  z-index: 0;
}
.solution .container { position: relative; z-index: 1; }
.solution .h2 { margin-bottom: 44px; }
.sol-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.sol-card {
  background: var(--navy-mid);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.sol-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(30,111,224,.25); }
.sol-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(30,111,224,.12);
  margin-bottom: 18px;
}
.sol-icon svg { width: 38px; height: 38px; }
.sol-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.sol-card .desc { color: rgba(255,255,255,.74); margin-bottom: 18px; }
.sol-feats { list-style: none; margin: 0; padding: 0; }
.sol-feats li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255,255,255,.86);
  font-size: .94rem;
  margin-bottom: 10px;
}
.sol-feats li::before { content: "✓"; color: var(--blue-light); font-weight: 900; }
.sol-step {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 8px;
}
.sol-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue-light);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.sol-link:hover { color: var(--white); transform: translateX(3px); }

/* ---------- Ablauf ---------- */
.ablauf { background: var(--paper); color: var(--ink); }
.ablauf .h2 { text-align: center; margin-bottom: 56px; }
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.timeline-svg {
  display: none;
}
.step {
  position: relative;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}
.step-num {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px rgba(30,111,224,.32);
}
.step h3 { font-size: 1.3rem; color: var(--ink); margin-bottom: 6px; }
.step .step-meta { color: var(--blue); font-weight: 700; font-size: .9rem; margin-bottom: 12px; }
.step p { color: var(--ink-light); }

/* ---------- Über mich ---------- */
.about { background: var(--white); color: var(--ink); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.about-photo {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(26,37,53,.18);
}
.about h2 { color: var(--ink); margin-bottom: 18px; }
.about p { color: var(--ink-light); margin-bottom: 22px; }
.about-quote {
  font-size: clamp(1.3rem, 3.4vw, 1.7rem);
  font-weight: 900;
  color: var(--blue);
  border-left: 4px solid var(--blue);
  padding-left: 18px;
  margin: 26px 0;
  letter-spacing: -0.01em;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.seal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: .85rem;
  font-weight: 700;
}
.seal::before { content: "✓"; color: var(--blue); font-weight: 900; }

/* ---------- Preise ---------- */
.pricing {
  background: var(--navy);
  color: var(--white);
}
.pricing .h2 { text-align: center; margin-bottom: 48px; }
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1080px;
  margin-inline: auto;
}
.price-card {
  position: relative;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
}
.price-card.popular {
  border-color: var(--blue);
  box-shadow: 0 24px 50px rgba(30,111,224,.28);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(242,98,15,.4);
}
.price-card h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 18px; }
.price-row { margin-bottom: 8px; }
.price-row .big { font-size: 2.2rem; font-weight: 900; color: var(--white); }
.price-row .lbl { color: rgba(255,255,255,.6); font-size: .9rem; }
.price-setup {
  color: var(--blue-light);
  font-weight: 700;
  margin: 6px 0 22px;
}
.price-incl {
  list-style: none;
  margin: 0 0 26px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.price-incl li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.86);
  margin-bottom: 12px;
  font-size: .95rem;
}
.price-incl li::before { content: "✓"; color: #3ad17e; font-weight: 900; }
.price-card .btn { margin-top: auto; }
.addons-head {
  text-align: center;
  color: rgba(255,255,255,.72);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 44px 0 16px;
}
.addons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 880px;
  margin-inline: auto;
}
.addon-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.addon-card h4 { color: var(--white); font-size: 1.08rem; margin: 0 0 5px; font-weight: 700; }
.addon-card p { color: rgba(255,255,255,.68); font-size: .9rem; }
.addon-price {
  flex-shrink: 0;
  text-align: right;
  color: var(--blue-light);
  font-weight: 900;
  font-size: 1.3rem;
  line-height: 1.15;
}
.addon-price span { display: block; color: rgba(255,255,255,.5); font-size: .72rem; font-weight: 700; }
.addon-price em { display: block; color: rgba(255,255,255,.45); font-size: .72rem; font-weight: 700; font-style: normal; margin-top: 2px; }
.price-note {
  text-align: center;
  color: rgba(255,255,255,.62);
  font-size: .92rem;
  margin: 30px 0 28px;
}
.price-cta-wrap { text-align: center; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); color: var(--ink); }
.faq .h2 { text-align: center; margin-bottom: 44px; }
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item.open {
  border-left-color: var(--blue);
  box-shadow: 0 10px 26px rgba(26,37,53,.08);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.04rem;
  color: var(--ink);
  text-align: left;
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform .3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--blue);
  border-radius: 2px;
  top: 50%; left: 50%;
}
.faq-icon::before { width: 14px; height: 2px; transform: translate(-50%,-50%); }
.faq-icon::after { width: 2px; height: 14px; transform: translate(-50%,-50%); transition: transform .3s ease; }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a p {
  padding: 0 22px 20px;
  color: var(--ink-light);
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%);
  margin-top: -48px;
  padding-top: 130px;
}
.final-cta .h2 { max-width: 820px; margin: 0 auto 20px; }
.final-cta p { color: rgba(255,255,255,.74); max-width: 640px; margin: 0 auto 32px; font-size: 1.08rem; }
.final-tel {
  display: block;
  margin-top: 22px;
  color: rgba(255,255,255,.8);
  font-weight: 700;
}
.final-tel a { color: var(--blue-light); }

/* ---------- Footer ---------- */
.footer {
  background: #030508;
  color: rgba(255,255,255,.7);
  border-top: 2px solid var(--blue);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer::before, .footer::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(30,111,224,.12);
  z-index: 0;
}
.footer::before { top: 0; left: 0; clip-path: polygon(0 0, 100% 0, 0 100%); }
.footer::after { bottom: 0; right: 0; clip-path: polygon(100% 0, 100% 100%, 0 100%); }
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}
.footer-logo img { width: 150px; margin-bottom: 14px; }
.footer-slogan { color: rgba(255,255,255,.6); font-size: .94rem; max-width: 280px; }
.footer h4 { color: var(--white); font-size: 1rem; margin: 0 0 16px; font-weight: 700; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: 11px; }
.footer ul a, .footer-contact a { color: rgba(255,255,255,.7); transition: color .2s ease; }
.footer ul a:hover, .footer-contact a:hover { color: var(--blue-light); }
.footer-contact p { margin-bottom: 11px; font-size: .94rem; }
.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: space-between;
  align-items: center;
  font-size: .86rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom .links { display: flex; gap: 18px; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Page Hero (Unterseiten) ---------- */
.page-hero {
  position: relative;
  background: radial-gradient(1000px 600px at 70% 0%, #0f1b34 0%, var(--navy) 60%);
  color: var(--white);
  padding: 140px 0 70px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  filter: blur(90px);
  background: radial-gradient(circle, rgba(30,111,224,.34), transparent 70%);
  top: -160px; right: -100px;
  z-index: 0;
  animation: glowDrift 18s ease-in-out infinite;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  max-width: 760px;
  margin-bottom: 20px;
}
.page-hero .lead {
  color: rgba(255,255,255,.74);
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  max-width: 640px;
  margin-bottom: 28px;
}

/* ---------- Kontakt ---------- */
.contact { background: var(--paper); color: var(--ink); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
.contact-col h2 { color: var(--ink); font-size: 1.5rem; margin-bottom: 8px; }
.contact-col .col-sub { color: var(--ink-light); margin-bottom: 22px; }
.contact-methods { display: grid; gap: 14px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 16px 20px;
  min-height: 72px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.contact-card:hover { box-shadow: 0 12px 28px rgba(26,37,53,.1); transform: translateY(-2px); }
.contact-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(30,111,224,.1);
  color: var(--blue);
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-card .c-label { font-size: .78rem; color: var(--ink-light); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.contact-card .c-value { font-size: 1.05rem; color: var(--ink); font-weight: 700; }
.contact-card .c-value a:hover { color: var(--blue); }
.booking {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 16px 40px rgba(26,37,53,.06);
}
.booking h2 { font-size: 1.4rem; color: var(--ink); margin-bottom: 8px; }
.booking .col-sub { color: var(--ink-light); margin-bottom: 20px; }
.embed-box {
  min-height: 460px;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 30px;
  color: var(--ink-light);
}
.embed-box .hint { font-size: .92rem; max-width: 360px; }
.embed-box .or { font-size: .82rem; color: var(--ink-light); }

/* ---------- Leistungen ---------- */
.service-sec.bg-paper { background: var(--paper); color: var(--ink); }
.service-sec.bg-navy { background: var(--navy); color: var(--white); }
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.service-num {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.service-sec.bg-navy .service-num { color: var(--blue-light); }
.service-text h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); margin-bottom: 16px; }
.service-sec.bg-paper .service-text h2 { color: var(--ink); }
.service-sec.bg-navy .service-text h2 { color: var(--white); }
.service-text > p { margin-bottom: 8px; }
.service-sec.bg-paper .service-text > p { color: var(--ink-light); }
.service-sec.bg-navy .service-text > p { color: rgba(255,255,255,.74); }
.feature-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.feature-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.55;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: var(--blue);
}
.feature-list li strong { font-weight: 700; }
.service-sec.bg-paper .feature-list li { color: var(--ink); }
.service-sec.bg-paper .feature-list li strong { color: var(--ink); }
.service-sec.bg-navy .feature-list li { color: rgba(255,255,255,.86); }
.service-sec.bg-navy .feature-list li strong { color: var(--white); }
.service-sec.bg-navy .feature-list li::before { color: var(--blue-light); }

.svc-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  color: var(--white);
  box-shadow: 0 24px 50px rgba(0,0,0,.22);
}
.service-sec.bg-navy .svc-card { background: rgba(255,255,255,.04); }
.svc-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 6px; }
.svc-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  background: rgba(30,111,224,.14);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.svc-icon svg { width: 38px; height: 38px; }
.svc-step { display: flex; gap: 14px; align-items: flex-start; margin-top: 16px; }
.svc-step .n {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
}
.svc-step p { color: rgba(255,255,255,.8); font-size: .95rem; }

/* Gewerke-Liste */
.gewerke {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.gewerke .seal { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }
.gewerke .seal::before { color: var(--blue-light); }

/* ---------- Legal (Impressum / Datenschutz) ---------- */
.legal { background: var(--paper); color: var(--ink); }
.legal .container { max-width: 820px; }
.legal h2 { color: var(--ink); font-size: 1.3rem; margin: 34px 0 12px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { color: var(--ink); font-size: 1.05rem; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--ink-light); margin-bottom: 12px; }
.legal ul { padding-left: 20px; margin: 0 0 12px; }
.legal a { color: var(--blue); }
.legal a:hover { text-decoration: underline; }
.legal strong { color: var(--ink); }
.legal .note {
  background: rgba(30,111,224,.06);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 0 0 24px;
  font-size: .92rem;
}

/* ---------- Gewerke-Links (anklickbare Seals) ---------- */
a.seal { text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
a.seal:hover { transform: translateY(-2px); border-color: var(--blue); box-shadow: 0 10px 24px rgba(30,111,224,.18); }
.gewerke a.seal:hover { border-color: var(--blue-light); }

/* ---------- Ratgeber-Hub (Karten-Grid) ---------- */
.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.guide-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.guide-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(26,37,53,.1); border-color: var(--blue); }
.guide-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}
.guide-card h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: 10px; line-height: 1.3; }
.guide-card p { color: var(--ink-light); font-size: .96rem; margin-bottom: 16px; flex-grow: 1; }
.guide-more { color: var(--blue); font-weight: 600; font-size: .95rem; }

/* ---------- Artikel / Ratgeber-Text ---------- */
.article { background: var(--paper); color: var(--ink); }
.article .container { max-width: 760px; }
.article .article-meta { font-size: .86rem; color: var(--ink-light); margin-bottom: 28px; }
.article .article-lead { font-size: 1.18rem; line-height: 1.6; color: var(--ink); margin-bottom: 30px; font-weight: 500; }
.article h2 { color: var(--ink); font-size: 1.5rem; margin: 40px 0 14px; }
.article h3 { color: var(--ink); font-size: 1.15rem; margin: 26px 0 10px; }
.article p, .article li { color: var(--ink-light); line-height: 1.7; margin-bottom: 14px; }
.article ul, .article ol { padding-left: 22px; margin: 0 0 18px; }
.article li { margin-bottom: 8px; }
.article strong { color: var(--ink); }
.article a { color: var(--blue); }
.article a:hover { text-decoration: underline; }
.article-cta {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin: 36px 0 8px;
}
.article-cta h3 { margin: 0 0 8px; font-size: 1.2rem; }
.article-cta p { margin-bottom: 16px; }

/* Hervorgehobene Kennzahl */
.stat-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 0 0 22px;
}
.stat-box .stat-num { font-size: 1.8rem; font-weight: 800; color: var(--blue); line-height: 1.1; }
.stat-box .stat-txt { color: var(--ink-light); font-size: .95rem; margin-top: 4px; }

/* Vergleichs-/Datentabelle */
.cmp-wrap { overflow-x: auto; margin: 0 0 22px; }
.cmp-table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 460px; }
.cmp-table th, .cmp-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); color: var(--ink-light); }
.cmp-table th { background: var(--navy); color: var(--white); font-weight: 700; }
.cmp-table td:first-child { color: var(--ink); font-weight: 600; }
.cmp-table tr:last-child td { border-bottom: none; }

/* ---------- HubSpot (Meetings + Formular) ---------- */
/* Platzhalter-Look entfernen, sobald echtes Embed geladen ist */
.embed-box:has(.hs-form),
.embed-box:has(iframe) {
  border: none;
  padding: 0;
  min-height: 0;
  display: block;
  text-align: left;
  background: transparent;
}
#hubspot-meeting iframe { width: 100%; min-height: 700px; border: none; }

#hubspot-form .hs-form-field { margin-bottom: 16px; }
#hubspot-form .hs-form-field > label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  font-size: .92rem;
}
#hubspot-form .hs-form-required { color: var(--orange); margin-left: 2px; }
#hubspot-form .input { margin: 0; }
#hubspot-form .hs-input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
}
#hubspot-form textarea.hs-input { min-height: 120px; resize: vertical; }
#hubspot-form .hs-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,111,224,.15);
}
#hubspot-form select.hs-input { appearance: auto; }
#hubspot-form ul, #hubspot-form .inputs-list {
  list-style: none; padding: 0; margin: 0;
}
#hubspot-form .hs-form-checkbox label,
#hubspot-form .legal-consent-container label {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: .9rem; color: var(--ink-light); font-weight: 400;
}
#hubspot-form .legal-consent-container { font-size: .85rem; color: var(--ink-light); margin: 4px 0 16px; }
#hubspot-form .hs-error-msgs { list-style: none; padding: 0; margin: 6px 0 0; }
#hubspot-form .hs-error-msg, #hubspot-form label.hs-error-msg { color: #c0392b; font-size: .85rem; }
#hubspot-form .hs-button {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: filter .2s ease, transform .2s ease;
}
#hubspot-form .hs-button:hover { filter: brightness(1.07); transform: translateY(-1px); }

/* ---------- Cookie-Banner ---------- */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 200;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  padding: 20px 22px;
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.cookie-banner.show { opacity: 1; visibility: visible; transform: translateY(0); }
.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: var(--maxw);
  margin-inline: auto;
}
.cookie-text { color: rgba(255,255,255,.82); font-size: .92rem; }
.cookie-text a { color: var(--blue-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-btns .btn { min-height: 46px; flex: 1; min-width: 140px; }
@media (min-width: 760px) {
  .cookie-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cookie-text { flex: 1; }
  .cookie-btns { flex: 0 0 auto; }
  .cookie-btns .btn { flex: 0 0 auto; }
}

/* ---------- Responsive ---------- */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .hamburger { display: none; }
  .mobile-overlay { display: none !important; }
  .hero-grid { grid-template-columns: 60% 40%; }
  .problem-cards { grid-template-columns: repeat(3, 1fr); }
  .sol-cards { grid-template-columns: repeat(3, 1fr); }
  .guide-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .about-grid { grid-template-columns: 400px 1fr; }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .addons { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.7fr 1fr 1.1fr 1.2fr; }
}

@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .service-sec.reverse .service-text { order: 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
