/* ============ TOKENS (Branding WEALTHSIDE) ============ */
:root {
  --ink: #132A2C;
  --ink-soft: #3E5457;
  --paper: #FAF8F3;
  --paper-raised: #FFFFFF;
  --sand: #EDE6D6;
  --teal: #0E6E63;
  --teal-deep: #0A4F47;
  --coral: #F0693F;
  --line: #DCD4C1;
  --radius: 4px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

p { margin: 0; color: var(--ink-soft); line-height: 1.6; }
a { color: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; width: 100%; }
.mono { font-family: 'IBM Plex Mono', monospace; letter-spacing: 0.04em; }

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--teal); }

section { padding: 80px 0; }
@media(max-width:720px) { section { padding: 56px 0; } }

/* ============ BUTTONS (GLOBAL) ============ */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 26px;
  border-radius: var(--radius);
  font-family: 'IBM Plex Sans', sans-serif;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  text-align: center;
}
.btn-single { flex-direction: row; padding: 14px 26px; gap: 8px; font-weight: 600; font-size: 15px; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { box-shadow: 0 8px 20px rgba(240,105,63,.35); background: #e0582e; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); font-weight: 600; font-size: 15px; flex-direction: row; padding: 14px 26px; }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-title { font-weight: 700; font-size: 17px; display: block; letter-spacing: 0.02em; }
.btn-sub { font-family: 'IBM Plex Mono', monospace; font-size: 12px; opacity: 0.9; display: block; font-weight: 400; }

/* ============ HEADER (GLOBAL) ============ */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,248,243,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; /* Hier waren vorher 0px, jetzt hat es wieder den normalen Abstand */
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  display: flex; align-items: baseline; gap: 0;
  text-transform: uppercase;
  text-decoration: none;
}
.logo span { color: var(--teal); }
.nav-links { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
@media(max-width:860px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline { display: none; }
}

/* ============ MAIN PAGE (HERO) ============ */
.hero { padding: 88px 0 60px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
@media(max-width:900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero h1 { font-size: clamp(34px,5vw,54px); }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero p.lead { font-size: 17px; margin-top: 22px; max-width: 50ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-list { margin-top: 24px; list-style: none; padding: 0; display: grid; gap: 12px; }
.hero-list li { display: flex; gap: 12px; font-size: 15px; color: var(--ink); align-items: flex-start; line-height: 1.5; }
.hero-list li::before { content: "✓"; color: var(--teal); font-weight: 700; flex-shrink: 0; font-size: 16px; margin-top: 1px; }

/* Visual Card */
.visual-card { position: relative; background: var(--paper-raised); border: 1px solid var(--line); border-radius: 6px; padding: 40px 30px; box-shadow: 0 30px 60px -30px rgba(19,42,44,.25); transform: rotate(1.2deg); text-align: center; }
.visual-card::before { content: ""; position: absolute; inset: 10px; border: 1px dashed var(--line); border-radius: 3px; pointer-events: none; }
.vc-badge { display: inline-block; font-family: 'IBM Plex Mono', monospace; font-size: 11px; background: var(--sand); color: var(--teal-deep); padding: 6px 12px; border-radius: 30px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.visual-card h3 { font-size: 24px; margin-bottom: 12px; }
.visual-card p { font-size: 14.5px; margin-bottom: 24px; }

/* ============ MOBILE OPTIMIZATION (MAIN) ============ */
@media(max-width: 600px) {
  .wrap { padding: 0 20px; } /* Schafft zwingend Platz am Rand (Logo klebt nicht mehr) */
  .nav { padding: 12px 20px; } /* Das gibt dem Logo auf dem Smartphone den nötigen Freiraum */
  .logo { font-size: 19px; } /* Logo eine Nuance kleiner */
  .hero { padding: 32px 0 40px; }
  .hero h1 { font-size: 28px; line-height: 1.15; } /* Überschrift etwas kompakter */
  .hero p.lead { font-size: 15px; margin-top: 14px; line-height: 1.5; }
  .hero-list { margin-top: 18px; gap: 10px; }
  .hero-list li { font-size: 14.5px; }
  .hero-actions { margin-top: 24px; gap: 12px; }
  .btn { padding: 14px 20px; }
  .btn-title { font-size: 16px; }
  .btn-sub { font-size: 11.5px; }
  .btn-outline { font-size: 14px; padding: 12px 20px; }
}

/* ============ TRUST STRIP ============ */
.trust { background: var(--sand); padding: 18px 0; }
.trust .wrap { display: flex; gap: 20px 40px; justify-content: center; flex-wrap: wrap; }
.trust span { font-family: 'IBM Plex Mono',monospace; font-size: 13px; color: var(--ink-soft); }
.trust strong { color: var(--teal-deep); }
@media(max-width:600px) {
  .trust .wrap { gap: 12px 20px; }
  .trust span { font-size: 11.5px; } /* Mobil dezent kleiner */
}

/* ============ SECTION HEAD ============ */
.sec-head { max-width: 640px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head.center p { margin-left: auto; margin-right: auto; }
.sec-head h2 { font-size: clamp(26px,3.4vw,40px); line-height: 1.15; }
.sec-head p { margin-top: 14px; font-size: 16px; }
@media(max-width: 600px) {
  .sec-head { margin-bottom: 36px; }
  .sec-head h2 { font-size: 25px; } /* Verhindert riesige Umbrüche auf dem Smartphone */
}

/* ============ BENEFITS GRID ============ */
.benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media(max-width:640px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit { background: var(--paper-raised); padding: 40px 36px; }
.benefit .icon { font-size: 24px; margin-bottom: 16px; }
.benefit h3 { font-size: 20px; margin-bottom: 12px; }
.benefit p { font-size: 14.5px; }

/* ============ PROCESS / MODULES ============ */
.process { background: var(--paper-raised); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 40px 0; border-top: 1px solid var(--line); }
@media(max-width:600px) { .step { grid-template-columns: 1fr; padding: 32px 0; gap: 16px; } }
.steps .step:last-child { border-bottom: 1px solid var(--line); }
.step .n-wrap { display: flex; flex-direction: column; }
.step .lbl { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.step .n { font-family: 'Fraunces',serif; font-size: 42px; color: var(--sand); -webkit-text-stroke: 1px var(--teal); line-height: 1; }
.step h3 { font-size: 24px; margin-bottom: 16px; }
.step ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.step li { display: flex; gap: 12px; font-size: 15px; color: var(--ink-soft); line-height: 1.5; }
.step li::before { content: "✓"; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ============ FOUNDER ============ */
.founder { padding: 64px 0; }
@media(max-width:768px) { .founder { padding: 48px 0; } }
.founder-grid { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: center; max-width: 860px; margin: 0 auto; }
.founder-img { width: 100%; border-radius: 8px; aspect-ratio: 1/1; object-fit: cover; border: 1px solid var(--line); box-shadow: 0 20px 40px -20px rgba(19,42,44,.15); }
@media(max-width:768px) { 
  .founder-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; } 
  .founder-img { max-width: 240px; margin: 0 auto; } /* Limitiert die Bildgröße auf Handys */
}
.founder-text h3 { font-size: 28px; margin-bottom: 16px; }

/* ============ PRICING ============ */
.price-wrap { max-width: 600px; margin: 0 auto; }
.ticket { background: var(--paper-raised); border: 2px solid var(--teal); border-radius: 8px; box-shadow: 0 35px 70px -30px rgba(14,110,99,.25); overflow: hidden; text-align: center; position: relative; }
.ticket-main { padding: 40px 32px; }
.ticket-main h3 { font-size: 26px; margin-bottom: 16px; }
.ticket-main p { font-size: 15px; margin-bottom: 24px; }
.ticket-stub { background: var(--teal-deep); color: #fff; padding: 32px; border-top: 2px dashed rgba(255,255,255,.25); }
.ticket-stub .price { font-family: 'Fraunces',serif; font-size: 48px; line-height: 1; }
.ticket-stub .strike { font-size: 18px; text-decoration: line-through; opacity: 0.6; margin-right: 12px; font-family: 'IBM Plex Sans', sans-serif;}
.ticket-stub .cur { font-family: 'IBM Plex Mono',monospace; font-size: 13px; opacity: .75; display: block; margin-top: 8px; }
.ticket-stub .btn { width: 100%; margin-top: 24px; }
 
/* ============ FAQ ============ */
.faq { background: var(--paper-raised); border-top: 1px solid var(--line); }
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; gap: 20px; background: none; border: none; width: 100%; text-align: left; font-family: 'Fraunces',serif; font-size: 17px; color: var(--ink); }
.faq-q .plus { font-family: 'IBM Plex Mono',monospace; font-size: 20px; color: var(--teal); transition: transform .2s ease; flex-shrink: 0; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding-bottom: 22px; font-size: 14.5px; max-width: 64ch; }

/* ============ MARKTBRIEF OPTIN ============ */
.optin-band { background: var(--sand); padding: 80px 0; border-top: 1px solid var(--line); }
.optin-box { max-width: 600px; margin: 0 auto; text-align: center; }
.optin-box h2 { font-size: clamp(26px,4vw,36px); margin-bottom: 12px; }
.optin-box p { margin-bottom: 32px; font-size: 15px; }
.aw-form { display: flex; gap: 12px; flex-direction: column; text-align: left; }
.aw-input { width: 100%; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius); font-size: 16px; font-family: 'IBM Plex Sans', sans-serif; background: var(--paper); }
.aw-input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,110,99,.1); background: #fff; }
.aw-disclaimer { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; color: var(--ink-soft); margin-top: 16px; font-family: 'IBM Plex Mono', monospace; }

/* ============ TELEGRAM CHECK (BOTTOM SECTION) ============ */
.strategy-sec { background: var(--teal-deep); padding: 88px 0; color: #ffffff; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
.strategy-sec h2 { color: #ffffff; font-size: clamp(30px, 4.2vw, 46px); margin-bottom: 16px; line-height: 1.15; }
.strategy-sec .lead-sub { color: rgba(255, 255, 255, 0.9); font-size: 16.5px; max-width: 680px; margin: 0 auto 36px; line-height: 1.5; }
.strategy-card { background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 8px; padding: 36px 32px; max-width: 820px; margin: 0 auto 36px; text-align: left; }
.strategy-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.strategy-list li { display: flex; gap: 12px; font-size: 15.5px; color: rgba(255, 255, 255, 0.92); line-height: 1.55; align-items: flex-start; }
.strategy-list li strong { color: #ffffff; }
.strategy-list li::before { content: "✓"; color: #ffffff; font-weight: 700; font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.strategy-actions { display: flex; justify-content: center; }
@media(max-width:600px) { .strategy-sec { padding: 60px 0; } .strategy-card { padding: 24px 20px; margin-bottom: 28px; } .strategy-list li { font-size: 14.5px; } }

/* ============ EXIT POPUP MODAL ============ */
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(19,42,44,.6); backdrop-filter: blur(4px); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s ease; padding: 20px; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content { background: var(--paper-raised); width: 100%; max-width: 480px; border-radius: 8px; padding: 40px 32px; position: relative; transform: translateY(20px); transition: transform .3s ease; box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); text-align: center; border: 1px solid var(--line); }
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--ink-soft); }
.modal-content h2 { font-size: 28px; margin-bottom: 12px; }
.modal-content p { font-size: 15px; margin-bottom: 24px; }

/* ============ FOOTER (GLOBAL) ============ */
footer { background: var(--paper); padding: 56px 0 34px; border-top: 1px solid var(--line); position: relative; z-index: 10; }
.foot-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.foot-grid .logo { margin-bottom: 10px; }
.foot-col h4 { font-family: 'IBM Plex Mono',monospace; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); margin-bottom: 14px; }
.foot-col a { display: block; text-decoration: none; font-size: 14px; color: var(--ink-soft); margin-bottom: 8px; }
.foot-col a:hover { color: var(--ink); }
.foot-disclaimer { margin-top: 36px; margin-bottom: 24px; padding: 18px 22px; background: var(--sand); border-radius: var(--radius); border: 1px solid var(--line); font-size: 13px; line-height: 1.5; color: var(--ink-soft); }

/* ============ FOOTER BOTTOM (GLOBAL) ============ */
.foot-bottom { 
  margin-top: 32px; 
  padding-top: 24px; 
  border-top: 1px solid var(--line); 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  flex-wrap: wrap; 
  gap: 16px; 
  font-size: 13px; 
  color: var(--ink-soft); 
  font-family: 'IBM Plex Sans', sans-serif; 
}
.foot-bottom a { 
  text-decoration: none; 
  margin-left: 16px; 
  transition: color 0.2s ease;
}
.foot-bottom a:hover { 
  color: var(--ink); 
}

/* Optimierung für Mobilgeräte: Zentriert und aufgeräumt untereinander */
@media(max-width: 600px) {
  .foot-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 12px;
  }
  .foot-bottom a {
    margin: 0 8px; 
  }
}


/* ========================================================================= */
/* ======================== SPEZIFISCHES UPSELL CSS ======================== */
/* ========================================================================= */

.progress-container { margin-bottom: 32px; text-align: center; }
.progress-track { background: var(--sand); border-radius: 30px; height: 22px; width: 100%; overflow: hidden; position: relative; border: 1px solid var(--line); }
.progress-fill { background: linear-gradient(90deg, var(--teal) 0%, #159a8b 100%); height: 100%; width: 50%; border-radius: 30px; display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 600; transition: width 0.4s ease; }

.headline-section { text-align: center; margin-bottom: 32px; }
.headline-section h1 { font-size: clamp(26px, 3.8vw, 36px); margin-bottom: 14px; color: var(--ink); }
.headline-section p.subhead { font-size: 16px; max-width: 62ch; margin: 0 auto; color: var(--ink-soft); }

.upsell-card { background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 32px; box-shadow: 0 20px 50px -25px rgba(19,42,44,.12); margin-bottom: 36px; }
@media(max-width:600px) { .upsell-card { padding: 24px 18px; } }

.pitch-text { font-size: 15px; margin-bottom: 28px; display: grid; gap: 16px; }
.benefits-list-upsell { list-style: none; padding: 0; margin: 0 0 32px 0; display: grid; gap: 16px; }
.benefits-list-upsell li { display: flex; gap: 14px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; color: var(--ink); }
.benefits-list-upsell li .check { color: var(--teal); font-weight: 700; font-size: 18px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.benefits-list-upsell strong { color: var(--ink); }

.warning-box { background: rgba(240, 105, 63, 0.08); border-left: 4px solid var(--coral); padding: 16px 20px; border-radius: 0 4px 4px 0; font-size: 13.5px; color: var(--ink); margin-bottom: 28px; line-height: 1.5; }
.warning-box strong { color: var(--coral); }

.cta-wrapper { text-align: center; margin-bottom: 36px; }
.btn-upsell { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; padding: 18px 24px; background: var(--coral); color: #ffffff; border-radius: var(--radius); text-decoration: none; border: none; cursor: pointer; box-shadow: 0 10px 25px rgba(240,105,63,.3); transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease; }
.btn-upsell:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(240,105,63,.4); background: #e0582e; }
.btn-upsell .main-text { font-family: 'IBM Plex Sans', sans-serif; font-size: clamp(17px, 2.4vw, 20px); font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.btn-upsell .sub-text { font-family: 'IBM Plex Mono', monospace; font-size: 13px; opacity: 0.92; margin-top: 4px; font-weight: 400; }

.timer-section { display: flex; justify-content: center; align-items: center; gap: 18px; margin-bottom: 28px; }
.timer-circle-wrap { text-align: center; }
.timer-circle { width: 70px; height: 70px; border-radius: 50%; border: 3px solid var(--teal); display: flex; align-items: center; justify-content: center; font-family: 'IBM Plex Mono', monospace; font-size: 24px; font-weight: 700; color: var(--teal-deep); background: var(--paper-raised); box-shadow: 0 4px 12px rgba(14,110,99,0.1); }
.timer-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-top: 6px; font-weight: 600; }

.decline-link-wrap { text-align: center; margin-top: 20px; }
.decline-link { color: var(--ink-soft); font-size: 13px; text-decoration: underline; opacity: 0.75; transition: opacity 0.2s ease, color 0.2s ease; display: inline-block; max-width: 55ch; line-height: 1.5; }
.decline-link:hover { opacity: 1; color: var(--coral); }


/* ========================================================================= */
/* ==================== SPEZIFISCHES MARKTBRIEF (OPTIN) CSS ================ */
/* ========================================================================= */

.squeeze-main { flex: 1; padding: 64px 0 80px; display: flex; align-items: center; }
.squeeze-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
@media(max-width:860px) { .squeeze-grid { grid-template-columns: 1fr; gap: 48px; } }
 
.text-col h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 20px; }
.text-col h1 em { font-style: normal; color: var(--teal); }
.text-col p.lead { font-size: 17px; max-width: 46ch; margin-bottom: 32px; }

.optin-card-sq { background: var(--paper-raised); border: 1px solid var(--line); border-radius: 8px; padding: 40px 32px; box-shadow: 0 30px 60px -30px rgba(19,42,44,.15); }
@media(max-width:480px) { .optin-card-sq { padding: 32px 24px; } }
 
.optin-card-sq h3 { font-size: 24px; margin-bottom: 12px; text-align: center; }
.optin-card-sq p.sub { font-size: 14px; text-align: center; margin-bottom: 24px; color: var(--ink-soft); }


/* ========================================================================= */
/* ===================== SPEZIFISCHES DANKE (KAUF) CSS ===================== */
/* ========================================================================= */

.danke-main { flex: 1; padding: 60px 0 80px; }
.thankyou-card { background: var(--paper-raised); border: 1px solid var(--line); border-radius: 8px; padding: 48px 40px; box-shadow: 0 30px 60px -30px rgba(19,42,44,.15); text-align: center; position: relative; }
@media(max-width:600px) { .thankyou-card { padding: 32px 20px; } }

.status-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(14,110,99,0.1); color: var(--teal-deep); border: 1px solid var(--teal); padding: 6px 16px; border-radius: 30px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 600; text-transform: uppercase; margin-bottom: 24px; }
.status-badge::before { content: "✓"; font-weight: bold; }

.thankyou-card h1 { font-size: clamp(28px,4vw,38px); margin-bottom: 16px; }
.thankyou-card p.lead { font-size: 17px; max-width: 56ch; margin: 0 auto 36px; color: var(--ink-soft); }

.next-steps { text-align: left; border-top: 1px dashed var(--line); padding-top: 36px; }
.next-steps h2 { font-size: 22px; margin-bottom: 24px; text-align: center; }
.steps-list { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.step-item { background: var(--paper); padding: 24px 20px; border: 1px solid var(--line); border-radius: 6px; }
.step-item .num { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--coral); font-weight: 600; margin-bottom: 8px; display: block; }
.step-item h4 { margin: 0 0 8px; font-size: 16px; font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; color: var(--ink); }
.step-item p { font-size: 14px; line-height: 1.5; }
.step-item a { color: var(--teal); font-weight: 600; text-decoration: none; }
.step-item a:hover { text-decoration: underline; }
.msg-box { background: #fff; border: 1px solid var(--line); padding: 10px 14px; border-radius: 4px; font-size: 13.5px; margin-top: 10px; font-family: 'IBM Plex Mono', monospace; color: var(--ink); }

.info-box { background: var(--sand); border-left: 4px solid var(--teal); padding: 20px 24px; border-radius: 0 4px 4px 0; text-align: left; margin-top: 40px; display: flex; gap: 16px; align-items: flex-start; }
.info-box-icon { font-size: 24px; line-height: 1; flex-shrink: 0; }
.info-box h3 { font-size: 16px; margin-bottom: 4px; font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; }
.info-box p { font-size: 14px; }

.broker-card { background: #fff; border: 2px solid var(--teal); border-radius: 8px; padding: 32px; margin-top: 48px; box-shadow: 0 15px 35px rgba(14,110,99,0.1); display: flex; gap: 32px; align-items: center; text-align: left; }
@media(max-width: 650px) {
  .broker-card { flex-direction: column; text-align: center; gap: 20px; padding: 24px; }
  .broker-card .eyebrow { justify-content: center; }
}
.broker-card .b-image { flex-shrink: 0; width: 100px; height: 100px; background: var(--sand); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 42px; }
.broker-card h3 { font-size: 22px; margin-bottom: 12px; }
.broker-card p { font-size: 14.5px; margin-bottom: 20px; }


/* ========================================================================= */
/* ================= SPEZIFISCHES MARKTBRIEF-DANKE CSS ===================== */
/* ========================================================================= */

.danke-mb-main { flex: 1; padding: 60px 0 80px; display: flex; align-items: center; }

.thankyou-card-mb { background: var(--paper-raised); border: 1px solid var(--line); border-radius: 8px; padding: 48px 40px; box-shadow: 0 30px 60px -30px rgba(19,42,44,.15); text-align: center; position: relative; width: 100%; }
@media(max-width:600px) { .thankyou-card-mb { padding: 32px 20px; } }

.thankyou-card-mb h1 { font-size: clamp(28px,4vw,42px); margin-bottom: 16px; }
.thankyou-card-mb p.lead { font-size: 18px; max-width: 54ch; margin: 0 auto 36px; color: var(--ink); font-weight: 500; }

.next-steps-mb { text-align: left; border-top: 1px dashed var(--line); padding-top: 36px; margin-bottom: 40px; }
.next-steps-mb h2 { font-size: 20px; margin-bottom: 24px; text-align: center; }
.steps-list-mb { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step-item-mb { background: var(--paper); padding: 20px; border: 1px solid var(--line); border-radius: 6px; }
.step-item-mb .num { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--coral); font-weight: 600; margin-bottom: 8px; display: block; }
.step-item-mb h4 { margin: 0 0 6px; font-size: 15px; font-family: 'IBM Plex Sans', sans-serif; font-weight: 600; color: var(--ink); }
.step-item-mb p { font-size: 13px; line-height: 1.5; }


/* ========================================================================= */
/* ===================== SPEZIFISCHES CAPTRADER CSS ======================== */
/* ========================================================================= */

.hero-ct { padding: 64px 0 40px; }
.hero-grid-ct { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media(max-width:900px) { .hero-grid-ct { grid-template-columns: 1fr; gap: 40px; } }

.hero-ct h1 { font-size: clamp(32px,4vw,46px); margin-bottom: 20px; }
.hero-ct h1 em { font-style: normal; color: var(--teal); }
.hero-ct p.lead { font-size: 16px; margin-bottom: 32px; max-width: 54ch; }

.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 8px; box-shadow: 0 30px 60px -30px rgba(19,42,44,.25); border: 1px solid var(--line); background: #000; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.features-ct { background: var(--paper-raised); border: 1px solid var(--line); }
.sec-head-ct { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.sec-head-ct h2 { font-size: clamp(26px,3vw,36px); }

.check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px 48px; }
.check-item { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--ink); line-height: 1.5; font-weight: 500; }
.check-item::before { content: "✓"; color: var(--teal); font-weight: 700; flex-shrink: 0; font-size: 18px; margin-top: 1px; }

.bottom-cta { padding: 64px 0; text-align: center; }
.bottom-cta .btn { width: 100%; max-width: 400px; }


/* ========================================================================= */
/* ===================== SPEZIFISCHES AFFILIATE CSS ======================== */
/* ========================================================================= */

.hero-aff { padding: 88px 0 60px; text-align: center; }
.hero-inner-aff { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.hero-list-aff { list-style: none; padding: 0; margin: 0 0 40px 0; display: inline-grid; gap: 12px; text-align: left; }
.hero-list-aff li { display: flex; gap: 12px; font-size: 16px; color: var(--ink); align-items: flex-start; line-height: 1.5; font-weight: 500; }
.hero-list-aff li::before { content: "✓"; color: var(--teal); font-weight: 700; flex-shrink: 0; font-size: 18px; margin-top: 1px; }

.trust-aff { font-family: 'IBM Plex Mono',monospace; font-size: 13px; color: var(--ink-soft); text-transform: uppercase; font-weight: 600; letter-spacing: 0.05em; }

.info-section { background: var(--paper); }
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 64px; }
@media(max-width:860px) { .info-grid { grid-template-columns: 1fr; gap: 24px; } }
 
.info-card { background: var(--paper-raised); padding: 40px 32px; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 20px 40px -20px rgba(19,42,44,.1); }
.info-card h3 { font-size: 22px; margin-bottom: 16px; color: var(--ink); border-bottom: 1px dashed var(--line); padding-bottom: 16px; }
.info-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.info-card li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; align-items: flex-start; }
.info-card li::before { content: "•"; color: var(--coral); font-weight: 700; flex-shrink: 0; font-size: 18px; line-height: 1; }
.info-card p { font-size: 14.5px; margin-top: 16px; font-weight: 500; color: var(--ink); }

.steps-aff { display: flex; flex-direction: column; max-width: 800px; margin: 0 auto; }
.msg-box-aff { background: var(--sand); padding: 14px 18px; border-radius: 4px; font-size: 14px; margin: 14px 0; font-family: 'IBM Plex Mono', monospace; color: var(--teal-deep); font-weight: 600; word-break: break-all; border: 1px solid var(--line); }

.cta-band-aff { background: var(--teal); color: #fff; text-align: center; padding: 80px 0; }
.cta-band-aff h2 { color: #fff; font-size: clamp(28px,4vw,42px); }
.cta-band-aff p { color: #DDEDE9; margin-top: 14px; margin-bottom: 32px; font-size: 16px; }
.btn-outline-aff { border-color: #fff; color: #fff; padding: 16px 32px; font-size: 16px; }
.btn-outline-aff:hover { background: #fff; color: var(--teal-deep); }
	  
/* ========================================================================= */
/* ======================== RECHTSTEXTE (LEGAL) CSS ======================== */
/* ========================================================================= */
.legal-main { padding: 80px 0; }
.legal-card { background: var(--paper-raised); border: 1px solid var(--line); border-radius: 8px; padding: 48px 56px; max-width: 860px; margin: 0 auto; box-shadow: 0 20px 40px -20px rgba(19,42,44,.05); }
@media(max-width:600px) { .legal-card { padding: 32px 24px; } }
.legal-card h1 { font-size: clamp(28px, 4vw, 36px); margin-bottom: 24px; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
.legal-card h2 { font-size: 22px; margin-top: 32px; margin-bottom: 12px; }
.legal-card h3 { font-size: 18px; margin-top: 24px; margin-bottom: 8px; }
.legal-card p { margin-bottom: 16px; font-size: 15px; color: var(--ink-soft); }
.legal-card a { color: var(--teal); text-decoration: underline; }
.legal-card a:hover { color: var(--coral); }
.legal-card ul { margin-bottom: 16px; padding-left: 20px; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }