/* =============================================================
   bundle.css — Vertriebsteam-Bundle LP  (Design v5)
   1:1-Nachbau des Angebotslogik-Templates (pdf-lp.html / Yunicorn):
   zentrierter Header (Logo -> Chip -> grosser leichter Serif-H1 -> Subhead)
   -> zweispaltig: Bild links auf Gradient-Karte / "Das wirst du lernen"
   + 3 Benefits + CTA rechts. Mobile = gestapelt in Template-Reihenfolge.
   Baut auf website.css + colors_and_type.css (Tokens, Modal-Felder).
   ============================================================= */

/* ---------- HERO-Sektion ---------- */
.vtb-hero {
  position: relative;
  background: var(--shx-white);
  padding: 40px 0 88px;
  overflow-x: clip;
}
.vtb-wrap {
  width: 100%;
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- Header: Logo zentriert ---------- */
.vtb-brand {
  display: block;
  margin: 12px 0 34px;
}
.vtb-brand img {
  display: block;
  width: 152px;
  height: auto;
}

/* ---------- Chip / Eyebrow ---------- */
.vtb-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
  text-transform: uppercase;
  color: var(--shx-black);
}
.vtb-chip img {
  width: 24px;
  height: 24px;
  display: none;
}
.vtb-chip span {
  font-family: var(--shx-font-sans);
  font-size: clamp(14px, 1.32vw, 23px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
  text-align: center;
}

/* ---------- H1 ---------- */
.vtb-h1 {
  font-family: var(--shx-font-serif);
  font-weight: 400;
  font-size: clamp(38px, 4vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #1f1f1f;
  text-align: center;
  max-width: 1600px;
  margin: 0 auto;
  text-wrap: balance;
}
.vtb-h1 br { display: none; }

/* ---------- Subhead ---------- */
.vtb-sub {
  font-family: var(--shx-font-sans);
  font-size: clamp(16px, 1.4vw, 24px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.68);
  text-align: center;
  max-width: 660px;
  margin: 26px auto 0;
}

/* ---------- Mobile-CTA (direkt nach Subhead, nur < lg) ---------- */
.vtb-cta-mobile {
  width: 100%;
  max-width: 460px;
  margin: 34px auto 0;
  display: flex;
}
.vtb-cta-mobile .vtb-cta { width: 100%; }

/* ---------- Content-Grid: mobile col / desktop row ---------- */
.vtb-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  width: 100%;
  margin-top: 48px;
}

/* ---------- LINKS: Bild auf Gradient-Karte ---------- */
.vtb-media {
  width: 100%;
  max-width: 440px;
}
.vtb-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1940 / 2400;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #282828 0%, #282828 44%, #90CFE8 120%);
  box-shadow: 0 30px 60px -24px rgba(12, 133, 180, 0.28);
}
.vtb-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ---------- RECHTS: "Das wirst du lernen" + Benefits + CTA ---------- */
.vtb-list {
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.vtb-learn-title {
  font-family: var(--shx-font-sans);
  font-weight: 600;
  font-size: clamp(22px, 2.1vw, 38px);
  letter-spacing: -0.035em;
  line-height: 1.2;
  color: #000;
  margin: 0;
}

.vtb-benefits {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.6vw, 34px);
}
.vtb-benefit {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 1.6vw, 24px);
}
.vtb-benefit-icon {
  flex: none;
  width: clamp(46px, 3.9vw, 68px);
  height: clamp(46px, 3.9vw, 68px);
}
.vtb-benefit-icon img { width: 100%; height: 100%; display: block; }
.vtb-benefit-text h3 {
  font-family: var(--shx-font-sans);
  font-weight: 500;
  font-size: clamp(19px, 1.67vw, 30px);
  letter-spacing: -0.035em;
  line-height: 1.2;
  color: #000;
  margin: 0 0 7px;
}
.vtb-benefit-text p {
  font-family: var(--shx-font-sans);
  font-weight: 400;
  font-size: clamp(15px, 1.25vw, 22px);
  letter-spacing: -0.02em;
  line-height: 1.36;
  color: rgba(0, 0, 0, 0.55);
  margin: 0;
}

.vtb-cta-wrap { margin-top: 8px; }

/* ---------- CTA-Button (schwarz, rund, weisses Mark, Hover-Slide) ---------- */
.vtb-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #000;
  cursor: pointer;
  color: #fff;
  border-radius: 100px;
  padding: 23px 52px;
  min-height: 70px;
  font-family: var(--shx-font-sans);
  /* 3D: dunkler Vertikal-Gradient + oberer Bevel-Highlight + CI-Sky-Blau-Glow unten */
  background: linear-gradient(180deg, #363636 0%, #141414 52%, #000 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -3px 9px rgba(0, 0, 0, 0.55),
    0 3px 7px rgba(0, 0, 0, 0.30),
    0 16px 34px -10px rgba(23, 150, 201, 0.45);
  transition: box-shadow 0.3s var(--shx-ease-out), transform 0.13s var(--shx-ease-out);
  -webkit-tap-highlight-color: transparent;
}
/* Druck-Feedback (Touch + Maus) — verstärkt das 3D-„drückbar"-Gefühl */
.vtb-cta:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 2px 7px rgba(0, 0, 0, 0.6),
    0 3px 9px -3px rgba(23, 150, 201, 0.42);
}
.vtb-cta__layer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(17px, 1.46vw, 25px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none; /* Klick geht immer an den Button, nie an eine Layer */
  transition: transform 0.44s var(--shx-ease-out), opacity 0.4s var(--shx-ease-out);
}
.vtb-cta__layer--in {
  position: absolute;
  inset: 0;
  justify-content: center;
  transform: translateX(28px);
  opacity: 0;
}
.vtb-cta__logo { width: auto; height: 20px; display: block; flex: none; }
.vtb-cta[disabled] { cursor: default; opacity: 0.9; }

/* Hover-Slide NUR auf echten Hover-Geräten — verhindert iOS-Doppeltap auf Touch */
@media (hover: hover) and (pointer: fine) {
  .vtb-cta:hover {
    transform: translateY(-2px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.32),
      inset 0 -3px 9px rgba(0, 0, 0, 0.55),
      0 7px 14px rgba(0, 0, 0, 0.30),
      0 24px 50px -8px rgba(23, 150, 201, 0.58);
  }
  .vtb-cta:hover .vtb-cta__layer--base { transform: translateX(-28px); opacity: 0; }
  .vtb-cta:hover .vtb-cta__layer--in { transform: translateX(0); opacity: 1; }
  .vtb-cta:active { transform: translateY(1px); }
}

/* ---------- Desktop: zweispaltig ---------- */
@media (min-width: 1024px) {
  .vtb-hero { padding: 20px 0 52px; }
  .vtb-brand { margin: 4px 0 18px; }
  .vtb-brand img { width: clamp(160px, 11vw, 196px); }
  .vtb-chip { gap: 14px; margin-bottom: 16px; }
  .vtb-chip img { display: block; }
  .vtb-sub { margin-top: 18px; max-width: 720px; }

  .vtb-cta-mobile { display: none; }

  .vtb-grid {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(40px, 4vw, 80px);
    margin-top: 30px;
  }
  .vtb-media {
    flex: none;
    width: clamp(400px, 33vw, 620px);
    max-width: none;
  }
  .vtb-list { flex: 1 1 auto; max-width: 700px; gap: 26px; }
  /* Großer, dicker CTA über der Falz (volle Spaltenbreite) */
  .vtb-cta-wrap { margin-top: 4px; }
  .vtb-cta-wrap .vtb-cta { width: 100%; }
}

/* ---------- Footer (3-spaltig, wie Template) ---------- */
.vtb-footer {
  background: var(--shx-white);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 34px 28px;
}
.vtb-footer__row {
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: var(--shx-font-sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
}
.vtb-footer a { color: rgba(0, 0, 0, 0.6); text-decoration: none; transition: color 160ms; }
.vtb-footer a:hover { color: #000; }
.vtb-footer__mid { display: inline-flex; gap: 10px; align-items: center; }
.vtb-footer__mid .sep { color: var(--shx-sky-200); }
@media (min-width: 1024px) {
  .vtb-footer__row { flex-direction: row; justify-content: space-between; }
  .vtb-footer__row > * { width: 33%; }
  .vtb-footer__row > :first-child { text-align: left; }
  .vtb-footer__row > :last-child { text-align: right; }
}

/* =============================================================
   OPT-IN MODAL — Angebotslogik-Popup-Optik (Design-Phase)
   (echtes HubSpot-Formular folgt in der Verdrahtungsphase)
   ============================================================= */
.vtb-modal {
  max-width: 500px;
  padding: 32px 22px 36px;
  border-radius: 22px;
}
.vtb-modal .modal-close { top: 22px; right: 22px; color: #c2c2c2; }
.vtb-modal-title {
  font-family: var(--shx-font-serif);
  font-weight: 400;
  font-size: clamp(30px, 6.8vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  color: #141414;
  margin: 2px 0 0;
  max-width: 92%;
}
.vtb-modal-sub {
  font-family: var(--shx-font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 4.4vw, 23px);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.46);
  margin: 16px 0 28px;
}
.vtb-modal-sub .wa { color: #6aa84f; font-style: italic; }

/* Referenz-Feldoptik: hellgrau, rund, gross */
.vtb-modal .field { margin-bottom: 13px; }
.vtb-modal .field input,
.vtb-modal .cc-select select {
  width: 100%;
  font-family: var(--shx-font-sans);
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #141414;
  background: #f4f4f4;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color 0.2s, background 0.2s;
}
.vtb-modal .field input::placeholder { color: #9b9b9b; }
.vtb-modal .field input:focus,
.vtb-modal .cc-select select:focus {
  outline: none;
  border-color: var(--shx-sky-500);
  background: #fff;
}

/* Telefon-Reihe: Vorwahl-Dropdown + Nummer */
.phone-row { display: flex; gap: 10px; }
.cc-select { position: relative; flex: 0 0 132px; }
.cc-select select {
  appearance: none;
  -webkit-appearance: none;
  padding: 18px 34px 18px 16px;
  cursor: pointer;
}
.cc-select::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 9px;
  height: 9px;
  transform: translateY(-70%) rotate(45deg);
  border-right: 2px solid #8a8a8a;
  border-bottom: 2px solid #8a8a8a;
  pointer-events: none;
}
.phone-row input[type="tel"] { flex: 1 1 auto; min-width: 0; padding-left: 16px; padding-right: 12px; }

.modal-submit.vtb-cta { width: 100%; margin-top: 12px; }

@media (min-width: 560px) {
  .vtb-modal { padding: 42px 42px 46px; }
}

/* =============================================================
   Eingebettetes HubSpot-Formular „Vertriebsteam-Bundle" im Modal
   (hbspt.forms.create -> #hs-form-target). Auf SHX-Optik gebracht.
   ============================================================= */
.vtb-hsform { min-height: 208px; }
.vtb-hsform-loading {
  padding: 26px 0; text-align: center; color: #9b9b9b;
  font-family: var(--shx-font-sans); font-size: 14px; letter-spacing: -0.02em;
}
.vtb-hsform:has(form) .vtb-hsform-loading { display: none; }

.vtb-modal .hs-form fieldset { max-width: none !important; width: 100% !important; }
.vtb-modal .hs-form-field { margin-bottom: 13px; }
/* Labels aus (wir nutzen Placeholder), Fehler-Labels bleiben */
.vtb-modal .hs-form-field > label:not(.hs-error-msg) { display: none; }
.vtb-modal .hs-field-desc { display: none; }

.vtb-modal .hs-input:not([type="checkbox"]):not([type="radio"]) {
  width: 100% !important; box-sizing: border-box; margin: 0;
  font-family: var(--shx-font-sans); font-size: 16px; letter-spacing: -0.02em; color: #141414;
  background: #f4f4f4; border: 1px solid #e7e7e7; border-radius: 12px; padding: 18px 20px;
  transition: border-color .2s, background .2s;
}
.vtb-modal .hs-input::placeholder { color: #9b9b9b; }
.vtb-modal .hs-input:focus { outline: none; border-color: var(--shx-sky-500); background: #fff; }

/* Telefon: Ländervorwahl-Select + Nummer nebeneinander */
.vtb-modal .hs-fieldtype-phonenumber .input { display: flex; gap: 10px; }
.vtb-modal .hs-fieldtype-phonenumber select.hs-input { flex: 0 0 132px; width: 132px !important; padding-right: 30px; cursor: pointer; }
.vtb-modal .hs-fieldtype-phonenumber input.hs-input { flex: 1 1 auto; width: auto !important; min-width: 0; }

/* Fehlermeldungen */
.vtb-modal .hs-error-msgs { list-style: none; margin: 6px 0 0; padding: 0; }
.vtb-modal .hs-error-msg, .vtb-modal label.hs-error-msg {
  display: block; color: #c0392b; font-family: var(--shx-font-sans);
  font-size: 13px; letter-spacing: -0.01em;
}
.vtb-modal .hs_error_rollup { display: none; }

/* Submit-Button — 3D-Schwarz wie vtb-cta */
.vtb-modal .hs-submit { margin-top: 4px; }
.vtb-modal .hs-submit .actions { margin: 0; padding: 0; }
.vtb-modal .hs-button.primary {
  -webkit-appearance: none; appearance: none;
  width: 100%; cursor: pointer; color: #fff; border: 1px solid #000; border-radius: 100px;
  padding: 20px 40px; min-height: 62px;
  font-family: var(--shx-font-sans); font-size: clamp(16px, 1.4vw, 20px); font-weight: 500; letter-spacing: -0.03em;
  background: linear-gradient(180deg, #363636 0%, #141414 52%, #000 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.26), inset 0 -3px 9px rgba(0,0,0,.55),
    0 3px 7px rgba(0,0,0,.30), 0 16px 34px -10px rgba(23,150,201,.45);
  transition: transform .13s var(--shx-ease-out), box-shadow .3s var(--shx-ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .vtb-modal .hs-button.primary:hover { transform: translateY(-2px); }
}
.vtb-modal .hs-button.primary:active { transform: translateY(2px); }

/* =============================================================
   DANKE-SEITE v7 — Pattern-Interrupt-Hero → lebende Gleichung →
   Prozess-Angebot. Gecodete Animationen (Reveal / Shimmer / Count-up /
   Result-Glow), damit man "Lust hat zu lesen". prefers-reduced-motion safe.
   ============================================================= */
a.vtb-cta { text-decoration: none; }

/* ---- Scroll-Reveal (nur Danke-Seite; index nutzt kein data-reveal) ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--shx-ease-out), transform .7s var(--shx-ease-out);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }
.eq-op[data-reveal] { transform: translateY(10px) scale(.7); }
.eq-op[data-reveal].is-in { transform: none; }

/* ---- HERO: großer Pattern Interrupt ---- */
.danke-hero { position: relative; overflow: hidden; padding-bottom: clamp(40px, 6vw, 74px); }
.danke-hero .vtb-wrap { position: relative; z-index: 1; }
.danke-orb {
  position: absolute; z-index: 0; left: 50%; top: -46%;
  width: min(1180px, 150vw); height: min(1180px, 150vw);
  transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(23,150,201,.16), rgba(144,207,232,.07) 42%, transparent 66%);
  pointer-events: none;
  animation: danke-orb 9s var(--shx-ease-in-out) infinite;
}
@keyframes danke-orb {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: .85; }
  50%      { transform: translateX(-50%) scale(1.13); opacity: 1; }
}

.danke-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 100px;
  background: #eaf6ec; color: #3f8a4a;
  font-family: var(--shx-font-sans);
  font-size: 14px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 18px;
}
.danke-badge .wa-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #25D366;
  animation: danke-dot 1.9s ease-in-out infinite;
}
@keyframes danke-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%      { box-shadow: 0 0 0 7px rgba(37,211,102,0); }
}

.danke-pre {
  font-family: var(--shx-font-sans); font-weight: 500;
  font-size: clamp(19px, 2.4vw, 30px); line-height: 1.35; letter-spacing: -0.03em;
  color: rgba(0,0,0,.62); text-align: center; max-width: 820px; margin: 6px auto 0;
}
.danke-pre-but {
  font-family: var(--shx-font-serif); font-style: italic; font-weight: 400;
  color: rgba(0,0,0,.82);
}
/* STOP. — jetzt Teil der Headline (selbe Größe/Linie), solide dunkel */
.danke-stopword { color: #111; }
.danke-hl {
  font-family: var(--shx-font-serif); font-weight: 400;
  font-size: clamp(38px, 6.4vw, 90px); line-height: 1.02; letter-spacing: -0.05em;
  color: #1f1f1f; text-align: center; max-width: 1100px; margin: 14px auto 0; text-wrap: balance;
}
.danke-accent {
  font-style: italic;
  background: linear-gradient(100deg, var(--shx-sky-600) 0%, var(--shx-sky-400) 28%, var(--shx-sky-200) 50%, var(--shx-sky-400) 72%, var(--shx-sky-600) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: danke-shimmer 5.5s linear infinite;
}
@keyframes danke-shimmer { 0% { background-position: 130% 0; } 100% { background-position: -130% 0; } }

.danke-scroll {
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  margin-top: clamp(30px, 4vw, 48px); color: rgba(0, 0, 0, 0.5);
}
.danke-scroll__txt {
  font-family: var(--shx-font-sans); font-size: 15px; font-weight: 500;
  text-transform: none; letter-spacing: -0.02em; color: rgba(0, 0, 0, 0.62);
}
.danke-scroll svg { width: 22px; height: 22px; animation: danke-bounce 1.9s var(--shx-ease-in-out) infinite; }
@keyframes danke-bounce {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* ---- LÖSUNG (warm) ---- */
.danke-solve {
  background: var(--shx-bg-warm); border-top: 1px solid rgba(0,0,0,.06);
  padding: clamp(54px, 7vw, 88px) 0;
}
.danke-solve .vtb-wrap { max-width: 1000px; }
.danke-honest {
  font-family: var(--shx-font-sans); font-weight: 600; font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: -0.01em; color: var(--shx-sky-600); text-align: center; margin: 0 0 12px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.danke-honest::before, .danke-honest::after {
  content: ""; width: 26px; height: 1px; background: var(--shx-sky-300); opacity: .6;
}
.danke-solve-h {
  font-family: var(--shx-font-serif); font-weight: 400;
  font-size: clamp(26px, 3.6vw, 46px); letter-spacing: -0.04em; line-height: 1.12;
  color: #1f1f1f; text-align: center; margin: 0 auto clamp(34px, 4.5vw, 50px); max-width: 820px;
}
.danke-solve-h em { font-style: italic; color: var(--shx-sky-600); }

/* ---- Gleichung: Bundle + Prozess = Ergebnis (lebendig) ---- */
.danke-eq { width: 100%; display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.eq-card {
  background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 18px;
  padding: 26px 22px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  box-shadow: 0 12px 30px rgba(12,133,180,.07);
}
.eq-ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--shx-sky-050, #E0EFF5); }
.eq-ic svg { width: 28px; height: 28px; color: var(--shx-sky-600, #0C85B4); }
.eq-t { font-family: var(--shx-font-sans); font-weight: 600; font-size: 18px; letter-spacing: -0.03em; line-height: 1.25; color: #111; }
.eq-num { font-variant-numeric: tabular-nums; }
.eq-tag { font-family: var(--shx-font-sans); font-size: 13px; font-weight: 500; letter-spacing: -0.01em; }
.eq-tag.have { color: #3f8a4a; }
.eq-tag.build { color: var(--shx-sky-600); }
.eq-op { align-self: center; font-family: var(--shx-font-serif); font-size: 30px; color: var(--shx-grey-350); line-height: 1; }
.eq-result {
  background: linear-gradient(180deg, #eaf4f9 0%, #dcedf5 100%); border-color: rgba(23,150,201,.28);
  animation: danke-glow 3.4s var(--shx-ease-in-out) infinite;
}
.eq-result .eq-ic { background: rgba(23,150,201,.15); }
.eq-result .eq-t { color: var(--shx-sky-900, #02324F); font-size: 19px; }
.eq-result .eq-tag { color: var(--shx-sky-600); }
@keyframes danke-glow {
  0%, 100% { box-shadow: 0 12px 30px rgba(23,150,201,.12); }
  50%      { box-shadow: 0 18px 52px rgba(23,150,201,.30); }
}
.eq-result .eq-draw { stroke-dasharray: 44; stroke-dashoffset: 44; }
.eq-result.is-in .eq-draw { transition: stroke-dashoffset 1s var(--shx-ease-out) .35s; stroke-dashoffset: 0; }
@media (min-width: 780px) {
  .danke-eq { flex-direction: row; justify-content: center; gap: 16px; }
  .eq-card { flex: 1 1 0; }
  .eq-op { font-size: 40px; }
}

/* ---- Offer-Panel (Termin-Überleitung) ---- */
.danke-offer {
  margin-top: clamp(40px, 5vw, 60px);
  background: linear-gradient(180deg, #ffffff 0%, #f5fafc 100%);
  border: 1px solid rgba(23,150,201,.18);
  border-radius: 26px;
  padding: clamp(30px, 4.4vw, 52px);
  box-shadow: 0 40px 90px -40px rgba(12,133,180,.35);
  text-align: center;
}
/* Senior-Team-Marquee (Proof, kontinuierlicher Scroll) */
.danke-partners { margin-top: clamp(42px, 5vw, 64px); }
.danke-partners-label {
  text-align: center; font-family: var(--shx-font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: -0.01em; color: var(--shx-sky-600); margin: 0 0 22px; padding: 0 20px;
}
.marquee {
  position: relative; overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: danke-marquee 52s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes danke-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.p-card { flex: 0 0 auto; width: 118px; margin-right: 26px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.p-photo {
  width: 74px; height: 74px; border-radius: 50%; object-fit: cover; object-position: center top;
  border: 2px solid #fff; box-shadow: 0 6px 18px rgba(12,133,180,.16); background: #eef4f7;
}
.p-name { margin-top: 11px; font-family: var(--shx-font-sans); font-weight: 600; font-size: 13px; letter-spacing: -0.02em; color: #1f1f1f; line-height: 1.2; }
.p-title { margin-top: 3px; font-family: var(--shx-font-sans); font-size: 11px; letter-spacing: -0.01em; color: rgba(0,0,0,.5); line-height: 1.25; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
.danke-offer-copy {
  font-family: var(--shx-font-sans); font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.5; letter-spacing: -0.02em; color: rgba(0,0,0,.72);
  max-width: 720px; margin: 0 auto clamp(26px, 3.4vw, 34px);
}
.danke-offer-copy strong { color: #111; font-weight: 600; }
.danke-offer .vtb-cta { min-width: min(440px, 100%); }
.danke-note {
  margin-top: 18px; font-family: var(--shx-font-sans);
  font-size: 14px; letter-spacing: -0.02em; color: var(--shx-grey-500); text-align: center;
}
.danke-note a { color: var(--shx-sky-600); }

/* ---- Reduced motion: alles ruhig stellen ---- */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .danke-orb, .danke-badge .wa-dot, .danke-scroll svg, .eq-result, .danke-accent { animation: none !important; }
  .danke-accent { color: var(--shx-sky-600); -webkit-text-fill-color: currentColor; }
}

/* ---- Mobile-Feinschliff Danke v7 ---- */
@media (max-width: 720px) {
  .danke-hl { font-size: clamp(32px, 9vw, 46px); }
  .danke-offer { padding: 26px 20px; }
  .danke-offer .vtb-cta { min-width: 100%; }
  .p-card { width: 108px; margin-right: 20px; }
}

/* ---------- Mobile-Feinschliff ---------- */
@media (max-width: 720px) {
  .vtb-hero { padding: 14px 0 52px; }
  .vtb-wrap { padding: 0 22px; }
  .vtb-brand { margin: 2px 0 15px; }
  .vtb-brand img { width: 116px; }
  .vtb-chip { margin-bottom: 14px; }
  .vtb-chip span { font-size: 10px; letter-spacing: -0.015em; white-space: nowrap; }
  .vtb-cta-mobile { margin-top: 26px; }
  .vtb-grid { gap: 34px; margin-top: 30px; }
  .vtb-media { max-width: 380px; }
  .vtb-list { gap: 26px; }
  .vtb-cta { padding: 18px 30px; min-height: 58px; width: 100%; }
  .vtb-cta__layer { white-space: normal; text-align: center; }
}
