/* ============================================================
   BECRO Trading — Redesign-Designsystem (v2)
   Gemeinsame Basis der neu gestalteten Seiten (mentoring.html,
   coaching.html). Selbsttragend: Tokens + Reset + Komponenten —
   bindet NICHT die alte becro.css ein (andere Token-Werte).
   Deckungsgleich mit dem Inline-System der neuen index.html.
   ============================================================ */

:root {
  --navy:        #12305a;
  --navy-deep:   #0e2749;
  --navy-mid:    #1c477f;
  --accent:      #2f6bff;
  --accent-ink:  #2559e6;
  --accent-soft: #eaf0ff;
  --ink:         #0b1524;
  --ink-2:       #48566a;
  --muted:       #656e80;
  --line:        #e7ebf1;
  --off:         #f4f7fb;
  --white:       #ffffff;

  --font-head: 'Manrope', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius:    18px;
  --radius-lg: 24px;
  --radius-sm: 12px;

  --shadow-sm: 0 1px 2px rgba(11,21,36,.04), 0 6px 20px rgba(11,21,36,.05);
  --shadow-md: 0 10px 30px rgba(11,21,36,.09);
  --shadow-lg: 0 24px 60px rgba(11,21,36,.16);

  --max-w:     1200px;
  --section-v: clamp(64px, 8vw, 104px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px;
}
:focus:not(:focus-visible) { outline: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head); color: var(--ink);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.02em;
}
h1, h2 { text-wrap: balance; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }
h3 { font-size: 1.18rem; font-weight: 700; letter-spacing: -0.01em; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }
section { padding: var(--section-v) 0; }
.off { background: var(--off); }

.overline {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-ink); margin-bottom: 1rem;
}
.lead { font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: var(--ink-2); line-height: 1.6; }
p { color: var(--ink-2); max-width: 64ch; }
.section-head { max-width: 62ch; margin-bottom: 2.6rem; }
.section-head h2 { color: var(--ink); }
.section-head .lead { margin-top: 1rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 0.9em 1.6em; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-on-navy { background: #fff; color: var(--navy); }
.btn-on-navy:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.btn-ghost { background: rgba(255,255,255,.10); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ── Announcement ── */
.announce { background: var(--accent-soft); border-bottom: 1px solid var(--line); }
.announce a {
  display: block; text-align: center; padding: 0.58rem 1rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em; color: var(--navy);
}
.announce a:hover .arrow { transform: translateX(3px); }
.announce .arrow { display: inline-block; transition: transform .2s ease; }

/* ── Header ── */
header.site {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
header.site.scrolled { border-bottom-color: var(--line); box-shadow: 0 2px 16px rgba(11,21,36,.06); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 70px; position: relative; }
.brand img { height: 26px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--ink-2); }
.nav-links a:hover { color: var(--accent-ink); }
.nav-links .nav-cta { display: none; }
.nav-actions { display: flex; align-items: center; gap: 0.9rem; }
.nav-cta { padding: 0.62em 1.2em; font-size: 0.88rem; }
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 4px;
  width: 42px; height: 42px; background: none; border: 1px solid var(--line);
  border-radius: 10px; cursor: pointer;
}
.hamburger span { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--ink); margin-inline: auto; }

/* ── Page-Hero (hell, typografisch) ── */
.page-hero { position: relative; overflow: hidden; padding: clamp(52px, 7vw, 92px) 0 clamp(48px, 6vw, 76px); }
.page-hero.on-off { background: var(--off); }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; }
.glow-a { width: 620px; height: 620px; top: -220px; right: -140px;
  background: radial-gradient(circle, rgba(47,107,255,.28), rgba(47,107,255,0) 70%); animation: driftA 22s ease-in-out infinite alternate; }
.glow-b { width: 560px; height: 560px; bottom: -260px; left: -160px;
  background: radial-gradient(circle, rgba(18,48,90,.16), rgba(18,48,90,0) 70%); animation: driftB 26s ease-in-out infinite alternate; }
@keyframes driftA { from { transform: translate(0,0); } to { transform: translate(-50px,40px); } }
@keyframes driftB { from { transform: translate(0,0); } to { transform: translate(60px,-30px); } }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .badge {
  display: inline-flex; align-items: center; gap: 0.55em;
  background: var(--accent-soft); color: var(--navy);
  font-size: 0.8rem; font-weight: 600; padding: 0.5em 0.95em;
  border-radius: 999px; border: 1px solid rgba(47,107,255,.18);
}
.page-hero h1 { margin: 1.3rem 0 0; max-width: 20ch; }
.page-hero .hero-intro { margin-top: 1.4rem; max-width: 62ch; }
.page-hero .hero-intro p { max-width: 62ch; }
.page-hero .hero-intro p + p { margin-top: 0.9rem; }
.page-hero .btn-group { margin-top: 2rem; }

/* ── Kennzahlen-Karten ── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.35rem 1.4rem; box-shadow: var(--shadow-sm); }
.stat .v { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--navy); letter-spacing: -0.02em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat .l { margin-top: 0.5rem; font-size: 0.83rem; color: var(--muted); line-height: 1.4; }

/* ── Generische Karte ── */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d7e0ec; }
.card h3, .card h4 { color: var(--ink); }
.card p { font-size: 0.92rem; color: var(--ink-2); max-width: none; }

/* Split (Text + Sidebar) */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.split-body > * + * { margin-top: 1.15rem; }
.split-body .lead { color: var(--ink); font-weight: 500; }
.split-note { font-size: 0.85rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 0.9rem; margin-top: 0.4rem; max-width: none; }

/* Sidebar-Karte mit Akzent-Oberkante */
.side-card { position: relative; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--navy); border-radius: 4px 4px var(--radius) var(--radius); padding: 1.9rem 1.7rem; box-shadow: var(--shadow-md); }
.side-card h3 { margin-bottom: 1.2rem; }

/* Häkchen-Liste (Themengebiete, Inhalte) */
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 2rem; }
.check-list { display: flex; flex-direction: column; gap: 0.7rem; }
.check-list li, .check-grid li { position: relative; padding-left: 1.75rem; font-size: 0.9rem; color: var(--ink-2); line-height: 1.5; }
.check-list svg, .check-grid svg { position: absolute; left: 0; top: 0.2rem; width: 17px; height: 17px; stroke: var(--accent); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* 2×2-Raster */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.grid-2 .card h4 { font-size: 0.98rem; margin-bottom: 0.55rem; letter-spacing: -0.01em; }

/* Nummerierte Schritte */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.pstep { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.5rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.pstep:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pstep .n { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; line-height: 1; color: var(--accent-soft); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.pstep h4 { font-size: 0.98rem; margin: 0.8rem 0 0.5rem; letter-spacing: -0.01em; color: var(--ink); }
.pstep p { font-size: 0.88rem; color: var(--ink-2); max-width: none; }

/* Phasen (Timeline als Karten) */
.phases { display: flex; flex-direction: column; gap: 1.1rem; }
.phase { display: grid; grid-template-columns: 84px 1fr; gap: 1.6rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.8rem; box-shadow: var(--shadow-sm); align-items: start; transition: transform .2s ease, box-shadow .2s ease; }
.phase:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.phase .p-num { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; line-height: 1; color: var(--accent); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.phase .p-label { display: block; margin-top: 0.5rem; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.phase h3 { color: var(--ink); margin-bottom: 0.5rem; }
.phase p { font-size: 0.92rem; color: var(--ink-2); max-width: 64ch; }
.p-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.p-tag { display: inline-block; font-size: 0.72rem; font-weight: 500; color: var(--accent-ink); background: var(--accent-soft); border-radius: 999px; padding: 0.35em 0.85em; }

/* Übersicht-Liste (nummeriert) */
.overview { display: flex; flex-direction: column; }
.overview-label { display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.overview-item { display: flex; align-items: baseline; gap: 0.9rem; padding: 0.72rem 0; border-bottom: 1px solid var(--line); }
.overview-item:first-of-type { border-top: 1px solid var(--line); }
.overview-num { font-family: var(--font-head); font-weight: 800; font-size: 0.72rem; color: var(--accent); flex-shrink: 0; width: 1.4rem; font-variant-numeric: tabular-nums; }
.overview-text { font-size: 0.88rem; color: var(--ink-2); line-height: 1.4; }

/* Testimonial */
.quote-box { max-width: 760px; margin: 0 auto; text-align: center; }
.quote-box blockquote { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.25rem, 2.2vw, 1.7rem); color: var(--ink); line-height: 1.4; letter-spacing: -0.01em; margin: 0 0 1.6rem; text-wrap: balance; }
.quote-box .q-rule { width: 34px; height: 2px; background: var(--accent); margin: 0 auto 1.1rem; }
.quote-box .q-name { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.quote-box .q-role { display: block; margin-top: 0.2rem; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* FAQ-Accordion */
.qa-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.qa-head { position: sticky; top: 92px; }
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0; text-align: left;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink);
  transition: color .18s ease;
}
.faq-q:hover, .faq-q[aria-expanded="true"] { color: var(--accent-ink); }
.faq-icon { position: relative; flex-shrink: 0; width: 26px; height: 26px; border: 1px solid var(--line); border-radius: 50%; transition: background .2s ease, border-color .2s ease; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; top: 50%; left: 50%; background: var(--accent); border-radius: 1px; transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .25s; }
.faq-icon::before { width: 11px; height: 1.6px; transform: translate(-50%,-50%); }
.faq-icon::after { width: 1.6px; height: 11px; transform: translate(-50%,-50%); }
.faq-q[aria-expanded="true"] .faq-icon { background: var(--accent); border-color: var(--accent); }
.faq-q[aria-expanded="true"] .faq-icon::before, .faq-q[aria-expanded="true"] .faq-icon::after { background: #fff; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: translate(-50%,-50%) scaleY(0); opacity: 0; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .45s cubic-bezier(.22,1,.36,1); }
.faq-a-inner { padding-bottom: 1.5rem; }
.faq-a p { font-size: 0.95rem; color: var(--ink-2); line-height: 1.7; max-width: 68ch; }

/* ── Abschluss-CTA-Panel (Navy-Gradient) ── */
.access-panel {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); color: #fff;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(47,107,255,.4), rgba(47,107,255,0) 55%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: var(--shadow-lg);
  padding: clamp(2.4rem, 5vw, 4rem) clamp(1.6rem, 4vw, 3.5rem);
  text-align: center;
}
.access-panel .overline { color: rgba(255,255,255,.7); }
.access-panel h2 { color: #fff; }
.access-panel p { color: rgba(255,255,255,.82); max-width: 56ch; margin: 1rem auto 0; }
.access-panel .btn-group { justify-content: center; margin-top: 2rem; }
.access-panel .small { margin-top: 1.5rem; font-size: 0.9rem; color: rgba(255,255,255,.66); }
.access-panel .small a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
/* Panel-Variante mit eingebettetem Calendly (zweispaltig) */
.access-panel.with-embed { text-align: left; }
.panel-split { display: grid; grid-template-columns: 1fr 380px; gap: clamp(1.8rem, 4vw, 3rem); align-items: center; }
.panel-split .overline { color: rgba(255,255,255,.7); }
.panel-split h2 { color: #fff; }
.panel-split p { color: rgba(255,255,255,.82); margin: 1rem 0 1.6rem; max-width: 46ch; }
.panel-split .btn-group { margin: 0; justify-content: flex-start; }
.calendly-wrap { background: #fff; border-radius: 16px; overflow: hidden; width: 100%; box-shadow: var(--shadow-md); }

/* ── Reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ── Footer (aus neuer index) ── */
footer { background: #0A0A0A; padding: 96px 0 0; }
footer .wrap { max-width: var(--max-w); }
.f-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 56px; padding-bottom: 64px; align-items: start; }
.f-brand img { height: 52px; width: auto; display: block; margin-bottom: 24px; filter: drop-shadow(0 0 8px rgba(255,255,255,0.45)) drop-shadow(0 0 20px rgba(255,255,255,0.2)); }
.f-brand p { font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.6); max-width: 260px; line-height: 1.75; margin: 0 0 24px; }
.f-social { display: flex; gap: 10px; margin-bottom: 22px; align-items: center; }
.f-social a { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.15s, opacity 0.15s; flex-shrink: 0; }
.f-social a:hover { transform: scale(1.08); opacity: 0.9; }
.f-social svg { width: 17px; height: 17px; fill: var(--white); }
.f-social .f-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.f-social .f-yt { background: #FF0000; }
.f-col h4 { font-family: var(--font-body); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-bottom: 20px; }
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 10px; }
.f-col ul li a { font-size: 0.8rem; font-weight: 300; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.f-col ul li a:hover { color: var(--white); text-decoration: none; }
.f-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.f-bottom p { font-size: 0.72rem; font-weight: 300; color: rgba(255,255,255,0.55); margin: 0; }
.f-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.f-legal a { font-size: 0.72rem; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.f-legal a:hover { color: rgba(255,255,255,0.85); text-decoration: none; }
.f-col-cta { display: block; margin-bottom: 20px; background: #1a6fd4; color: var(--white); padding: 12px 24px; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; text-align: center; border-radius: 6px; transition: background 0.15s, transform 0.18s ease; }
.f-col-cta:hover { background: #1558a8; color: var(--white); text-decoration: none; transform: translateY(-2px); }

/* ── Responsive ── */
@media (max-width: 980px) {
  .qa-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .qa-head { position: static; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .panel-split { grid-template-columns: 1fr; }
  .access-panel.with-embed { text-align: center; }
  .panel-split .btn-group { justify-content: center; }
  .panel-split p { max-width: 100%; }
}
@media (max-width: 900px) {
  .nav-links, .nav-actions .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: calc(100% + 1px); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 0.25rem clamp(20px,5vw,40px) 1.25rem;
    box-shadow: 0 12px 24px rgba(11,21,36,.08);
  }
  .nav-links.open a { padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
  .nav-links.open .nav-cta { display: inline-flex; margin-top: 1rem; border-bottom: 0; }
  .split { grid-template-columns: 1fr; gap: 1.8rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .phase { grid-template-columns: 64px 1fr; gap: 1.1rem; padding: 1.5rem; }
  .f-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 620px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .check-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .page-hero .btn-group .btn { width: 100%; }
  .phase { grid-template-columns: 1fr; gap: 0.4rem; }
  .f-grid { grid-template-columns: 1fr; gap: 40px; }
  .f-brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .f-brand img { margin: 0 auto 24px; }
  .f-brand p { text-align: center; max-width: 100%; }
  .f-social { justify-content: center; }
  .f-col { text-align: center; }
  .f-col-cta { margin-left: auto; margin-right: auto; }
  .f-bottom { flex-direction: column; align-items: center; text-align: center; }
  .f-legal { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-glow { animation: none !important; }
  html { scroll-behavior: auto; }
}
