/* ============================================================
   STELLENANZEIGEN-GENERATOR | Tool-Overrides
   Layered ON TOP of fkj-base.css (FK-Jetzt Design-System)
   ============================================================ */

/* CRITICAL FIX: hidden attribute must always win */
[hidden] {
  display: none !important;
}

/* Spacing-Skala: konsistente Section-Paddings + Element-Margins ueber die ganze Seite */
:root {
  --sect-pad-y: clamp(72px, 8vw, 112px);
  --sect-pad-y-hero: clamp(112px, 13vw, 152px);
  --head-mb: clamp(40px, 5vw, 64px);
  --head-h-mb: 24px;
  --head-sub-mb: 32px;
  --inner-block-mt: clamp(40px, 5vw, 64px);
}

/* Body BG: durchgehender prognose-Style-Gradient ueber die ganze Seite (fixed = Glow bleibt sichtbar beim Scroll) */
body.tool-page {
  background:
    radial-gradient(ellipse 65% 35% at 25% 18%, rgba(242, 205, 92, 0.20), transparent 55%),
    radial-gradient(ellipse 65% 35% at 75% 78%, rgba(111, 191, 177, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 30% at 80% 25%, rgba(111, 191, 177, 0.10), transparent 60%),
    radial-gradient(ellipse 50% 30% at 20% 75%, rgba(242, 205, 92, 0.10), transparent 60%),
    linear-gradient(135deg,
      rgba(242, 205, 92, 0.10) 0%,
      rgba(111, 191, 177, 0.09) 50%,
      rgba(242, 205, 92, 0.08) 100%
    ),
    var(--bg-deep, #081520);
  background-attachment: fixed;
  color: var(--text, #e9edf2);
  min-height: 100vh;
}

/* Sektionen: einheitliches Padding, kein eigener Background mehr */
body.tool-page section {
  padding: var(--sect-pad-y) 0;
}
body.tool-page .section--dark { background: transparent; }
body.tool-page .section--prognose {
  background: transparent;
  border: none;
  box-shadow: none;
}
body.tool-page .section--prognose::before,
body.tool-page .section--prognose::after { display: none; }

/* ============================================================
   FLOATING BOOK CTA — Sticker-Note + vertikale Pill
   ============================================================ */
.book-float-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 320ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.book-float-wrap--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.book-float__sticker {
  position: absolute;
  bottom: calc(100% + 32px);
  right: 30px;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #F2CD5C;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.005em;
  text-align: center;
  transform: rotate(-3deg);
  pointer-events: none;
}

.book-float__sticker-arrow {
  display: block;
  width: 120px;
  height: auto;
  margin: 0 auto 4px;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.45));
}

.book-float__sticker-text {
  display: block;
  padding: 0 8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.book-float__sticker-text strong {
  color: #ffffff;
  font-weight: 800;
}

@keyframes arrow-wiggle {
  0%, 84%, 100% { transform: rotate(0deg); }
  88% { transform: rotate(-3deg); }
  92% { transform: rotate(2deg); }
  96% { transform: rotate(-1deg); }
}

.book-float {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 14px 18px 16px;
  width: 180px;
  background: linear-gradient(135deg, rgba(242, 205, 92, 0.97) 0%, rgba(111, 191, 177, 0.97) 100%);
  color: var(--bg-deep, #081520);
  border-radius: 18px;
  text-decoration: none;
  line-height: 1.2;
  box-shadow:
    0 12px 40px rgba(242, 205, 92, 0.32),
    0 6px 16px rgba(0, 0, 0, 0.36);
  transition: box-shadow 220ms, transform 220ms;
}

.book-float:hover {
  box-shadow:
    0 16px 50px rgba(242, 205, 92, 0.42),
    0 8px 22px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.book-float__cover {
  width: 130px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.32))
          drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

.book-float__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 4px;
}

.book-float__title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.book-float__sub {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.82;
  margin-top: 1px;
}

.book-float__close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-deep, #081520);
  color: var(--gold, #F2CD5C);
  border: 1.5px solid rgba(242, 205, 92, 0.7);
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 220ms;
}

.book-float__close:hover {
  background: var(--gold, #F2CD5C);
  color: var(--bg-deep, #081520);
}

@media (max-width: 720px) {
  .book-float-wrap { bottom: 16px; right: 16px; }
  .book-float {
    width: 140px;
    padding: 12px 14px 14px;
    gap: 8px;
  }
  .book-float__cover { width: 95px; }
  .book-float__title { font-size: 12.5px; }
  .book-float__sub { font-size: 10px; }
  .book-float__sticker {
    top: -64px;
    right: 90px;
    font-size: 11px;
  }
  .book-float__sticker-arrow { width: 56px; height: auto; margin-bottom: 0; }
}

@media (max-width: 480px) {
  .book-float__sticker { display: none; }
}

/* ============================================================
   TOOL HERO
   ============================================================ */
.tool-hero {
  padding: clamp(96px, 12vw, 144px) 0 clamp(48px, 6vw, 80px);
  text-align: center;
}

.tool-hero .section-label {
  display: inline-block;
  margin-bottom: 24px;
}

.hero-h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-bright, #ffffff);
  margin: 0 auto 24px;
  max-width: 920px;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--text-muted, rgba(233, 237, 242, 0.75));
  margin: 0 auto;
  max-width: 720px;
}

.hero-sub em {
  color: var(--gold, #F2CD5C);
  font-style: italic;
  font-weight: 500;
}

.tool-trust {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 64px);
  margin-top: 44px;
  flex-wrap: wrap;
}

.tool-trust .trust-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  line-height: 1.2;
  gap: 6px;
}

.tool-trust .trust-item strong {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  color: var(--gold, #F2CD5C);
  letter-spacing: -0.01em;
}

.tool-trust .trust-item span {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ============================================================
   TOOL GENERATOR (Full-Width Layout, zentriert)
   ============================================================ */
body.tool-page .tool-generator {
  /* Hero-Section: oben mehr Luft wegen Nav, unten standard */
  padding-top: var(--sect-pad-y-hero);
  padding-bottom: var(--sect-pad-y);
}

.tool-generator__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--head-mb);
}

.tool-generator__head .section-label {
  display: inline-block;
  margin-bottom: var(--head-h-mb);
}

.tool-generator__head .section-h2 {
  text-align: center;
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 0 auto 20px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 720px;
}

.tool-generator__head .section-sub {
  text-align: center;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 640px;
}

/* Vereinte Hero+Generator-Sektion: H1 wie ehemaliger Hero, Trust-Bar mittig, Form-Lead darunter */
body.tool-page .tool-generator {
  padding-top: clamp(96px, 12vw, 144px);
}

.tool-generator__head .hero-h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-bright, #ffffff);
  margin: 0 auto var(--head-h-mb);
  max-width: 920px;
  text-align: center;
}

.tool-generator__head .hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.6;
  color: var(--text-muted, rgba(233, 237, 242, 0.75));
  margin: 0 auto var(--head-sub-mb);
  max-width: 700px;
  text-align: center;
}

.tool-generator__head .hero-sub em {
  color: var(--gold, #F2CD5C);
  font-style: italic;
  font-weight: 500;
}

.tool-generator__head .tool-trust {
  margin: 0 auto;
}

/* ============================================================
   TOOL FORM (Glass-Card im section--prognose Stil)
   ============================================================ */
.tool-form {
  background: rgba(8, 21, 32, 0.55);
  border: 1px solid rgba(158, 224, 210, 0.18);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.32);
  max-width: 880px;
  margin: 0 auto;
}

.tool-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.field--full { grid-column: span 2; }

.field label,
.field__legend {
  font-size: 13px;
  font-weight: 600;
  color: var(--text, #e9edf2);
  letter-spacing: -0.005em;
}

.req {
  color: var(--gold, #F2CD5C);
  font-weight: 700;
}

.field input:not([type="radio"]):not([type="checkbox"]),
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  background: rgba(8, 21, 32, 0.6);
  border: 1px solid rgba(158, 224, 210, 0.18);
  border-radius: 12px;
  color: var(--text-bright, #ffffff);
  transition: border-color 220ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 220ms;
  width: 100%;
  min-width: 0;
}

.field input:not([type="radio"]):not([type="checkbox"]):focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold, #F2CD5C);
  box-shadow: 0 0 0 3px rgba(242, 205, 92, 0.14);
}

.field textarea {
  resize: vertical;
  min-height: 72px;
  line-height: 1.55;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236FBFB1' stroke-width='2.5' 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;
  padding-right: 38px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(233, 237, 242, 0.42);
}

/* Radio Group (Du/Sie) */
.radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  background: rgba(8, 21, 32, 0.6);
  border: 1px solid rgba(158, 224, 210, 0.18);
  border-radius: 12px;
  cursor: pointer;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

.radio:hover { border-color: rgba(158, 224, 210, 0.32); }

.radio:has(input:checked) {
  border-color: var(--gold, #F2CD5C);
  background: rgba(242, 205, 92, 0.08);
  color: var(--text, #e9edf2);
}

.radio input {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--gold, #F2CD5C);
}

.radio span strong {
  color: var(--text-bright, #ffffff);
  display: block;
  margin-bottom: 2px;
  font-weight: 700;
}

/* Checkbox (Consent) */
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  cursor: pointer;
  padding-top: 4px;
}

.checkbox input {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--gold, #F2CD5C);
}

.checkbox a {
  color: var(--teal, #6FBFB1);
  text-decoration: underline;
}

.checkbox a:hover { color: var(--gold, #F2CD5C); }

/* Form Divider */
.tool-form__divider {
  margin: 32px 0 24px;
  position: relative;
  text-align: center;
}

.tool-form__divider::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: rgba(158, 224, 210, 0.18);
}

.tool-form__divider span {
  position: relative;
  display: inline-block;
  padding: 0 16px;
  background: rgba(8, 21, 32, 0.95);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Form Footer */
.tool-form__foot {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.tool-form__submit {
  min-width: 320px;
  font-size: 16px;
  padding: 15px 32px;
}

.tool-form__hint {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
  max-width: 480px;
}

/* Form Error */
.form-error {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(239, 120, 80, 0.08);
  border: 1px solid rgba(239, 120, 80, 0.32);
  border-radius: 12px;
  color: #ef7850;
  font-size: 14px;
}

/* Loading state */
.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(8, 21, 32, 0.3);
  border-top-color: #081520;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   OUTPUT
   ============================================================ */
.tool-output .output-head {
  text-align: center;
  margin-bottom: var(--head-mb);
}

.tool-output .section-label { display: inline-block; margin-bottom: var(--head-h-mb); }

.output-box {
  position: relative;
  background: rgba(8, 21, 32, 0.7);
  border: 1px solid rgba(158, 224, 210, 0.22);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 44px) clamp(24px, 4vw, 56px);
  margin: 0 auto var(--head-sub-mb);
  max-width: 880px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.32);
}

.copy-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  background: rgba(111, 191, 177, 0.1);
  color: var(--teal, #6FBFB1);
  border: 1px solid rgba(111, 191, 177, 0.32);
  border-radius: 999px;
  cursor: pointer;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.copy-btn:hover {
  background: rgba(111, 191, 177, 0.2);
  border-color: var(--teal, #6FBFB1);
}

.copy-btn.copied {
  background: var(--teal, #6FBFB1);
  color: #081520;
}

#output-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-bright, #ffffff);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

#output-text h3 {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold, #F2CD5C);
  margin: 32px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(242, 205, 92, 0.22);
}

#output-text h3:first-child { margin-top: 0; }

#output-text p {
  margin: 0 0 14px;
  line-height: 1.7;
}

#output-text strong {
  color: var(--gold, #F2CD5C);
  font-weight: 700;
}

#output-text em {
  color: var(--teal, #6FBFB1);
  font-style: italic;
}

#output-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

#output-text li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  line-height: 1.65;
}

#output-text li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal, #6FBFB1);
  font-weight: 700;
}

#output-text blockquote {
  border-left: 3px solid var(--gold, #F2CD5C);
  padding: 6px 0 6px 18px;
  margin: 16px 0;
  font-style: italic;
  color: var(--text-muted);
  font-size: 14.5px;
}

/* ============================================================
   ENTRY OFFER ANCHOR — Brücken-CTA nach der Wertlieferung
   ============================================================ */
.entry-offer-anchor {
  max-width: 880px;
  margin: 36px auto 32px;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 56px);
  background:
    radial-gradient(circle at 0% 0%, rgba(242, 205, 92, 0.14), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(111, 191, 177, 0.12), transparent 55%),
    rgba(8, 21, 32, 0.7);
  border: 1px solid rgba(242, 205, 92, 0.32);
  border-radius: 18px;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 50px rgba(242, 205, 92, 0.08);
}

.entry-offer-anchor__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.entry-offer-anchor__pill {
  display: inline-block;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold, #F2CD5C);
  background: rgba(242, 205, 92, 0.1);
  border: 1px solid rgba(242, 205, 92, 0.32);
  border-radius: 999px;
}

.entry-offer-anchor__h {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-bright, #ffffff);
  margin: 4px 0 8px;
  letter-spacing: -0.01em;
  max-width: 720px;
}

.entry-offer-anchor__sub {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 12px;
  max-width: 580px;
}

.entry-offer-anchor__btn {
  margin-top: 6px;
  padding: 16px 36px;
  font-size: 16px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.entry-offer-anchor__btn .cta-sub {
  font-size: 11px;
  opacity: 0.78;
  font-weight: 500;
  margin-top: 2px;
}

.entry-offer-anchor__fine {
  font-size: 12px;
  color: var(--text-muted);
  margin: 8px 0 0;
  max-width: 480px;
}

@media (max-width: 720px) {
  .entry-offer-anchor__btn {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
  }
}

.output-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 18px 28px;
  background: linear-gradient(135deg, rgba(242, 205, 92, 0.08), rgba(111, 191, 177, 0.06));
  border: 1px solid rgba(242, 205, 92, 0.22);
  border-radius: 14px;
  margin: 0 auto var(--inner-block-mt);
  max-width: 880px;
  flex-wrap: wrap;
  text-align: center;
}

.cta-text { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 280px; }
.cta-text strong { color: var(--text-bright, #ffffff); font-size: 15px; }
.cta-text span { color: var(--text-muted); font-size: 13px; line-height: 1.55; }

.output-foot {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: var(--head-h-mb);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.tool-how .section-label {
  display: inline-block;
  margin-bottom: var(--head-h-mb);
}

.tool-how__h {
  margin-bottom: var(--head-mb);
  text-align: left;
  max-width: 720px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.how-card {
  background: rgba(8, 21, 32, 0.55);
  border: 1px solid rgba(158, 224, 210, 0.18);
  border-radius: 18px;
  padding: 32px 28px;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.how-card:hover {
  border-color: rgba(158, 224, 210, 0.32);
  transform: translateY(-2px);
}

.how-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold, #F2CD5C);
  margin-bottom: 6px;
}

.how-stage {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal, #6FBFB1);
  margin-bottom: 14px;
}

.how-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-bright, #ffffff);
  margin: 0 0 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.how-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

.how-card em {
  color: var(--gold, #F2CD5C);
  font-style: italic;
}

/* ============================================================
   METHODE-SEKTION CTA (zurueck zum Generator-Form)
   ============================================================ */
.methode-cta {
  margin-top: var(--inner-block-mt);
  text-align: center;
  padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 36px);
  background: linear-gradient(135deg, rgba(242, 205, 92, 0.10), rgba(111, 191, 177, 0.08));
  border: 1px solid rgba(242, 205, 92, 0.28);
  border-radius: 18px;
}

/* Standalone-Variante: full-width unter dem Sticky-Grid */
.methode-cta--standalone {
  margin-top: var(--inner-block-mt);
  margin-left: auto;
  margin-right: auto;
  max-width: 920px;
}

.methode-cta__h {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-bright, #ffffff);
  margin: 0 auto 14px;
  max-width: 720px;
}

.methode-cta__sub {
  font-size: clamp(14.5px, 1.4vw, 16.5px);
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 auto 24px;
  max-width: 580px;
}

.methode-cta__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 32px;
  font-size: 16px;
}

.methode-cta__btn .cta-sub {
  font-size: 11.5px;
  opacity: 0.72;
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 36px 0;
  border-top: 1px solid rgba(158, 224, 210, 0.18);
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.site-footer p { margin: 0 0 6px; }
.site-footer a { color: var(--text-muted); text-decoration: none; }
.site-footer a:hover { color: var(--gold, #F2CD5C); }
.footer-meta { font-size: 12px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .how-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .tool-form__grid { grid-template-columns: 1fr; }
  .field--full { grid-column: span 1; }
  .tool-form__submit { min-width: 100%; }
  .tool-trust { gap: 16px; }
  .output-cta { flex-direction: column; align-items: stretch; padding: 16px 20px; }
  .nav__cta-pill .cta-sub { display: none; }
}
