/* ============================================================
   SES – Sales Execution System
   Design: Dark Mode Premium, Grift, Navy + Blue accents
   ============================================================ */

/* -- FONTS -------------------------------------------------- */
@font-face {
  font-family: 'Grift';
  src: url('fonts/Grift-Regular.woff2') format('woff2'),
       url('fonts/Grift-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Grift';
  src: url('fonts/Grift-Medium.woff2') format('woff2'),
       url('fonts/Grift-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Grift';
  src: url('fonts/Grift-SemiBold.woff2') format('woff2'),
       url('fonts/Grift-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Grift';
  src: url('fonts/Grift-Bold.woff2') format('woff2'),
       url('fonts/Grift-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Grift';
  src: url('fonts/Grift-ExtraBold.woff2') format('woff2'),
       url('fonts/Grift-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* -- TOKENS ------------------------------------------------- */
:root {
  --bg-deep:        #020617;
  --bg-base:        #0F172A;
  --bg-elevated:    #1E293B;
  --bg-card:        #162032;
  --border:         rgba(255,255,255,0.08);
  --border-strong:  rgba(255,255,255,0.14);

  --text-primary:   #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted:     #64748B;

  --accent-blue:    #0033ff;
  --accent-blue-hi: #4d6fff;
  --accent-gold:    #60A5FA;
  --accent-gold-hi: #60A5FA;
  --accent-glow:    rgba(0,51,255,0.15);

  --cta-bg:         #0033ff;
  --cta-hover:      #0023b1;

  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-xl:      24px;

  --shadow-card:    0 1px 3px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.3);
  --shadow-glow:    0 0 40px rgba(0,51,255,0.12);

  --font:           'Grift', system-ui, sans-serif;
  --nav-h:          72px;

  --ease-out:       cubic-bezier(0.16,1,0.3,1);
}

/* -- RESET -------------------------------------------------- */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; color-scheme:dark; }
body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; height:auto; display:block; }
a { color: inherit; text-decoration: none; }
ul[role="list"] { list-style: none; }
button { cursor:pointer; border:none; background:none; font:inherit; }

/* -- UTILITIES ---------------------------------------------- */
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.text-center { text-align:center; }
.hidden { display:none !important; }

/* -- TYPOGRAPHY --------------------------------------------- */
h1,h2,h3,h4 { line-height:1.15; font-weight:700; letter-spacing:-0.02em; }
h1 { font-size:clamp(2.4rem,5.5vw,4.2rem); }
h2 { font-size:clamp(1.8rem,3.5vw,2.8rem); }
h3 { font-size:clamp(1.1rem,2vw,1.4rem); font-weight:600; }
em { font-style:normal; color:var(--accent-blue-hi); }

/* -- BUTTONS ------------------------------------------------ */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 24px; border-radius:var(--radius-md);
  font-size:0.95rem; font-weight:600; letter-spacing:-0.01em;
  transition:all 200ms var(--ease-out); cursor:pointer;
  white-space:nowrap; border:1px solid transparent;
}
.btn:focus-visible { outline:2px solid var(--accent-blue); outline-offset:3px; }

.btn-primary {
  background:var(--cta-bg); color:#fff; border-color:var(--cta-bg);
}
.btn-primary:hover { background:var(--cta-hover); border-color:var(--cta-hover); transform:translateY(-1px); box-shadow:0 4px 16px rgba(0,51,255,0.4); }
.btn-primary:active { transform:translateY(0); }

.btn-secondary {
  background:rgba(0,51,255,0.1); color:var(--accent-blue-hi); border-color:rgba(0,51,255,0.25);
}
.btn-secondary:hover { background:rgba(0,51,255,0.18); border-color:rgba(0,51,255,0.4); }

.btn-ghost {
  background:transparent; color:var(--text-primary); border-color:var(--border-strong);
}
.btn-ghost:hover { background:var(--bg-elevated); border-color:rgba(255,255,255,0.2); }

.btn-sm { padding:8px 16px; font-size:0.875rem; }
.btn-lg { padding:14px 28px; font-size:1rem; }
.btn-xl { padding:18px 36px; font-size:1.05rem; border-radius:var(--radius-lg); }

/* -- NAV ---------------------------------------------------- */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  height:var(--nav-h);
  background:#ffffff;
  border-bottom:1px solid #e5e7eb;
  transition:background 300ms, box-shadow 300ms;
}
.nav.scrolled { background:#ffffff; box-shadow:0 1px 8px rgba(0,0,0,0.08); }
.nav-inner {
  max-width:1200px; margin:0 auto; padding:0 24px;
  height:100%; display:flex; align-items:center; gap:32px;
}
.nav-logo {
  display:flex; align-items:center; flex-shrink:0;
  text-decoration:none;
}
.nav-logo img { height:72px; width:auto; display:block; }
.logo-mark {
  font-size:1.25rem; font-weight:900; letter-spacing:-0.04em;
  color:#111111;
}
.logo-sub { font-size:0.75rem; font-weight:500; color:#555555; letter-spacing:0.02em; }
.nav-links {
  display:flex; gap:8px; margin-left:auto;
  list-style:none;
}
.nav-links a {
  padding:6px 14px; border-radius:var(--radius-sm);
  font-size:0.9rem; font-weight:500; color:#333333;
  transition:color 150ms, background 150ms;
}
.nav-links a:hover { color:#111111; background:#f3f4f6; }
.nav-actions { display:flex; align-items:center; gap:12px; }

.lang-toggle {
  display:flex; align-items:center; gap:4px;
  padding:6px 10px; border-radius:var(--radius-sm);
  font-size:0.8rem; font-weight:600; letter-spacing:0.03em;
  color:#333333; border:1px solid #d1d5db;
  transition:all 150ms;
}
.lang-toggle:hover { color:#111111; border-color:#9ca3af; }
.lang-toggle .active { color:#111111; }
.lang-divider { opacity:0.4; }

.nav-cta { padding:8px 18px; font-size:0.875rem; }
.nav-toggle {
  display:none; flex-direction:column; gap:5px;
  width:40px; height:40px; align-items:center; justify-content:center;
  border-radius:var(--radius-sm); border:1px solid #d1d5db;
}
.nav-toggle span {
  display:block; width:20px; height:2px;
  background:#111111; border-radius:2px;
  transition:transform 200ms, opacity 200ms;
}
.nav-mobile {
  display:none; overflow:hidden; max-height:0;
  background:#ffffff; border-top:1px solid #e5e7eb;
  transition:max-height 300ms var(--ease-out);
}
.nav-mobile.open { max-height:400px; }
.nav-mobile ul { padding:16px 24px; display:flex; flex-direction:column; gap:8px; }
.nav-mobile a {
  display:block; padding:10px 14px; border-radius:var(--radius-sm);
  font-size:1rem; font-weight:500; color:#333333;
  transition:background 150ms, color 150ms;
}
.nav-mobile a:hover { background:#f3f4f6; color:#111111; }
.nav-mobile .btn-primary { color:#fff; text-align:center; }

/* -- SECTION BASE ------------------------------------------- */
.section { padding:100px 0; }
.section-header { margin-bottom:64px; }
.section-header p { font-size:1.1rem; color:var(--text-secondary); margin-top:16px; max-width:580px; }
.section-header.text-center p { margin-inline:auto; }
.section-tag {
  display:inline-block; margin-bottom:16px;
  font-size:0.8rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--accent-blue); background:rgba(59,130,246,0.1);
  padding:4px 12px; border-radius:100px; border:1px solid rgba(59,130,246,0.2);
}

/* -- HERO --------------------------------------------------- */
.hero {
  position:relative; min-height:100vh;
  display:flex; align-items:center;
  padding:calc(var(--nav-h) + 80px) 0 100px;
  overflow:hidden;
}
.hero-bg-grid {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size:60px 60px;
  mask-image:radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image:radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-accent-1 {
  position:absolute; top:20%; left:-10%; width:600px; height:600px;
  background:radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  pointer-events:none;
}
.hero-accent-2 {
  position:absolute; bottom:10%; right:-5%; width:500px; height:500px;
  background:radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  pointer-events:none;
}
.hero-content { position:relative; max-width:760px; }
.hero-badge {
  display:inline-block; margin-bottom:28px;
  font-size:0.78rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--accent-gold); background:rgba(37,99,235,0.1);
  padding:4px 14px; border-radius:100px; border:1px solid rgba(37,99,235,0.25);
}
.hero-headline { margin-bottom:28px; }
.hero-sub {
  font-size:clamp(1.05rem,1.8vw,1.2rem);
  color:var(--text-secondary); max-width:620px;
  line-height:1.7; margin-bottom:40px;
}
.hero-actions { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:32px; }
.hero-provokation {
  font-size:0.95rem; font-style:italic;
  color:var(--text-muted); border-left:2px solid var(--accent-gold);
  padding-left:16px;
}

/* -- STATS BAR ---------------------------------------------- */
.stats-bar {
  background:var(--bg-base); border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:48px 0;
}
.stats-grid {
  display:flex; align-items:center; justify-content:center;
  gap:0; flex-wrap:wrap;
}
.stat-item {
  flex:1 1 200px; display:flex; flex-direction:column;
  align-items:center; text-align:center;
  padding:24px 32px;
}
.stat-number {
  font-size:clamp(2.5rem,5vw,3.8rem); font-weight:900;
  letter-spacing:-0.04em; line-height:1;
  color:var(--text-primary); margin-bottom:8px;
}
.stat-pct { color:var(--accent-gold); }
.stat-label { font-size:0.85rem; color:var(--text-secondary); line-height:1.4; }
.stat-divider {
  width:1px; height:60px; background:var(--border);
  flex-shrink:0;
}
.stats-source {
  text-align:center; margin-top:24px;
  font-size:0.78rem; color:var(--text-muted);
}

/* -- PROBLEM ------------------------------------------------ */
.problem-section { background:var(--bg-deep); }
.problem-section .section-header { margin-bottom:56px; }
.problem-section h2 { max-width:600px; }
.problem-grid {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:20px;
}
.problem-card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:28px;
  transition:border-color 200ms, box-shadow 200ms;
}
.problem-card:hover { border-color:var(--border-strong); box-shadow:var(--shadow-card); }
.problem-icon {
  width:44px; height:44px; border-radius:var(--radius-sm);
  background:rgba(59,130,246,0.1); border:1px solid rgba(59,130,246,0.2);
  display:flex; align-items:center; justify-content:center;
  color:var(--accent-blue); margin-bottom:16px;
}
.problem-card h3 { margin-bottom:10px; font-size:1rem; }
.problem-card p { font-size:0.9rem; color:var(--text-secondary); line-height:1.6; }
.testimonials-grid { grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); }
.testimonials-grid .problem-card { text-align:center; }

/* -- WHY SES ------------------------------------------------ */
.why-section { background:var(--bg-base); }
.why-inner { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.why-text .section-tag { margin-bottom:16px; }
.why-text h2 { margin-bottom:20px; }
.why-text > p { color:var(--text-secondary); font-size:1.05rem; margin-bottom:28px; line-height:1.7; }
.why-list { display:flex; flex-direction:column; gap:12px; }
.why-list li {
  display:flex; align-items:flex-start; gap:12px;
  font-size:0.95rem; color:var(--text-secondary);
}
.why-list li svg { color:var(--accent-blue); flex-shrink:0; margin-top:2px; }

.contrast-card {
  display:grid; grid-template-columns:1fr 1fr;
  border:1px solid var(--border); border-radius:var(--radius-lg);
  overflow:hidden;
}
.contrast-col { padding:24px; }
.contrast-bad { background:rgba(239,68,68,0.04); border-right:1px solid var(--border); }
.contrast-good { background:rgba(59,130,246,0.05); }
.contrast-label {
  font-size:0.75rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  margin-bottom:16px;
}
.contrast-bad .contrast-label { color:#F87171; }
.contrast-good .contrast-label { color:var(--accent-blue-hi); }
.contrast-col ul { display:flex; flex-direction:column; gap:10px; }
.contrast-bad li {
  font-size:0.875rem; color:var(--text-muted);
  padding-left:16px; position:relative;
}
.contrast-bad li::before {
  content:"✕"; position:absolute; left:0;
  color:#F87171; font-size:0.75rem; top:1px;
}
.contrast-good li {
  font-size:0.875rem; color:var(--text-secondary);
  padding-left:16px; position:relative;
}
.contrast-good li::before {
  content:"✓"; position:absolute; left:0;
  color:var(--accent-blue); font-size:0.8rem; top:1px;
}

/* -- EXECUTION CHAIN ---------------------------------------- */
.chain-section { background:var(--bg-deep); }
.chain-section .section-header h2 { margin-bottom:12px; }
.chain-steps {
  display:flex; align-items:stretch; flex-wrap:wrap;
  gap:0; margin:56px 0 40px; border:1px solid var(--border);
  border-radius:var(--radius-lg); overflow:hidden;
}
.chain-step {
  flex:1 1 160px; padding:28px 24px;
  background:var(--bg-card); border-right:1px solid var(--border);
  transition:background 200ms;
}
.chain-step:last-child { border-right:none; }
.chain-step:hover { background:var(--bg-elevated); }
.chain-step-highlight { background:rgba(59,130,246,0.07); }
.chain-step-highlight:hover { background:rgba(59,130,246,0.12); }
.chain-num {
  font-size:0.75rem; font-weight:800; letter-spacing:0.08em;
  color:var(--accent-gold); margin-bottom:12px;
}
.chain-step h3 { font-size:0.95rem; margin-bottom:8px; }
.chain-step p { font-size:0.825rem; color:var(--text-secondary); line-height:1.5; }
.chain-arrow {
  display:flex; align-items:center; justify-content:center;
  padding:0 4px; color:var(--text-muted);
  background:var(--bg-deep); border-right:1px solid var(--border);
  flex-shrink:0;
}

/* -- OFFER OVERVIEW ----------------------------------------- */
.offer-section { background:var(--bg-base); }
.offer-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.offer-card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:32px;
  display:flex; flex-direction:column; gap:16px;
  transition:border-color 200ms, transform 200ms;
}
.offer-card:hover { transform:translateY(-2px); border-color:var(--border-strong); }
.offer-card-featured { border-color:rgba(59,130,246,0.25); background:rgba(15,23,42,0.9); }
.offer-card-featured:hover { border-color:rgba(59,130,246,0.5); }
.offer-badge {
  font-size:0.72rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--accent-blue); background:rgba(59,130,246,0.1);
  padding:3px 10px; border-radius:100px; width:fit-content;
  border:1px solid rgba(59,130,246,0.2);
}
.offer-badge-muted { color:var(--text-muted); background:rgba(255,255,255,0.05); border-color:var(--border); }
.offer-duration {
  font-size:0.8rem; font-weight:600; color:var(--accent-gold);
  letter-spacing:0.04em;
}
.offer-card h3 { font-size:1.2rem; }
.offer-card p { font-size:0.875rem; color:var(--text-secondary); line-height:1.6; flex:1; }
.offer-modules { display:flex; flex-direction:column; gap:8px; flex:1; }
.offer-modules li {
  font-size:0.875rem; color:var(--text-secondary);
  padding:8px 12px; background:rgba(255,255,255,0.03);
  border-radius:var(--radius-sm); border:1px solid var(--border);
}

/* -- ABOUT SHORT -------------------------------------------- */
.about-section { background:var(--bg-deep); }
.about-inner { display:grid; grid-template-columns:1fr 2fr; gap:72px; align-items:start; }
.about-photo {
  width:100%; aspect-ratio:3/4; object-fit:cover; object-position:center top;
  border-radius:var(--radius-lg); border:1px solid var(--border);
  display:block;
}
.about-text h2 { margin-bottom:20px; }
.about-text > p { color:var(--text-secondary); font-size:1rem; line-height:1.7; margin-bottom:16px; }
.about-insight {
  font-size:1.05rem; font-weight:500;
  color:var(--text-primary) !important;
  border-left:3px solid var(--accent-gold); padding-left:16px;
  margin-bottom:32px !important;
}
.about-credentials {
  display:flex; gap:32px; margin-bottom:32px; flex-wrap:wrap;
}
.credential { display:flex; flex-direction:column; gap:4px; }
.credential-value { font-size:1.8rem; font-weight:900; color:var(--accent-gold); line-height:1; }
.credential-label { font-size:0.8rem; color:var(--text-secondary); max-width:120px; line-height:1.3; }

/* -- FINAL CTA ---------------------------------------------- */
.cta-section {
  position:relative; overflow:hidden;
  background:var(--bg-base); border-top:1px solid var(--border);
  padding:120px 0;
}
.cta-section::before {
  content:""; position:absolute; top:-50%; left:50%; transform:translateX(-50%);
  width:800px; height:800px;
  background:radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 70%);
  pointer-events:none;
}
.cta-inner {
  position:relative; max-width:640px; margin:0 auto; text-align:center;
}
.cta-inner .section-tag { margin-bottom:20px; }
.cta-inner h2 { margin-bottom:20px; }
.cta-inner > p {
  font-size:1.05rem; color:var(--text-secondary);
  line-height:1.7; margin-bottom:40px;
}
.cta-sub {
  margin-top:16px; font-size:0.82rem; color:var(--text-muted);
}

/* -- FOOTER ------------------------------------------------- */
.footer { background:var(--bg-deep); border-top:1px solid var(--border); padding:48px 0 32px; }
.footer-inner { display:flex; align-items:center; flex-wrap:wrap; gap:24px; justify-content:space-between; }
.footer-brand { display:flex; align-items:center; gap:12px; }
.footer-brand .logo-mark { font-size:1.1rem; }
.footer-brand p { font-size:0.85rem; color:var(--text-muted); }
.footer-nav { display:flex; gap:24px; }
.footer-nav a { font-size:0.875rem; color:var(--text-secondary); transition:color 150ms; }
.footer-nav a:hover { color:var(--text-primary); }
.footer-copy { font-size:0.8rem; color:var(--text-muted); }
.footer-copy a { color:var(--text-muted); transition:color 150ms; }
.footer-copy a:hover { color:var(--text-secondary); }

/* ============================================================
   PAGE: ANGEBOT
   ============================================================ */
.page-hero {
  padding:calc(var(--nav-h) + 80px) 0 80px;
  background:var(--bg-deep); border-bottom:1px solid var(--border);
}
.page-hero .section-tag { margin-bottom:16px; }
.page-hero h1 { margin-bottom:20px; max-width:700px; }
.page-hero p { font-size:1.1rem; color:var(--text-secondary); max-width:580px; line-height:1.7; }

/* Angebot cards */
.angebot-section { background:var(--bg-deep); padding:80px 0; }
.angebot-grid { display:grid; gap:32px; }
.angebot-card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--radius-xl); padding:40px;
  display:grid; grid-template-columns:1fr 2fr; gap:48px;
  transition:border-color 200ms;
}
.angebot-card:hover { border-color:var(--border-strong); }
.angebot-card-featured { border-color:rgba(59,130,246,0.25); }
.angebot-card-premium { border-color:rgba(37,99,235,0.25); }
.angebot-meta { display:flex; flex-direction:column; gap:12px; }
.angebot-tag {
  font-size:0.72rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  padding:4px 12px; border-radius:100px; width:fit-content;
}
.tag-blue { color:var(--accent-blue); background:rgba(59,130,246,0.1); border:1px solid rgba(59,130,246,0.2); }
.tag-gold { color:var(--accent-gold); background:rgba(37,99,235,0.1); border:1px solid rgba(37,99,235,0.2); }
.tag-muted { color:var(--text-muted); background:rgba(255,255,255,0.05); border:1px solid var(--border); }
.angebot-duration { font-size:2rem; font-weight:900; color:var(--accent-gold); line-height:1; letter-spacing:-0.02em; }
.angebot-duration-label { font-size:0.8rem; color:var(--text-muted); }
.angebot-body h2 { font-size:1.5rem; margin-bottom:12px; }
.angebot-body > p { color:var(--text-secondary); line-height:1.7; margin-bottom:24px; }
.deliverables { display:flex; flex-direction:column; gap:8px; }
.deliverable {
  display:flex; align-items:flex-start; gap:10px;
  font-size:0.875rem; color:var(--text-secondary);
  padding:8px 12px; background:rgba(255,255,255,0.03);
  border-radius:var(--radius-sm); border:1px solid var(--border);
}
.deliverable svg { color:var(--accent-blue); flex-shrink:0; margin-top:1px; }
.deliverable-gold svg { color:var(--accent-gold); }

/* Modules grid */
.modules-section { background:var(--bg-base); padding:80px 0; }
.modules-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:20px; margin-top:48px; }
.module-card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:28px;
  transition:border-color 200ms;
}
.module-card:hover { border-color:var(--border-strong); }
.module-duration { font-size:0.8rem; color:var(--accent-blue); font-weight:600; margin-bottom:8px; }
.module-card h3 { margin-bottom:10px; font-size:1rem; }
.module-card p { font-size:0.875rem; color:var(--text-secondary); line-height:1.6; }

/* Fit section */
.fit-section { background:var(--bg-deep); padding:80px 0; }
.fit-grid { display:grid; grid-template-columns:1fr 1fr; gap:32px; margin-top:48px; }
.fit-col { background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px; }
.fit-col-yes { border-color:rgba(34,197,94,0.2); }
.fit-col-no { border-color:rgba(239,68,68,0.15); }
.fit-col-title { font-size:0.9rem; font-weight:700; margin-bottom:16px; }
.fit-col-yes .fit-col-title { color:#4ADE80; }
.fit-col-no .fit-col-title { color:#F87171; }
.fit-list { display:flex; flex-direction:column; gap:10px; }
.fit-list li { font-size:0.875rem; color:var(--text-secondary); padding-left:20px; position:relative; }
.fit-col-yes .fit-list li::before { content:"✓"; position:absolute; left:0; color:#4ADE80; }
.fit-col-no .fit-list li::before { content:"✕"; position:absolute; left:0; color:#F87171; }

/* ============================================================
   PAGE: ÜBER MICH
   ============================================================ */
.about-page-hero {
  padding:calc(var(--nav-h) + 80px) 0 80px;
  background:var(--bg-deep); border-bottom:1px solid var(--border);
}
.about-page-grid { display:grid; grid-template-columns:320px 1fr; gap:72px; align-items:start; }
.about-image-large {
  border-radius:var(--radius-xl); overflow:hidden;
  border:1px solid var(--border);
}
.about-page-text h1 { margin-bottom:24px; }
.about-page-text .lead {
  font-size:1.15rem; color:var(--text-secondary); line-height:1.75;
  margin-bottom:32px;
}
.timeline { display:flex; flex-direction:column; gap:0; margin:56px 0; }
.timeline-item {
  display:flex; gap:24px; padding-bottom:40px;
  position:relative;
}
.timeline-item::before {
  content:""; position:absolute;
  left:19px; top:40px; bottom:0; width:2px;
  background:var(--border);
}
.timeline-item:last-child::before { display:none; }
.timeline-dot {
  width:40px; height:40px; flex-shrink:0;
  border-radius:50%; background:var(--bg-elevated);
  border:2px solid var(--border-strong);
  display:flex; align-items:center; justify-content:center;
  font-size:0.75rem; font-weight:700; color:var(--accent-gold);
  position:relative; z-index:1;
}
.timeline-content h3 { font-size:1rem; margin-bottom:6px; }
.timeline-content p { font-size:0.875rem; color:var(--text-secondary); line-height:1.6; }
.timeline-year { font-size:0.78rem; color:var(--accent-blue); font-weight:600; margin-bottom:4px; }

.insight-block {
  background:rgba(37,99,235,0.06); border:1px solid rgba(37,99,235,0.2);
  border-radius:var(--radius-lg); padding:32px;
  margin:48px 0;
}
.insight-block blockquote {
  font-size:1.1rem; font-weight:500; color:var(--text-primary);
  line-height:1.65; quotes:none;
}
.insight-block cite {
  display:block; margin-top:12px;
  font-size:0.8rem; color:var(--text-muted); font-style:normal;
}

/* ============================================================
   PAGE: KONTAKT
   ============================================================ */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; padding:80px 0; }
.contact-form-side h2 { margin-bottom:8px; }
.contact-form-side > p { color:var(--text-secondary); margin-bottom:32px; }
.calendly-placeholder {
  background:var(--bg-card); border:1px solid rgba(59,130,246,0.25);
  border-radius:var(--radius-xl); padding:48px 32px;
  text-align:center; margin-bottom:32px;
}
.calendly-placeholder svg { color:var(--accent-blue); margin:0 auto 16px; }
.calendly-placeholder h3 { margin-bottom:8px; }
.calendly-placeholder p { font-size:0.875rem; color:var(--text-secondary); margin-bottom:24px; }
.contact-alt { margin-top:32px; }
.contact-alt h3 { font-size:1rem; margin-bottom:20px; color:var(--text-secondary); }
.contact-detail {
  display:flex; align-items:center; gap:12px;
  padding:14px 16px; background:var(--bg-card);
  border:1px solid var(--border); border-radius:var(--radius-md);
  margin-bottom:12px; font-size:0.9rem;
  transition:border-color 150ms;
}
.contact-detail:hover { border-color:var(--border-strong); }
.contact-detail svg { color:var(--accent-blue); flex-shrink:0; }
.contact-detail a { color:var(--text-primary); }
.contact-detail a:hover { color:var(--accent-blue-hi); }

/* Form */
.form-section h2 { margin-bottom:8px; }
.form-section > p { color:var(--text-secondary); margin-bottom:32px; }
.form { display:flex; flex-direction:column; gap:20px; }
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-group label {
  font-size:0.875rem; font-weight:500; color:var(--text-secondary);
}
.form-group input, .form-group select, .form-group textarea {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--radius-md); padding:12px 16px;
  font:inherit; font-size:0.95rem; color:var(--text-primary);
  transition:border-color 150ms, box-shadow 150ms;
  width:100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color:var(--text-muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline:none; border-color:var(--accent-blue);
  box-shadow:0 0 0 3px rgba(59,130,246,0.12);
}
.form-group textarea { resize:vertical; min-height:120px; }
.form-group select { cursor:pointer; }
.form-group select option { background:var(--bg-base); }
.form-required { color:#F87171; }
.form-submit { align-self:flex-start; }
.form-privacy {
  font-size:0.78rem; color:var(--text-muted); line-height:1.5;
}
.form-privacy a { color:var(--accent-blue); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px) {
  .why-inner { grid-template-columns:1fr; gap:48px; }
  .angebot-card { grid-template-columns:1fr; gap:24px; }
  .about-page-grid { grid-template-columns:1fr; gap:48px; }
  .about-image-large { max-width:320px; aspect-ratio:1; }
  .contact-grid { grid-template-columns:1fr; gap:48px; }
  .fit-grid { grid-template-columns:1fr; }
}

@media (max-width:768px) {
  :root { --nav-h:64px; }
  .section { padding:72px 0; }
  .nav-links { display:none; }
  .nav-cta { display:none; }
  .nav-toggle { display:flex; }
  .nav-mobile { display:block; }
  .logo-sub { display:none; }
  .offer-grid { grid-template-columns:1fr; }
  .chain-steps { flex-direction:column; }
  .chain-arrow { transform:rotate(90deg); padding:8px 0; display: none; }
  .about-inner { grid-template-columns:1fr; gap:40px; }
  .about-image-placeholder { aspect-ratio:16/9; }
  .about-credentials { gap:20px; }
  .stat-divider { display:none; }
  .stats-grid { gap:4px; }
  .stat-item { padding:16px; }
  .footer-inner { flex-direction:column; gap:16px; text-align:center; }
  .footer-nav { flex-wrap:wrap; justify-content:center; gap:16px; }
  .contrast-card { grid-template-columns:1fr; }
  .contrast-bad { border-right:none; border-bottom:1px solid var(--border); }
  .modules-grid { grid-template-columns:1fr; }
}

@media (max-width:480px) {
  .hero-actions { flex-direction:column; }
  .hero-actions .btn { width:100%; justify-content:center; }
  .cta-inner .btn-xl { width:100%; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion:no-preference) {
  .fade-in {
    opacity:0; transform:translateY(20px);
    transition:opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
  }
  .fade-in.visible { opacity:1; transform:translateY(0); }
}

/* Active nav link */
.nav-links a.active, .nav-mobile a.active {
  color:#111111; background:#f3f4f6;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-section { padding-block: var(--section-gap); }
.faq-container { max-width: 780px; }

.faq-category { margin-bottom: 3rem; }
.faq-category-title {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 600;
  font-family: var(--font-base);
  transition: color 200ms;
}
.faq-question:hover { color: var(--accent-blue-hi); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-gold);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  transition: transform 200ms, background 200ms;
}
.faq-item.open .faq-icon {
  background: var(--bg-elevated);
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms var(--ease-out);
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-answer-inner {
  overflow: hidden;
}
.faq-answer-inner p {
  padding-bottom: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}
.faq-answer-inner p a {
  color: var(--accent-blue-hi);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-answer-inner p a:hover { color: var(--accent-gold); }

/* ── Foto & Video Platzhalter ────────────────────────────── */
.photo-placeholder {
  background: var(--bg-elevated);
  border: 1px dashed var(--border-strong);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 16px;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
  min-height: 120px;
}

.video-placeholder {
  background: var(--bg-elevated);
  border: 1px dashed var(--border-strong);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 40px;
  color: var(--text-muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.video-placeholder p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-muted);
}

/* -- IMPRESSUM TABLE ---------------------------------------- */
.impressum-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  line-height: 1.6;
}
.impressum-table th,
.impressum-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  text-align: left;
}
.impressum-table th {
  width: 200px;
  padding-right: 24px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.impressum-table td a {
  color: var(--accent-blue);
  text-decoration: none;
}
.impressum-table td a:hover {
  text-decoration: underline;
}
@media (max-width: 540px) {
  .impressum-table th {
    width: auto;
    white-space: normal;
  }
  .impressum-table th,
  .impressum-table td {
    display: block;
    padding: 8px 0;
    border-bottom: none;
  }
  .impressum-table tr {
    border-bottom: 1px solid var(--border);
    display: block;
    padding: 12px 0;
  }
  .impressum-table th {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 4px;
  }
}

/* -- LEGAL CONTENT (Datenschutz etc.) ----------------------- */
.legal-content {
  max-width: 680px;
}
.legal-content .legal-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.legal-content h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text);
}
.legal-content p,
.legal-content ul,
.legal-content li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dim);
}
.legal-content ul {
  padding-left: 20px;
  margin: 8px 0 0;
}
.legal-content li {
  margin-bottom: 6px;
}
.legal-content a {
  color: var(--accent-blue);
  text-decoration: none;
}
.legal-content a:hover {
  text-decoration: underline;
}
