/* =====================================================
   Smart-Tec – Kampagnen-Landingpage: Kostenlose WLAN-Analyse
   Eigene Palette + eigene Tonalität (Du). Importiert KEINE Tokens
   aus style.css, damit die Kampagne sauber isoliert bleibt.
   Cookie-frei, plugin-frei, keine externen CDNs.
   ===================================================== */

/* Webfonts werden bereits über style.css NICHT mitgeladen –
   wir laden Inter hier separat über @font-face,
   damit die Seite unabhängig vom Haupt-Stylesheet funktioniert. */

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-800.woff2") format("woff2");
  font-weight: 800; font-style: normal; font-display: swap;
}

/* ------------------ Design-Tokens (Kampagne) ------------------ */
:root {
  --bg-base: #0B0B0E;
  --bg-alt: #101015;
  --bg-card: #15151c;
  --bg-card-hover: #1b1b24;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --accent: #2E86F0;
  --accent-hover: #4A9BFF;
  --accent-soft: rgba(46, 134, 240, 0.12);
  --accent-border: rgba(46, 134, 240, 0.35);
  --text: #F5F5F7;
  --text-muted: #C6CCD6;
  --text-dim: #8a93a3;
  --danger: #ff5d5d;
  --success: #34d399;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-glow: 0 10px 40px rgba(46, 134, 240, 0.25);
  --shadow-card: 0 8px 28px rgba(0, 0, 0, 0.45);

  --font: "Inter", "Segoe UI Variable Text", "SF Pro Text",
          "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1140px;
}

/* ------------------ Reset / Base ------------------ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent-hover);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  left: 16px; top: 16px;
  width: auto; height: auto;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}

/* ------------------ Typografie ------------------ */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 .5em;
  color: var(--text);
}
h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  letter-spacing: -0.03em;
}
h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.015em;
}
p { margin: 0 0 1em; color: var(--text-muted); }
.accent { color: var(--accent); }

/* ------------------ Layout-Helfer ------------------ */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding-block: clamp(64px, 8vw, 110px); }
.section-alt { background: var(--bg-alt); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ------------------ Header ------------------ */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 14, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
}
.lp-header-logo img { height: 32px; width: auto; }
.lp-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  padding: 10px 18px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  transition: background .2s, border-color .2s, color .2s;
}
.lp-header-phone svg { width: 16px; height: 16px; color: var(--accent); }
.lp-header-phone:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.lp-header-phone:hover svg { color: #fff; }
@media (max-width: 480px) {
  .lp-header-phone .phone-label { display: none; }
}

/* ------------------ Buttons ------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s, color .2s, box-shadow .2s, border-color .2s;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 12px 48px rgba(46, 134, 240, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: var(--text-muted); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }
.btn .icon { width: 18px; height: 18px; }

/* ------------------ Hero ------------------ */
.hero {
  position: relative;
  padding-block: clamp(72px, 11vw, 130px) clamp(64px, 9vw, 110px);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto auto;
  width: 65%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(46, 134, 240, 0.28) 0%, transparent 65%);
  z-index: -1;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -20% -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(46, 134, 240, 0.16) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .eyebrow { color: var(--accent); }
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy h1 .accent { color: var(--accent); }
.hero-copy > p {
  font-size: 1.12rem;
  max-width: 520px;
  margin-bottom: 32px;
  color: var(--text-muted);
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-trust svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.hero-form-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(46,134,240,0.5), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.hero-form-wrap h2 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.hero-form-wrap > p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

/* Quick-Liste in der Hero-Form-Card – ersetzt frühere Inline-Styles,
   die durch die strenge CSP `style-src 'self'` blockiert wurden. */
.hero-form-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hero-form-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-form-list svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Engerer Section-Head – z. B. innerhalb der CTA-Card */
.section-head--tight { margin-bottom: 32px; }

/* Dezenter Hinweistext auf den Danke-Seiten */
.thanks-tip {
  font-size: 0.92rem;
  color: var(--text-dim);
  margin-top: 18px;
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy > p { max-width: none; }
}

/* ------------------ Pain Grid ------------------ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: border-color .2s, transform .2s, background .2s;
}
.pain-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-border);
  transform: translateY(-3px);
}
.pain-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.pain-icon svg { width: 22px; height: 22px; }
.pain-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.pain-card p { margin-bottom: 0; font-size: 0.95rem; color: var(--text-muted); }

/* ------------------ Benefit-Block ------------------ */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}
.benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.benefit-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  /* Solides Success-Badge: voller Akzent + weißer Haken = klar lesbar,
     auch auf dunklem Hintergrund. */
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(46, 134, 240, 0.35);
  /* Grid + place-items zentriert zuverlässiger als inline-flex
     (vermeidet Baseline-/Whitespace-Quirks) */
  display: grid;
  place-items: center;
  line-height: 0;
}
.benefit-check svg {
  width: 15px;
  height: 15px;
  /* Optische Mitte: Der Lucide-Check wirkt durch seinen Knickpunkt
     (links) und den langen Arm (rechts-oben) nach oben-links versetzt,
     obwohl er geometrisch zentriert ist. Ein Versatz nach unten-rechts
     lässt ihn sauber im Kreis sitzen. */
  transform: translate(1px, 1px);
}
.benefit strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--text);
}
.benefit span {
  display: block;
  font-size: 0.92rem;
  color: var(--text-muted);
}
@media (max-width: 720px) {
  .benefits { grid-template-columns: 1fr; }
}

/* ------------------ Steps ------------------ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  text-align: center;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 auto 18px;
  box-shadow: 0 8px 22px rgba(46, 134, 240, 0.35);
}
.step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { margin-bottom: 0; font-size: 0.95rem; color: var(--text-muted); }
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
}

/* ------------------ Reasons (Warum smart-tec) ------------------ */
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.reason {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: background .2s, border-color .2s, transform .2s;
}
.reason:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-border);
  transform: translateY(-3px);
}
.reason-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.reason-icon svg { width: 22px; height: 22px; }
.reason h3 { margin-bottom: 8px; font-size: 1.05rem; }
.reason p { margin-bottom: 0; font-size: 0.95rem; }

/* ------------------ Pricing ------------------ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px 30px;
  transition: transform .25s ease, border-color .25s, box-shadow .25s, background .25s;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-card);
}
.price-card.is-featured {
  border-color: var(--accent-border);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(46, 134, 240, 0.08) 100%);
  box-shadow: 0 0 0 1px var(--accent-border), var(--shadow-card);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 16px rgba(46, 134, 240, 0.4);
  white-space: nowrap;
}
.price-tier {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 18px;
}
.price-amount .price-value {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.price-amount .price-unit {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dim);
}
.price-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
}
.price-features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.price-features svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--accent);
  margin-top: 1px;
}
.price-card .btn { margin-top: auto; }

.pricing-note {
  text-align: center;
  margin: 30px auto 0;
  max-width: 640px;
  font-size: 0.92rem;
  color: var(--text-dim);
}
.pricing-note strong { color: var(--text-muted); font-weight: 600; }

/* ------------------ Social Proof (Platzhalter) ------------------ */
.proof-placeholder {
  text-align: center;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  color: var(--text-dim);
}
.proof-placeholder p { margin-bottom: 0; color: var(--text-dim); font-size: 0.95rem; }

/* Logo-Leiste (Kundenreferenzen) – farbige Logos auf weißen Karten,
   damit sie auf dem dunklen Hintergrund sauber zur Geltung kommen. */
.logo-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
}
.logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 34px;
  min-width: 220px;
  min-height: 104px;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}
.logo-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.5);
}
.logo-chip img {
  width: auto;
  height: auto;
  max-height: 62px;
  max-width: 240px;
  object-fit: contain;
}

/* ------------------ FAQ (Accordion) ------------------ */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s, background .2s;
}
.faq-item[open] {
  border-color: var(--accent-border);
  background: var(--bg-card-hover);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 22px;
  position: relative;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.4;
  transition: color .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 11px; height: 11px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .25s ease, border-color .2s;
}
.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
  border-color: var(--accent);
}
.faq-item summary:hover { color: var(--accent); }
.faq-item .faq-body {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 0.96rem;
}
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ------------------ Formular ------------------ */
.lead-form {
  display: grid;
  gap: 14px;
}
.field {
  display: block;
  position: relative;
}
.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.field label .req { color: var(--accent); margin-left: 2px; }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 0.98rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(46, 134, 240, 0.06);
  box-shadow: 0 0 0 3px rgba(46, 134, 240, 0.15);
}
.field textarea { resize: vertical; min-height: 96px; }

/* Select: native Optik abschalten + eigener Pfeil (als data-URI, CSP-konform) */
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a93a3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.field select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232E86F0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}
/* Dropdown-Optionen im dunklen Theme lesbar halten */
.field select option { background: #15151c; color: var(--text); }
.field-error {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--danger);
  min-height: 1em;
}
.field.has-error input,
.field.has-error textarea { border-color: var(--danger); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }

/* Honeypot – versteckt vor Menschen, sichtbar für Bots */
.field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
}

.field-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.field-consent input {
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.field-consent a {
  color: var(--accent);
  text-decoration: underline;
}
.field-consent a:hover { color: var(--accent-hover); }
.field-consent.has-error { color: var(--danger); }

.form-feedback {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: 500;
}
.form-feedback.is-success {
  display: block;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: var(--success);
}
.form-feedback.is-error {
  display: block;
  background: rgba(255, 93, 93, 0.12);
  border: 1px solid rgba(255, 93, 93, 0.4);
  color: var(--danger);
}

.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Abschluss-CTA Sektion */
.cta-section {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-alt) 100%);
}
.cta-card {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(155deg, var(--bg-card) 0%, rgba(46, 134, 240, 0.08) 100%);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(46, 134, 240, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-card h2 { margin-bottom: 14px; }
.cta-card p { font-size: 1.05rem; max-width: 540px; margin-inline: auto; margin-bottom: 28px; }

/* ------------------ Footer ------------------ */
.lp-footer {
  background: #08080b;
  padding-block: 36px 24px;
  border-top: 1px solid var(--border);
}
.lp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.lp-footer-inner a { color: var(--text-muted); transition: color .15s; }
.lp-footer-inner a:hover { color: var(--accent); }
.lp-footer-contact { display: flex; gap: 18px; flex-wrap: wrap; }
.lp-footer-legal { display: flex; gap: 18px; }

@media (max-width: 560px) {
  .lp-footer-inner { justify-content: center; text-align: center; }
}

/* ------------------ Reveal-on-Scroll ------------------ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .pain-card:hover, .reason:hover { transform: none; }
}

/* Danke-Seite */
.thanks-wrap {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 24px;
}
.thanks-card {
  max-width: 560px;
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  box-shadow: var(--shadow-card);
}
.thanks-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.thanks-icon svg { width: 36px; height: 36px; }
.thanks-card h1 { margin-bottom: 14px; font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.thanks-card p { font-size: 1.02rem; margin-bottom: 20px; }
.thanks-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
