/* DSGVO-Hinweis: Keine externen Google Fonts. Es wird eine lokale System-Font-Stack verwendet. */
:root {
  --bg: #ffffff;
  --bg-light: #f7f7f8;
  --bg-dark: #0d0d0d;
  --text: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #717171;
  --red: #c41e1e;
  --red-light: #fef2f2;
  --red-hover: #a51818;
  --red-glow: rgba(196,30,30,0.08);
  --green: #16a34a;
  --green-light: #f0fdf4;
  --border: #e5e5e5;
  --border-light: #f0f0f0;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --max-width: 1180px;
  --section-pad: 100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  min-width: 280px;
  box-shadow: var(--shadow-md);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.dropdown-menu a:hover { background: var(--bg-light); color: var(--text); }

.nav-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-right: 16px;
}
.nav-contact strong { color: var(--text); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn-cta:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196,30,30,0.2);
}
.btn-cta-outline {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-cta-outline:hover {
  background: var(--bg-light);
  border-color: var(--text-light);
  box-shadow: var(--shadow-sm);
}

.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-left { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-light);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--red); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 500px;
}
.hero-small {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}
.about-portrait {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  display: block;
}
.hero-visual {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/3;
  border-radius: 20px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--red-glow) 0%, transparent 50%);
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--bg-dark);
  color: var(--white);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-item .stat-num span { color: var(--red); }
.stat-item .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  font-weight: 500;
}

/* ─── SECTIONS ─── */
section { padding: var(--section-pad) 0; }
.section-alt { background: var(--bg-light); }

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--text);
  max-width: 680px;
  margin-bottom: 20px;
}
.section-title-center { text-align: center; margin-left: auto; margin-right: auto; }

.section-text {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.7;
}
.section-text-center { text-align: center; margin-left: auto; margin-right: auto; }

/* ─── CARDS ─── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
}
.card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── PROBLEM ─── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

/* ─── SOLUTION ─── */
.solution-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 40px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}
.step-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--red-light);
  line-height: 1;
  margin-bottom: 12px;
}
.step-card:hover .step-num { color: var(--red); }
.step-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}
.step-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ─── QUOTE ─── */
.quote-block {
  background: var(--bg-dark);
  border-radius: var(--radius);
  padding: 40px 48px;
  margin: 40px 0;
}
.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  line-height: 1.4;
}
.quote-block p .q-mark { color: var(--red); }

/* ─── DIFF ─── */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.diff-col {
  border-radius: var(--radius);
  padding: 36px;
}
.diff-col.bad {
  background: var(--red-light);
  border: 1px solid rgba(196,30,30,0.15);
}
.diff-col.good {
  background: var(--green-light);
  border: 1px solid rgba(22,163,74,0.15);
}
.diff-col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
}
.diff-col.bad h3 { color: var(--red); }
.diff-col.good h3 { color: var(--green); }
.diff-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.diff-col ul li {
  font-size: 0.92rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.diff-col.bad ul li::before { content: '✕'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.diff-col.good ul li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ─── SERVICES ─── */
.service-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 100%);
  border-radius: 20px;
  padding: 48px 52px;
  margin-top: 48px;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(196,30,30,0.2) 0%, transparent 70%);
}
.service-hero h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}
.service-hero > p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 600px;
  position: relative;
}
.service-hero ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
  position: relative;
}
.service-hero ul li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  display: flex; align-items: center; gap: 10px;
}
.service-hero ul li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.services-sub-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-top: 32px;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}
.services-sub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-sub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}
.service-sub-card:hover { border-color: var(--red); box-shadow: var(--shadow-sm); }
.service-sub-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-sub-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-sub-card a {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}
.service-sub-card a:hover { text-decoration: underline; }

/* ─── TIMELINE ─── */
.timeline {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 32px; left: 32px; right: 32px;
  height: 2px;
  background: var(--border);
}

.tl-step {
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.tl-dot {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-light);
}
.tl-step:hover .tl-dot {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 0 0 6px var(--red-light);
}
.tl-step h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.tl-step p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.about-photo {
  width: 300px; height: 360px;
  border-radius: 20px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
}
.about-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}
.about-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
  padding: 12px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}
.about-point .ap-icon { color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ─── TRANSPARENZ ─── */
.transp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 24px;
}
.transp-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color 0.2s;
}
.transp-item:hover { border-color: var(--green); }
.transp-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── FAIL CARDS ─── */
.fail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

/* ─── FAQ ─── */
.faq-list { margin-top: 48px; max-width: 740px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left;
}
.faq-q h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--text);
}
.faq-q .chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--text-light);
  transition: all 0.3s;
  flex-shrink: 0;
}
.faq-item.open .chevron { background: var(--red); color: var(--white); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }
.faq-a p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* ─── REF ─── */
.ref-placeholder {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  margin-top: 48px;
  background: var(--bg-light);
}
.ref-placeholder p { color: var(--text-light); font-size: 0.95rem; }

/* ─── MODELL ─── */
.model-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.model-cards-three {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 100%);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  margin: var(--section-pad) auto;
  max-width: var(--max-width);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,30,30,0.15) 0%, transparent 70%);
}
.cta-banner .section-title { color: var(--white); margin: 0 auto 32px; }
.cta-buttons {
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-buttons .btn-cta-outline {
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.cta-buttons .btn-cta-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-left .logo { color: var(--white); }
.footer-left p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 4px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact {
  font-size: 0.85rem;
  text-align: right;
}
.footer-contact a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.footer-contact a:hover { color: var(--white); }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  :root { --section-pad: 64px; }
  .nav-links { display: none; }
  .nav-contact { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 24px; gap: 16px;
    box-shadow: var(--shadow-md);
  }
  .nav-dropdown .dropdown-menu {
    position: static; display: block;
    margin-top: 8px; margin-left: 16px;
    border: none; background: none; padding: 0;
    min-width: auto; box-shadow: none;
  }
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .solution-steps, .diff-grid, .services-sub,
  .about-grid, .transp-grid, .fail-grid, .model-cards {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .timeline::before { display: none; }
  .about-photo { width: 100%; height: 250px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-cta { text-align: center; justify-content: center; }
  .service-hero { padding: 32px 24px; }
  .service-hero ul { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; margin-left: 16px; margin-right: 16px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 600px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ─── ANIM ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge, .hero h1, .hero-sub, .hero-small, .hero-buttons {
  animation: fadeUp 0.6s ease-out both;
}
.hero h1 { animation-delay: 0.08s; }
.hero-sub { animation-delay: 0.16s; }
.hero-small { animation-delay: 0.24s; }
.hero-buttons { animation-delay: 0.32s; }

/* ═══ LOGO IMG ═══ */
.logo-img {
  display: inline-flex;
  align-items: center;
  height: 40px;
  text-decoration: none;
}
.logo-img img {
  height: 40px;
  width: auto;
  display: block;
}
.logo-img-footer img {
  height: 36px;
  opacity: 0.95;
}

/* ═══ DIREKT METHODE ═══ */
.direkt-header-block {
  margin-bottom: 56px;
}
.direkt-steps-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 32px;
}
.direkt-step-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease, padding 0.25s ease;
}
.direkt-step-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.direkt-step-row:hover::before { transform: scaleY(1); }
.direkt-step-row:hover {
  background: var(--bg-light);
  padding-left: 16px;
}
.direkt-letter {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--border);
  transition: color 0.25s ease;
  padding-top: 4px;
}
.direkt-step-row:hover .direkt-letter { color: var(--red); }
.direkt-step-body .stage-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}
.direkt-step-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25;
}
.direkt-step-body h3 em {
  font-style: normal;
  color: var(--red);
}
.direkt-step-body p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 640px;
}

/* ═══ CALENDAR SLIDER ═══ */
.cal-section { background: var(--bg-light); }
.cal-demo {
  position: relative;
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  aspect-ratio: 16/10;
  user-select: none;
  border: 1px solid var(--border);
}
.cal-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 64px repeat(5, 1fr);
  grid-template-rows: 44px repeat(8, 1fr);
  background: var(--white);
}
.cal-appts {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.05s linear;
  pointer-events: none;
}
.cal-cell {
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 4px 6px;
  font-size: 0.68rem;
  color: var(--text-light);
  position: relative;
}
.cal-cell.time-label {
  text-align: right;
  padding-right: 8px;
  color: var(--text-light);
  font-size: 0.68rem;
  border-right: 1px solid var(--border);
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cal-cell.day-header {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  color: var(--text);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}
.cal-cell.day-header .day-num {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0;
}
.cal-cell.corner {
  background: var(--bg-light);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cal-appt {
  position: absolute;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 0.68rem;
  line-height: 1.25;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border-left: 3px solid;
}
.cal-appt .appt-time {
  font-weight: 700;
  font-size: 0.65rem;
  margin-bottom: 1px;
  opacity: 0.9;
}
.cal-appt .appt-title {
  font-weight: 600;
}
.cal-appt.red {
  background: #fef2f2;
  border-left-color: var(--red);
  color: var(--red-hover);
}
.cal-appt.green {
  background: #f0fdf4;
  border-left-color: var(--green);
  color: #14532d;
}
.cal-appt.blue {
  background: #eff6ff;
  border-left-color: #3b82f6;
  color: #1e3a8a;
}
.cal-appt.amber {
  background: #fffbeb;
  border-left-color: #f59e0b;
  color: #78350f;
}
.cal-appt.dark {
  background: var(--bg-dark);
  border-left-color: var(--red);
  color: var(--white);
}

/* Slider handle */
.cal-slider-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 3px;
  background: var(--red);
  cursor: ew-resize;
  z-index: 10;
  transition: left 0.05s linear;
}
.cal-slider-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 6px 24px rgba(196,30,30,0.4);
}
.cal-slider-handle::after {
  content: '⇄';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  z-index: 2;
  pointer-events: none;
}
.cal-label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 5;
  box-shadow: var(--shadow-sm);
  pointer-events: none;
}
.cal-label-before {
  left: 16px;
  background: var(--white);
  color: var(--text-light);
  border: 1px solid var(--border);
}
.cal-label-after {
  right: 16px;
  background: var(--red);
  color: var(--white);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cal-demo.is-full .cal-label-after {
  opacity: 1;
  transform: translateX(0);
}
.cal-hint {
  text-align: center;
  margin-top: 24px;
  font-size: 0.88rem;
  color: var(--text-light);
}
.cal-hint strong { color: var(--red); font-weight: 600; }

/* ═══ SOCIAL ICONS ═══ */
.socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.2s;
}
.social-icon:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Mobile adjustments for new sections */
@media (max-width: 900px) {
  .direkt-step-row { grid-template-columns: 56px 1fr; }
  .direkt-letter { font-size: 2.2rem; }
  .cal-demo { aspect-ratio: 4/5; }
  .cal-layer {
    grid-template-columns: 44px repeat(5, 1fr);
    grid-template-rows: 36px repeat(8, 1fr);
  }
  .cal-cell.time-label { font-size: 0.58rem; }
  .cal-cell.day-header { font-size: 0.58rem; }
  .cal-cell.day-header .day-num { font-size: 0.75rem; }
  .cal-appt { font-size: 0.55rem; padding: 3px 4px; }
  .cal-appt .appt-time { font-size: 0.52rem; }
  .cal-slider-handle::before { width: 40px; height: 40px; }
}



/* Static upload additions */
body { margin: 0; }
main { display: block; }
.nav-links.open { display: flex; }
.legal-page { padding: 150px 0 90px; background: var(--bg); }
.legal-page .container { max-width: 920px; }
.legal-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px; box-shadow: var(--shadow-sm); }
.legal-page .section-label { margin-bottom: 14px; }
.legal-page h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; letter-spacing: -0.8px; margin: 0 0 28px; color: var(--text); }
.legal-page h2 { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.3; margin: 32px 0 12px; color: var(--text); }
.legal-page p { color: var(--text-mid); line-height: 1.75; margin: 0 0 12px; font-size: 1rem; }
.legal-page a { color: var(--red); font-weight: 600; }
.legal-page strong { color: var(--text); }
.legal-block { margin-bottom: 24px; }
.legal-muted { color: var(--text-light); font-style: italic; }
.footer-links { flex-wrap: wrap; }
@media (max-width: 900px) {
  .legal-page { padding: 120px 0 64px; }
  .legal-card { padding: 28px 22px; }
}
