/* =============================================
   Internet SELECT – Apple-Inspired Redesign
   ============================================= */

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

:root {
  --black: #001a24;
  --dark: #002230;
  --dark-2: #00293a;
  --dark-3: #003348;
  --gray-dark: #7a9eac;
  --gray: #98bfce;
  --gray-light: #b8d6e2;
  --gray-lighter: #d6e8f0;
  --white: #f2f7fa;
  --pure-white: #ffffff;
  --accent: #64d2ff;
  --accent-hover: #40c4f7;
  --orange: #fc9126;
  --orange-dark: #e87d15;
  --teal: #007ea4;
  --teal-dark: #004c63;
  --ink: #004c63;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Space Mono', 'SF Mono', monospace;
  --max-w: 980px;
  --max-w-wide: 1200px;
  --nav-h: 52px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  background: #001a24;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: var(--max-w-wide); margin: 0 auto; padding: 0 2rem; }

/* iOS Safari overflow fix */
.page-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Ensure all direct children are max viewport width */
section, .logo-section, .mid-cta, .lead-magnet, footer, .sticky-cta {
  max-width: 100%;
}


/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,26,36,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: var(--nav-h);
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-h);
  max-width: var(--max-w-wide);
}
.nav-logo img {
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--gray-lighter);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--pure-white); }
.cta-nav {
  color: var(--accent) !important;
  font-weight: 500 !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(0,26,36,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 0;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
}


/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

/* Hero on-load animations (not scroll-triggered) */
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.hero-anim {
  opacity: 0;
  animation: heroIn .9s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: var(--d, 0s);
}
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(100,210,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-label {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--pure-white);
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.hero h1 span {
  display: inline;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--gray-light);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  font-weight: 400;
}
.hero-sub strong { color: var(--pure-white); font-weight: 700; }

/* CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 1rem 2.2rem;
  border-radius: 980px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}
.cta-btn:hover {
  background: var(--pure-white);
  color: var(--black);
  transform: scale(1.02);
}
.hero-note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--gray);
}

/* Hero Offer Box */
.hero-offer {
  max-width: 660px;
  margin: 0 auto 2.5rem;
  padding: 1.8rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 2px solid var(--orange);
  border-radius: 12px;
  position: relative;
  text-align: left;
}
.hero-offer-badge {
  position: absolute;
  top: -.7rem;
  left: 1.5rem;
  background: var(--orange);
  color: var(--pure-white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .8rem;
  border-radius: 4px;
}
.hero-offer-text {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.7;
}
.hero-offer-text strong {
  color: var(--pure-white);
  font-weight: 700;
}

/* Vorher/Nachher example in offer box */
.hero-offer-example {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-size: .88rem;
  line-height: 1.65;
}
.offer-before, .offer-after {
  padding: 1rem 1.2rem;
  border-radius: 8px;
  font-style: italic;
  color: var(--gray);
}
.offer-before {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.offer-after {
  background: rgba(100,210,255,0.06);
  border: 1px solid rgba(100,210,255,0.15);
  color: var(--gray-light);
}
.offer-label {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.offer-before .offer-label { color: var(--gray-dark); }
.offer-after .offer-label { color: var(--accent); }

@media (max-width: 600px) {
  .hero-offer-example { grid-template-columns: 1fr; }
}

/* Hero Proof Items */
.hero-proof {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--gray-light);
  font-weight: 500;
}
.proof-check {
  width: 20px;
  height: 20px;
  background: #2d8a4e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .65rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Hero CTA group */
.hero-cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-ghost {
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-dark);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.hero-ghost:hover { color: var(--pure-white); }


/* ===== 6 BEREICHE CARDS ===== */
.bereiche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.bereich-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .4s, background .4s;
}
.bereich-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-color, var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.bereich-card.visible::before {
  transform: scaleX(1);
}
.bereich-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
}
.bereich-card.fade-in:hover {
  transform: translateY(-4px);
}
.bereich-card .bereich-num {
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent-color, var(--accent));
  margin-bottom: 1rem;
  opacity: .8;
}
.bereich-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: .6rem;
  line-height: 1.3;
}
.bereich-card p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.bereich-status {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-color, var(--accent));
  padding: .35rem .8rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  display: inline-block;
}

/* Staggered animation */
.bereich-card.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease var(--delay, 0s), transform .7s ease var(--delay, 0s), border-color .4s, background .4s;
}
.bereich-card.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .bereiche-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1020px) {
  .bereiche-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ===== EMPATHY SECTION ===== */
.empathy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.empathy-text p {
  font-size: 1.05rem;
  color: #4a6d7a;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.empathy-text p strong { color: #001a24; font-weight: 600; }
.empathy-offer {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gray-lighter);
}

.empathy-timeline {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--gray-lighter);
}
.timeline-title {
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.timeline-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-lighter);
  font-size: .95rem;
  color: #3a5e6e;
  line-height: 1.6;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-time {
  display: block;
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: .05em;
  margin-bottom: .2rem;
}

@media (max-width: 768px) {
  .empathy-layout { grid-template-columns: 1fr; gap: 2rem; }
}


/* ===== STATS 3-COL VARIANT ===== */
.stats-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) {
  .stats-grid-3 { grid-template-columns: 1fr; }
}


/* ===== RESULT GRID (BEFORE/AFTER) ===== */
.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}
.result-col-title {
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray-lighter);
}
.result-before { color: var(--gray-dark); }
.result-after { color: #2d8a4e; border-color: #2d8a4e; }
.result-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,26,36,0.06);
  font-size: .95rem;
  line-height: 1.7;
}
.result-item:last-child { border-bottom: none; }
.result-muted { color: var(--gray-dark); }
.result-strong { color: #001a24; font-weight: 500; }

@media (max-width: 768px) {
  .result-grid { grid-template-columns: 1fr; }
}


/* ===== CASE STUDY CARD (SINGLE) ===== */
.case-study-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--pure-white);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 3rem;
  border: 1px solid var(--gray-lighter);
}
.case-study-content {
  padding: 3rem;
}
.case-study-content p {
  font-size: .95rem;
  color: #4a6d7a;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.case-study-quote {
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.case-study-quote::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,210,255,.1), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.case-study-quote blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white);
  text-align: center;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  max-width: 320px;
}
.case-study-quote cite {
  font-style: normal;
  font-size: .85rem;
  color: var(--gray);
  margin-top: 1rem;
  display: block;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .case-study-card { grid-template-columns: 1fr; }
  .case-study-quote { min-height: 200px; }
  .case-study-content { padding: 2rem; }
}


/* ===== CTA OFFER TAGS ===== */
.cta-offer-items {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.cta-offer-tag {
  font-size: .92rem;
  color: var(--gray-light);
  line-height: 1.5;
}


/* ===== LOGO BAR ===== */
.logo-section {
  padding: 5rem 0;
  background: #ffffff;
  border-top: none;
  border-bottom: none;
}
.logo-section .section-eyebrow {
  color: var(--teal);
}
.logo-section .section-headline {
  color: #001a24;
  text-shadow: none;
}
.logo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem 4rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.client-logo {
  height: 55px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: opacity 0.3s, filter 0.3s;
}
.client-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}


/* ===== SECTION COMMON ===== */
.section-dark { background: var(--dark); }
.section-light { background: var(--white); color: var(--black); }
.section-black { background: var(--black); }

.s-pad { padding: 7rem 0; }
.s-pad-lg { padding: 10rem 0; }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 1.2rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.section-light .section-eyebrow {
  color: var(--teal);
  text-shadow: 0 1px 3px rgba(0,26,36,0.06);
}
.section-eyebrow-orange {
  color: var(--orange);
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.section-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.section-light .section-headline {
  color: #001a24;
  text-shadow: 0 1px 4px rgba(0,26,36,0.08);
}

.section-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--gray-light);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.section-light .section-sub { color: #4a6d7a; }


/* ===== STATS GRID ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  text-align: center;
}
.stat-item .stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--pure-white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.section-light .stat-item .stat-num { color: var(--teal-dark); }
.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.5;
}
.stat-item .stat-source {
  font-size: 0.8rem;
  color: var(--gray-dark);
  margin-top: 0.3rem;
  font-style: italic;
}
.section-light .stat-item .stat-label { color: #4a6d7a; }
.section-light .stat-item .stat-source { color: #6a8e9e; }

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}


/* ===== DEMO / PROBLEM ===== */
.demo-block {
  max-width: 700px;
  margin: 3rem auto 0;
  background: var(--dark-2);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.demo-label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1rem;
}
.demo-query {
  font-size: 1.1rem;
  color: var(--gray-lighter);
  font-style: italic;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border-left: 3px solid var(--accent);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.demo-answer {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.7;
}
.demo-answer .miss {
  color: var(--pure-white);
  font-weight: 700;
}


/* ===== PAIN CARDS ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.pain-card {
  background: var(--dark-2);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s, transform 0.3s;
}
.pain-card:hover {
  border-color: rgba(100,210,255,0.25);
  transform: translateY(-2px);
}
.pain-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--pure-white);
}
.pain-card p {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
}


/* ===== CASE STUDIES ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.case-card {
  background: var(--pure-white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s;
}
.case-card:hover { transform: translateY(-3px); }
.case-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.8rem;
}
.case-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.case-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.case-card p {
  font-size: 0.9rem;
  color: #4a6d7a;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.case-metrics {
  display: flex;
  gap: 1.5rem;
}
.case-metric .val {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal-dark);
  display: block;
  line-height: 1;
}
.case-metric .lbl {
  font-size: 0.75rem;
  color: #6a8e9e;
  margin-top: 0.3rem;
  display: block;
}

@media (max-width: 768px) {
  .cases-grid { grid-template-columns: 1fr; }
}


/* ===== STEPS ===== */
.steps-list {
  max-width: 700px;
  margin: 4rem auto 0;
}
.step-row {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.step-row:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}
.step-row h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 0.6rem;
}
.step-row p {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}
.step-meta {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gray-dark);
}
.section-light .step-row { border-color: #d6e8f0; }
.section-light .step-num { color: var(--accent); }
.section-light .step-row h3 { color: #1a3e4e; }
.section-light .step-row p { color: #4a6d7a; }


/* ===== URGENCY ===== */
.urgency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
  text-align: center;
}
.urgency-num {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #fcc066 0%, #fc9126 50%, #e87d15 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.15));
}
.urgency-text {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.6;
}
.urgency-source {
  font-size: 0.8rem;
  color: var(--gray-dark);
  margin-top: 0.4rem;
  font-style: italic;
}

@media (max-width: 600px) {
  .urgency-grid { grid-template-columns: 1fr; }
}


/* ===== ABOUT ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.about-facts { display: flex; flex-direction: column; gap: 1rem; }
.fact-row {
  display: flex;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--gray-lighter);
}
.fact-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6a8e9e;
  min-width: 100px;
  flex-shrink: 0;
}
.fact-value {
  font-size: 0.95rem;
  color: #1a3e4e;
}
.about-prose p {
  font-size: 1rem;
  color: #3a5e6e;
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
}


/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--dark-2);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.testimonial-quote {
  position: absolute;
  top: 1.2rem;
  left: 2rem;
  font-size: 4rem;
  color: var(--orange);
  opacity: 0.5;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card p {
  font-size: 1rem;
  color: var(--gray-lighter);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}
.testimonial-author {
  font-size: 0.85rem;
  color: var(--gray);
}

@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}


/* ===== FAQ ===== */
.faq-list {
  max-width: 700px;
  margin: 3rem auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section-light .faq-item { border-color: var(--gray-lighter); }
.faq-question {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--pure-white);
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: color 0.2s;
}
.section-light .faq-question { color: #1a3e4e; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gray);
  flex-shrink: 0;
  transition: transform 0.3s;
}
details[open] .faq-question::after {
  transform: rotate(45deg);
  color: var(--accent);
}
details[open] .faq-question { color: var(--accent); }
.section-light details[open] .faq-question { color: var(--teal); }
.faq-answer {
  padding: 0 0 2rem 0;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.7;
}
.section-light .faq-answer p { color: #4a6d7a; }


/* ===== LEAD MAGNET ===== */
.lead-magnet {
  text-align: center;
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--teal-dark) 0%, #003344 100%);
}
.lead-magnet h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.lead-magnet .sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.lead-form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.lead-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.9rem 1.3rem;
  border: 1px solid rgba(100,210,255,0.2);
  border-radius: 980px;
  background: rgba(255,255,255,0.08);
  color: var(--pure-white);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.lead-form input::placeholder { color: rgba(255,255,255,0.4); }
.lead-form input:focus { border-color: var(--accent); }
.lead-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 1rem;
}


/* ===== FINAL CTA ===== */
.final-cta {
  text-align: center;
  padding: 8rem 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(100,210,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--pure-white);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.final-cta .sub {
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.final-cta .cta-note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--gray-dark);
}
.trust-checks {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.trust-checks span {
  font-size: 0.85rem;
  color: var(--gray);
}


/* ===== FOOTER ===== */
footer {
  padding: 2rem 0 5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--black);
}
footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray-dark);
}
footer a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover { color: var(--gray-lighter); }


/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: -70px;
  left: 0; right: 0;
  background: rgba(0,26,36,0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0.6rem 0;
  z-index: 99;
  transition: bottom 0.35s ease;
}
.sticky-cta.visible { bottom: 0; }
.sticky-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 2rem;
}
.sticky-text {
  font-size: 0.85rem;
  color: var(--gray-lighter);
}
.sticky-cta .cta-btn,
.sticky-cta .cta-btn-orange {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .sticky-text { display: none; }
  .sticky-inner { justify-content: center; }
}


/* ===== SCROLL ANIMATIONS (Apple-style) ===== */

/* Base: fade up */
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(.22,1,.36,1), transform 1s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scale in – cards, large blocks */
.scale-in {
  opacity: 0;
  transform: scale(.88);
  transition: opacity 1s cubic-bezier(.22,1,.36,1), transform 1s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Slide from left */
.slide-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1s cubic-bezier(.22,1,.36,1), transform 1s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.slide-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1s cubic-bezier(.22,1,.36,1), transform 1s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Blur in – headlines get sharp as you scroll */
.blur-in {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(30px) scale(.96);
  transition: opacity 1.1s cubic-bezier(.22,1,.36,1), filter 1.1s cubic-bezier(.22,1,.36,1), transform 1.1s cubic-bezier(.22,1,.36,1);
  will-change: opacity, filter, transform;
}
.blur-in.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

/* Stagger children – cascading reveal */
.stagger-children > * {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.stagger-children.visible > *:nth-child(1) { transition-delay: .08s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: .18s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: .28s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: .38s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: .48s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: .58s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: .68s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(n+8) { transition-delay: .75s; opacity: 1; transform: translateY(0); }

/* Lift card on scroll */
.lift-in {
  opacity: 0;
  transform: translateY(60px) scale(.95);
  transition: opacity 1s cubic-bezier(.22,1,.36,1), transform 1s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.lift-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in, .scale-in, .slide-left, .slide-right, .blur-in, .lift-in,
  .stagger-children > *, .hero-anim, .bereich-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
}


/* ===== MID CTA ===== */
.mid-cta {
  text-align: center;
  padding: 5rem 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mid-cta p {
  font-size: 1.15rem;
  color: var(--gray-lighter);
  margin-bottom: 1.5rem;
}
.mid-cta p strong { color: var(--pure-white); }


/* ===== GRADIENT HEADLINES ===== */
.grad-blue {
  background: linear-gradient(135deg, #64d2ff 0%, #38b6e6 50%, #007ea4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-orange {
  background: linear-gradient(135deg, #fcc066 0%, #fc9126 50%, #e87d15 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-mixed {
  background: linear-gradient(135deg, #64d2ff 0%, #38b6e6 40%, #fc9126 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-light .grad-blue,
.section-light .grad-orange,
.section-light .grad-mixed {
  /* no filter needed on light */
}

/* ===== ORANGE BUTTON VARIANT ===== */
.cta-btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 1rem 2.2rem;
  border-radius: 980px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}
.cta-btn-orange:hover {
  background: var(--orange-dark);
  transform: scale(1.02);
}


/* ===== MOBILE RESPONSIVE ===== */


/* ===== AUDIT: Mobile optimizations ===== */
@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    line-height: 1.1;
  }
  .hero-sub {
    font-size: .95rem;
  }
  .hero-offer-example {
    grid-template-columns: 1fr;
  }
  .hero-proof {
    gap: .8rem;
  }
}
