/* sigeAssist · Landingpage — CI-Tokens (Blau/Teal · Inter) + moderne Conversion-Styles. */

:root {
  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --bg:        #F4F6FA;
  --surface:   #FFFFFF;
  --surface-2: #F7F8FC;
  --surface-3: #EDF0F5;
  --bd:    #E6EAF0;
  --bd-md: #CFD6E0;

  --t1: #0E1422;
  --t2: #2C3447;
  --t3: #5A6478;
  --t4: #8993A6;

  --accent:       #1B4F9B;
  --accent-dk:    #0F3272;
  --accent-pale:  #C7D9F4;
  --accent-faint: #EEF4FC;
  --accent-2:       #2FBFAD;
  --accent-2-dk:    #1E9E8E;
  --accent-2-pale:  #BDEEE7;
  --accent-2-faint: #EEFBF9;
  --accent-shadow: rgba(27,79,155,.22);
  --grad: linear-gradient(135deg, #1B4F9B 0%, #2FBFAD 100%);
  --grad-soft: linear-gradient(135deg, #1B4F9B 0%, #2FBFAD 120%);

  --green:  #15803D; --green-bg:#F0FDF4; --green-bd:#BBF7D0;
  --yellow: #B45309; --yellow-bg:#FFFBEB; --yellow-bd:#FCD34D;
  --red:    #B91C1C; --red-bg:#FEF2F2; --red-bd:#FCA5A5;

  --sh1: 0 1px 2px rgba(15,23,42,.04), 0 1px 1px rgba(15,23,42,.03);
  --sh2: 0 4px 14px rgba(15,23,42,.07), 0 2px 4px rgba(15,23,42,.04);
  --sh3: 0 18px 48px rgba(15,23,42,.12), 0 6px 14px rgba(15,23,42,.06);
  --sh-accent: 0 14px 34px rgba(27,79,155,.28);

  --maxw: 1160px;
  --nav-h: 70px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0; font-family: var(--font); color: var(--t2); background: var(--surface);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; font-size: 16px; line-height: 1.6;
}
h1,h2 { color: var(--t1); margin: 0; letter-spacing: -0.025em; line-height: 1.12; }
h3,h4 { color: var(--t1); margin: 0; letter-spacing: -0.02em; line-height: 1.3; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; }
::selection { background: var(--accent-2-pale); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section.alt { background: var(--surface-2); }
.section.pressure { padding: 64px 0; }
@media (max-width: 700px){ .section { padding: 60px 0; } .section.pressure { padding: 48px 0; } }

/* ── Icons ── */
.ic { display: inline-flex; align-items: center; justify-content: center; }
.ic svg { width: 1em; height: 1em; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15.5px; border-radius: 12px; border: 1px solid transparent;
  padding: 0 22px; height: 52px; transition: transform .14s, box-shadow .14s, filter .14s, background .14s, border-color .14s;
  white-space: nowrap; line-height: 1;
}
.btn .ic { font-size: 19px; }
.btn:active { transform: translateY(0) scale(.98); }
.btn:focus-visible { outline: 3px solid var(--accent-2-pale); outline-offset: 2px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--sh-accent); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-ghost { background: var(--surface); color: var(--t1); border-color: var(--bd-md); box-shadow: var(--sh1); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--accent-dk); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }
.btn-sm { height: 44px; font-size: 14.5px; padding: 0 16px; border-radius: 10px; }
.btn-lg { height: 58px; font-size: 17px; padding: 0 28px; }

/* ── Eyebrow / pills ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--accent);
  background: var(--accent-faint); border: 1px solid var(--accent-pale); padding: 6px 13px; border-radius: 999px;
}
.eyebrow.teal { color: var(--accent-2-dk); background: var(--accent-2-faint); border-color: var(--accent-2-pale); }
.eyebrow.on-dark { color: #BDEEE7; background: rgba(47,191,173,.14); border-color: rgba(47,191,173,.35); }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100; height: var(--nav-h);
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
.nav.scrolled { border-color: var(--bd); box-shadow: var(--sh1); }
.nav .wrap { display: flex; align-items: center; gap: 28px; height: 100%; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -0.03em; color: var(--t1); }
.brand .logo { width: 34px; height: 34px; border-radius: 10px; background: var(--grad); display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 9px var(--accent-shadow); color: #fff; }
.brand .logo svg { width: 20px; height: 20px; }
.brand b { color: var(--accent-2-dk); font-weight: 800; }
.brand .wm { display: inline-flex; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--t3); padding: 9px 13px; border-radius: 9px; transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--t1); background: var(--surface-2); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-burger { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--bd); background: var(--surface); align-items: center; justify-content: center; font-size: 22px; color: var(--t2); flex-shrink: 0; transition: border-color .15s, color .15s; }
.nav-burger:hover { border-color: var(--accent); color: var(--accent); }
.nav-burger[aria-expanded="true"] { border-color: var(--accent); color: var(--accent); background: var(--accent-faint); }
@media (max-width: 940px){
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 480px){
  .nav .wrap { gap: 12px; padding: 0 16px; }
  .brand { font-size: 18px; gap: 8px; }
  .brand .logo { width: 30px; height: 30px; border-radius: 9px; }
  .brand .logo svg { width: 17px; height: 17px; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn-primary { height: 40px; padding: 0 14px; font-size: 13.5px; border-radius: 9px; }
  .nav-burger { width: 40px; height: 40px; font-size: 20px; }
}

/* Mobile menu */
.mobile-menu { position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99; background: var(--surface); border-bottom: 1px solid var(--bd); box-shadow: var(--sh2); padding: 10px 20px 20px; display: none; flex-direction: column; gap: 2px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; font-weight: 600; color: var(--t2); padding: 14px 10px; border-radius: 10px; }
.mobile-menu a:hover, .mobile-menu a:active { background: var(--surface-2); color: var(--t1); }
.mobile-menu .btn { margin-top: 12px; width: 100%; }

/* ── Hero ── */
.hero { position: relative; overflow: hidden; padding: 70px 0 90px; }
@media (max-width: 700px){ .hero { padding: 44px 0 60px; } }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% 8%, rgba(47,191,173,.16), transparent 60%),
    radial-gradient(55% 45% at 12% 0%, rgba(27,79,155,.14), transparent 60%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(27,79,155,.10) 1px, transparent 1px);
  background-size: 26px 26px; -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%); mask-image: linear-gradient(180deg, #000, transparent 70%);
}
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.hero .eyebrow { margin-bottom: 22px; }
.hero h1 { font-size: clamp(38px, 5.2vw, 62px); font-weight: 800; }
.hero h1 .hl { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .sub { font-size: clamp(17px, 1.5vw, 20px); color: var(--t3); margin-top: 20px; max-width: 540px; text-wrap: pretty; line-height: 1.7; }
.hero .sub strong { color: var(--t2); }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: nowrap; align-items: center; }
.hero-micro { display: flex; gap: 10px 18px; flex-wrap: wrap; margin-top: 24px; font-size: 13.5px; color: var(--t4); font-weight: 600; }
.hero-micro span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.hero-micro .ic { color: var(--accent-2-dk); font-size: 16px; }
@media (max-width: 920px){
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero .sub { max-width: none; }
}
@media (max-width: 520px){
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .btn-lg { height: 54px; font-size: 16px; padding: 0 20px; }
  .hero-micro { gap: 10px 16px; }
}

/* ── Produkt-Mock (Hero) ── */
.mock { position: relative; }
.mock-card {
  background: var(--surface); border: 1px solid var(--bd); border-radius: 22px; box-shadow: var(--sh3);
  overflow: hidden;
}
.mock-top { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--bd); background: var(--surface-2); }
.mock-dots { display: flex; gap: 6px; }
.mock-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--bd-md); }
.mock-title { font-size: 13px; font-weight: 700; color: var(--t3); }
.mock-body { padding: 18px; display: flex; flex-direction: column; gap: 13px; }
.mock-step { display: flex; align-items: center; gap: 8px; }
.mock-step .dots2 { display: flex; gap: 6px; }
.mock-step .d { width: 7px; height: 7px; border-radius: 999px; background: var(--bd-md); }
.mock-step .d.on { width: 22px; background: var(--accent); }
.mock-step .lbl { font-size: 12px; font-weight: 700; color: var(--t4); }
.mock-haz { border: 1px solid var(--yellow-bd); border-left: 3px solid var(--yellow); border-radius: 14px; overflow: hidden; }
.mock-haz .h { display: flex; align-items: center; gap: 10px; padding: 13px 14px; }
.mock-haz .h .icn { width: 32px; height: 32px; border-radius: 9px; background: var(--surface-2); border: 1px solid var(--bd); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 17px; }
.mock-haz .h .nm { font-size: 14.5px; font-weight: 700; color: var(--t1); flex: 1; }
.risk-pill { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 800; color: var(--yellow); background: var(--yellow-bg); border: 1px solid var(--yellow-bd); padding: 3px 9px; border-radius: 999px; }
.risk-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); }
.mock-haz .body { background: var(--yellow-bg); border-top: 1px solid var(--yellow-bd); padding: 13px 14px; display: flex; flex-direction: column; gap: 10px; }
.ki-tag { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; font-size: 11px; font-weight: 800; color: var(--accent-2-dk); background: var(--accent-2-faint); border: 1px solid var(--accent-2-pale); padding: 3px 9px; border-radius: 999px; }
.ki-tag .ic { font-size: 13px; color: var(--accent-2); }
.mock-field .k { font-size: 10.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--t4); margin-bottom: 3px; }
.mock-field .v { font-size: 13px; color: var(--t2); line-height: 1.5; }
.mock-next { margin-top: 2px; height: 44px; border-radius: 11px; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; font-size: 14.5px; box-shadow: 0 6px 16px var(--accent-shadow); }
.mock-float {
  position: absolute; right: -10px; bottom: -16px; background: var(--surface); border: 1px solid var(--bd);
  border-radius: 14px; box-shadow: var(--sh3); padding: 12px 14px; display: flex; align-items: center; gap: 10px; max-width: 230px;
  animation: floaty 4s ease-in-out infinite;
}
.mock-float .av { width: 34px; height: 34px; border-radius: 10px; background: var(--grad); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; flex-shrink: 0; }
.mock-float .tx { font-size: 12px; color: var(--t2); font-weight: 600; line-height: 1.35; }
.mock-float .tx b { color: var(--t1); }
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-7px); } }
@media (max-width: 520px){ .mock-float { display: none; } }

/* ── Druck / Stats-Band ── */
.pressure { background: var(--accent-dk); color: #fff; position: relative; overflow: hidden; }
.pressure::after { content:''; position:absolute; inset:0; background: radial-gradient(50% 120% at 85% 0%, rgba(47,191,173,.22), transparent 60%); pointer-events:none; }
.pressure .wrap { position: relative; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat .n { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -0.03em; color: #fff; line-height: 1; background: linear-gradient(180deg,#fff,#BDEEE7); -webkit-background-clip: text; background-clip: text; }
.stat .lbl { font-size: 14px; color: #B9C9E6; margin-top: 10px; line-height: 1.45; }
@media (max-width: 760px){ .stat-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; } }
@media (max-width: 420px){ .stat-grid { grid-template-columns: 1fr; gap: 24px; } .stat { text-align: center; } }

/* ── Section heads ── */
.sec-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; }
.sec-head p { font-size: 18px; color: var(--t3); margin: 14px auto 0; max-width: 580px; text-wrap: pretty; line-height: 1.65; }
.sec-head.left { text-align: left; margin-left: 0; }
.sec-head.left p { margin-left: 0; }
@media (max-width: 700px){ .sec-head { margin-bottom: 38px; } .sec-head p { font-size: 16.5px; } }

/* ── Druckkarten (Problem) ── */
.threat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.threat { background: var(--surface); border: 1px solid var(--bd); border-radius: 18px; padding: 26px 24px; box-shadow: var(--sh1); position: relative; overflow: hidden; transition: transform .18s, box-shadow .18s, border-color .18s; }
.threat:hover { transform: translateY(-4px); box-shadow: var(--sh2); border-color: var(--bd-md); }
.threat .badge { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 23px; margin-bottom: 16px; }
.threat .badge.r { background: var(--red-bg); color: var(--red); border: 1px solid var(--red-bd); }
.threat .badge.y { background: var(--yellow-bg); color: var(--yellow); border: 1px solid var(--yellow-bd); }
.threat .badge.b { background: var(--accent-faint); color: var(--accent); border: 1px solid var(--accent-pale); }
.threat h3 { font-size: 18px; font-weight: 700; }
.threat p { font-size: 14px; color: var(--t3); margin-top: 8px; line-height: 1.55; }
.threat .law { font-size: 12px; font-weight: 700; color: var(--t4); margin-top: 12px; font-variant-numeric: tabular-nums; }
@media (max-width: 920px){ .threat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .threat-grid { grid-template-columns: 1fr; } }

/* ── So funktioniert's ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: st; }
.step { background: var(--surface); border: 1px solid var(--bd); border-radius: 20px; padding: 30px 28px; box-shadow: var(--sh1); position: relative; overflow: hidden; transition: transform .18s, box-shadow .18s; }
.step::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--sh2); }
.step:hover::after { transform: scaleX(1); }
.step .num { display: inline-flex; align-items: center; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-2-dk); background: var(--accent-2-faint); border: 1px solid var(--accent-2-pale); padding: 4px 11px; border-radius: 999px; }
.step .ico { width: 52px; height: 52px; border-radius: 14px; background: var(--accent-faint); border: 1px solid var(--accent-pale); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 26px; margin: 18px 0 18px; }
.step h3 { font-size: 20px; font-weight: 700; }
.step p { font-size: 15px; color: var(--t3); margin-top: 10px; line-height: 1.6; }
@media (max-width: 820px){ .steps { grid-template-columns: 1fr; gap: 16px; } }

/* ── Module-Grid ── */
.mod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mod { background: var(--surface); border: 1px solid var(--bd); border-radius: 18px; padding: 26px 24px; box-shadow: var(--sh1); position: relative; overflow: hidden; transition: transform .18s, box-shadow .18s, border-color .18s; }
.mod::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.mod:hover { transform: translateY(-4px); box-shadow: var(--sh2); border-color: var(--accent-pale); }
.mod:hover::after { transform: scaleX(1); }
.mod .ico { width: 48px; height: 48px; border-radius: 13px; background: var(--grad); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 23px; box-shadow: 0 5px 14px var(--accent-shadow); margin-bottom: 16px; }
.mod h3 { font-size: 17.5px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.mod .tag { font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--accent-2-dk); background: var(--accent-2-faint); border: 1px solid var(--accent-2-pale); padding: 2px 7px; border-radius: 6px; }
.mod p { font-size: 14px; color: var(--t3); margin-top: 9px; line-height: 1.55; }
@media (max-width: 920px){ .mod-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .mod-grid { grid-template-columns: 1fr; } }

/* ── Vergleich ── */
.compare { background: var(--surface); border: 1px solid var(--bd); border-radius: 22px; box-shadow: var(--sh2); overflow: hidden; width: 100%; }
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 17px 22px; text-align: left; }
.compare thead th { font-size: 14px; color: var(--t3); font-weight: 700; border-bottom: 1px solid var(--bd); background: var(--surface-2); }
.compare thead th.us { color: var(--accent-dk); background: var(--accent-faint); }
.compare tbody td { border-bottom: 1px solid var(--bd); font-size: 15px; }
.compare tbody tr:last-child td { border-bottom: none; }
.compare .feat { font-weight: 600; color: var(--t1); }
.compare .col-us { background: var(--accent-faint); text-align: center; width: 150px; }
.compare .col-them { text-align: center; width: 150px; color: var(--t4); }
.compare .yes { color: var(--green); font-size: 21px; }
.compare .no { color: var(--bd-md); font-size: 19px; }
.compare .us-head { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; }
.compare .us-head .logo { width: 22px; height: 22px; border-radius: 7px; background: var(--grad); display:flex;align-items:center;justify-content:center; color:#fff; }
.compare .us-head .logo svg { width: 14px; height: 14px; }
@media (max-width: 640px){ .compare th, .compare td { padding: 13px 12px; font-size: 13.5px; } .compare .col-us, .compare .col-them { width: 78px; } }

/* ── KI-Highlight (Split) ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split.dark { background: var(--accent-dk); border-radius: 28px; padding: 56px; color: #fff; position: relative; overflow: hidden; }
.split.dark::before { content: ''; position: absolute; inset: 0; background: radial-gradient(55% 90% at 90% 0%, rgba(47,191,173,.16), transparent 60%); pointer-events: none; }
.split.dark > * { position: relative; }
.split.dark h2 { color: #fff; margin-top: 18px; font-size: clamp(26px, 3vw, 38px); }
.split.dark .sec-head p, .split.dark p { color: #C3D2EC; }
.split.dark .lead { margin-top: 14px; font-size: 18px; line-height: 1.65; }
.feat-list { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.feat-list li { display: flex; gap: 13px; list-style: none; }
.feat-list .ck { width: 28px; height: 28px; border-radius: 9px; background: rgba(47,191,173,.18); border: 1px solid rgba(47,191,173,.4); display: flex; align-items: center; justify-content: center; color: var(--accent-2); flex-shrink: 0; font-size: 15px; }
.feat-list .tx b { color: #fff; font-weight: 700; }
.feat-list .tx { font-size: 15px; color: #C3D2EC; line-height: 1.5; }
.feat-list ul, .feat-list { padding: 0; margin: 26px 0 0; }
/* Chat-Mock */
.chat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.bubble { max-width: 86%; padding: 12px 15px; border-radius: 16px; font-size: 14px; line-height: 1.5; }
.bubble.you { align-self: flex-end; background: #fff; color: var(--t1); border-bottom-right-radius: 5px; }
.bubble.ai { align-self: flex-start; background: rgba(47,191,173,.16); border: 1px solid rgba(47,191,173,.3); color: #EAF6F4; border-bottom-left-radius: 5px; }
.bubble.ai .who { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; color: var(--accent-2); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .04em; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; gap: 34px; } .split.dark { padding: 34px 24px; } }

/* ── Testimonial ── */
.quote { max-width: 820px; margin: 0 auto; text-align: center; }
.quote .stars { color: #F5A524; font-size: 20px; letter-spacing: 3px; }
.quote blockquote { font-size: clamp(20px, 2.6vw, 30px); font-weight: 600; color: var(--t1); line-height: 1.4; margin: 20px 0 26px; letter-spacing: -0.02em; text-wrap: pretty; }
.quote .who { display: inline-flex; align-items: center; gap: 13px; }
.quote .who .av { width: 48px; height: 48px; border-radius: 50%; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.quote .who .meta { text-align: left; }
.quote .who .meta .nm { font-weight: 700; color: var(--t1); font-size: 15px; }
.quote .who .meta .rl { font-size: 13px; color: var(--t4); }

/* ── Preise ── */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan { background: linear-gradient(180deg, #FFFFFF 0%, #FAFCFF 100%); border: 1px solid var(--bd-md); border-radius: 20px; padding: 28px 24px; box-shadow: var(--sh2); display: flex; flex-direction: column; position: relative; transition: transform .18s, box-shadow .18s, border-color .18s; }
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh3); border-color: var(--bd-md); }
.plan.pop { border: 2px solid var(--accent); background: linear-gradient(180deg, #FFFFFF 0%, var(--accent-faint) 55%, #FFFFFF 100%); box-shadow: var(--sh3), 0 0 0 1px rgba(27,79,155,.06); }
.plan.pop:hover { box-shadow: var(--sh-accent); }
.plan .pop-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 11.5px; font-weight: 800; padding: 4px 12px; border-radius: 999px; letter-spacing: .03em; box-shadow: 0 4px 10px var(--accent-shadow); white-space: nowrap; }
.plan .pname { font-size: 16px; font-weight: 800; color: var(--t1); }
.plan .ptarget { font-size: 12.5px; color: var(--t4); margin-top: 3px; }
.plan .price { margin: 18px 0 4px; display: flex; align-items: baseline; gap: 5px; flex-wrap: nowrap; }
.plan .price .amt { font-size: 38px; font-weight: 800; color: var(--t1); letter-spacing: -0.03em; white-space: nowrap; }
.plan .price .per { font-size: 14px; color: var(--t4); font-weight: 600; white-space: nowrap; }
.plan ul { list-style: none; padding: 0; margin: 18px 0 22px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan ul li { display: flex; gap: 9px; font-size: 13.5px; color: var(--t2); line-height: 1.4; }
.plan ul li .ic { color: var(--accent-2-dk); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.plan .btn { width: 100%; }
.plan.plan--current { border-color: var(--accent-2); box-shadow: 0 12px 28px rgba(47,191,173,.14); }
.plan.plan--included { opacity: .72; }
.plan.plan--included:hover { transform: none; }
.plan-current-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent-2); color: #fff; font-size: 11.5px; font-weight: 800; padding: 4px 12px; border-radius: 999px; white-space: nowrap; }
.btn.is-disabled, .btn[aria-disabled="true"] { opacity: .55; pointer-events: none; cursor: default; }
@media (max-width: 980px){ .price-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .price-grid { grid-template-columns: 1fr; } }
.price-note { text-align: center; font-size: 14px; color: var(--t4); margin-top: 30px; }

/* ── Zahlungsmethoden Trust-Leiste ── */
.pay-trust { margin-top: 36px; padding: 28px 24px; background: var(--surface); border: 1px solid var(--bd); border-radius: 20px; box-shadow: var(--sh1); text-align: center; }
.pay-trust-lead { font-size: 15px; font-weight: 700; color: var(--t1); margin: 0 0 18px; }
.pay-trust-sub { font-size: 13.5px; color: var(--t4); margin: 14px 0 0; }
.pay-trust-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 20px; }
.pay-item { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--bd); font-size: 13.5px; font-weight: 600; color: var(--t2); white-space: nowrap; }
.packages-page .sec-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.packages-page .sec-head h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -0.02em; margin: 12px 0; }
.packages-page .sec-head p { color: var(--t3); font-size: 17px; line-height: 1.6; }
.packages-page { min-height: 100vh; padding-top: 72px; padding-bottom: 72px; }
#preise .pay-trust,
.packages-page .pay-trust { background: var(--surface); border-color: var(--bd-md); box-shadow: var(--sh2); }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; width: 100%; }
.faq-intro { text-align: center; max-width: 720px; margin: 0 auto; }
.faq-intro > p { max-width: none; margin-left: auto; margin-right: auto; }
.faq-trust { justify-content: center; }
.faq-intro .btn { margin-left: auto; margin-right: auto; }
.faq-intro .eyebrow { margin-bottom: 18px; }
.faq-intro h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; letter-spacing: -0.02em; }
.faq-intro > p { font-size: 17px; color: var(--t3); margin-top: 14px; line-height: 1.65; text-wrap: pretty; }
.faq-trust { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.faq-trust li { display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; border-radius: 999px; background: var(--surface); border: 1px solid var(--bd); font-size: 13px; font-weight: 600; color: var(--t2); }
.faq-trust li .ic { color: var(--accent-2-dk); font-size: 15px; flex-shrink: 0; }
.faq-intro .btn { margin-top: 26px; }
.faq { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: none; }
.qa { background: var(--surface); border: 1px solid var(--bd); border-radius: 14px; overflow: hidden; transition: border-color .15s, box-shadow .15s; }
.qa.open { border-color: var(--accent-pale); box-shadow: var(--sh1); }
.qa .q { width: 100%; display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; background: transparent; border: none; text-align: left; font-size: 16px; font-weight: 700; color: var(--t1); line-height: 1.45; transition: background .15s; cursor: pointer; }
.qa .q:hover { background: var(--surface-2); }
.qa .q:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.qa .q .ic { margin-left: auto; margin-top: 2px; color: var(--t4); font-size: 20px; transition: transform .22s ease, color .15s; flex-shrink: 0; }
.qa.open .q .ic { transform: rotate(45deg); color: var(--accent); }
.qa .a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.qa.open .a { grid-template-rows: 1fr; }
.qa .a-inner { overflow: hidden; padding: 0 20px; font-size: 15px; color: var(--t3); line-height: 1.65; }
.qa.open .a .a-inner { padding-bottom: 20px; }
.qa .a-inner a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.qa .a-inner a:hover { color: var(--accent-dk); }

/* ── Final CTA ── */
.cta-band { background: var(--grad); border-radius: 28px; padding: 72px 48px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--sh-accent); }
@media (max-width: 700px){ .cta-band { padding: 52px 24px; border-radius: 22px; } }
.cta-band::after { content:''; position:absolute; inset:0; background: radial-gradient(60% 100% at 15% 0%, rgba(255,255,255,.18), transparent 55%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); font-weight: 800; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 18px; margin: 16px auto 0; max-width: 560px; }
.cta-band .row { display: flex; gap: 12px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.cta-band .micro { color: rgba(255,255,255,.85); font-size: 13.5px; margin-top: 18px; font-weight: 600; }
@media (max-width: 520px){
  .cta-band .row { flex-direction: column; align-items: stretch; }
  .cta-band .row .btn { width: 100%; }
  .cta-band .micro { line-height: 1.6; }
}

/* ── Footer ── */
.footer { background: var(--t1); color: #C3CAD9; padding: 64px 0 36px; }
.footer .top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand { color: #fff; }
.footer .brand b { color: var(--accent-2); }
.footer .blurb { font-size: 14px; color: #8C97AC; margin-top: 14px; max-width: 300px; line-height: 1.6; }
.footer h4 { color: rgba(255,255,255,.55); font-size: 12.5px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.footer a { font-size: 14px; color: #A9B3C6; display: inline-block; padding: 4px 0; transition: color .15s; }
.footer a:hover { color: #fff; }
.footer a.brand { display: flex; padding: 0; }
.footer .bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: 13px; color: #7C879C; flex-wrap: wrap; gap: 10px; }
.footer .badges { display: flex; gap: 16px; flex-wrap: wrap; }
.footer .badges span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.footer .badges .ic { color: var(--accent-2); }
@media (max-width: 820px){
  .footer .top { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .footer .top > div:first-child { grid-column: 1 / -1; }
  .footer .blurb { max-width: 420px; }
}
@media (max-width: 560px){
  .footer { padding: 48px 0 28px; }
  .footer .top { padding-bottom: 30px; gap: 26px 18px; }
  .footer .bottom { flex-direction: column; align-items: flex-start; gap: 14px; padding-top: 20px; }
  .footer .badges { gap: 10px 16px; }
}

/* reveal-Klasse bleibt im Markup, Animation deaktiviert */
.reveal, .reveal.in { animation: none !important; opacity: 1 !important; transform: none !important; }
