/* ===========================
   MBA MEDIA – LANDINGPAGE CSS
   CI: Rot/Schwarz/Weiß (MBA Media)
   =========================== */

:root {
  --red: #e8192c;
  --red-dark: #c0141f;
  --red-light: #ff3347;
  --black: #0d0d0d;
  --dark: #111827;
  --dark-2: #1f2937;
  --dark-3: #374151;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --border: #e5e7eb;
  --bg-light: #f9fafb;
  --bg-dark: #111827;
  --white: #ffffff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,25,44,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.btn-large { padding: 16px 32px; font-size: 16px; border-radius: 10px; }
.btn-full { width: 100%; }

/* ===== SECTION TAGS ===== */
.section-tag {
  display: inline-block;
  background: rgba(232,25,44,0.1);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-tag-light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.highlight { color: var(--red); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  /* iPhone Safe Area – Statusleiste */
  padding-top: max(env(safe-area-inset-top, 0px), 0px);
}

@media (max-width: 768px) {
  .navbar {
    padding-top: max(env(safe-area-inset-top, 44px), 44px);
  }
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.nav-logo {
  height: 36px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { padding: 10px 22px; font-size: 14px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0d 40%, #1f0508 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,25,44,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero-checks {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
}
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-number { font-size: 28px; font-weight: 900; color: var(--white); }
.trust-label { font-size: 13px; color: rgba(255,255,255,0.55); }
.trust-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

/* ===== VIDEO PLACEHOLDER ===== */
.hero-video {
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(232,25,44,0.2) 0%, rgba(30,30,30,0.8) 100%);
  border: 2px dashed rgba(232,25,44,0.5);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.video-placeholder:hover {
  border-color: var(--red);
  background: linear-gradient(135deg, rgba(232,25,44,0.3) 0%, rgba(30,30,30,0.9) 100%);
}
.video-play-btn svg { width: 72px; height: 72px; filter: drop-shadow(0 4px 16px rgba(232,25,44,0.5)); }
.video-placeholder-text {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

/* ===== REFERENZEN HERO (2. BLOCK) ===== */
.references-hero {
  padding: 80px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.ref-hero-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.ref-hero-header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  max-width: 560px;
  margin-top: 8px;
}
.ref-logos-grid-hero {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ref-logo-card {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: all 0.25s;
  min-height: 120px;
}
.ref-logo-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(232,25,44,0.12);
  transform: translateY(-3px);
}
.ref-logo-card img {
  max-height: 52px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}
.ref-logo-card span {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ===== STATS ===== */
.stats {
  padding: 64px 0;
  background: var(--red);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 6px; }
.stat-number { font-size: clamp(28px, 3vw, 42px); font-weight: 900; color: var(--white); line-height: 1; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ===== PROBLEM SECTION ===== */
.problem {
  padding: 100px 0;
  background: var(--bg-light);
}
.problem h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 48px;
  max-width: 700px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}
.problem-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.problem-icon { font-size: 32px; margin-bottom: 12px; }
.problem-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.problem-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.problem-cta { text-align: center; }

/* ===== SOLUTION SECTION ===== */
.solution {
  padding: 100px 0;
  background: var(--dark);
}
.solution .section-tag { background: rgba(232,25,44,0.2); color: #ff6b7a; }
.solution h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 700px;
}
.section-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 56px;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.solution-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.2s;
}
.solution-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,25,44,0.4);
  transform: translateY(-2px);
}
.solution-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(232,25,44,0.2);
  line-height: 1;
  margin-bottom: 8px;
}
.solution-icon { font-size: 28px; margin-bottom: 12px; }
.solution-card h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.solution-card p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ===== USP BANNER ===== */
.usp-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.usp-item:last-child { border-right: none; }
.usp-item:hover { background: rgba(255,255,255,0.04); }
.usp-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.usp-item strong { display: block; color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.usp-item p { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.5; }

/* ===== HOW WE WORK ===== */
.how-we-work {
  padding: 100px 0;
  background: var(--bg-light);
}
.how-we-work h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 700px;
}
.how-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 56px;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}
.how-step {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: all 0.2s;
}
.how-step:hover {
  border-color: rgba(232,25,44,0.3);
  box-shadow: var(--shadow);
}
.how-step-highlight {
  background: linear-gradient(135deg, #fff5f6 0%, #fff 100%);
  border-color: rgba(232,25,44,0.25);
  border-width: 2px;
}
.how-step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.how-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(232,25,44,0.15);
  line-height: 1;
}
.how-badge {
  display: inline-block;
  background: rgba(232,25,44,0.1);
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.how-badge-red {
  background: var(--red);
  color: white;
}
.how-step h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.how-step p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 700px;
}
.how-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.how-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-2);
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}
.how-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
}
.how-connector {
  display: flex;
  justify-content: center;
  padding: 4px 0;
}
.how-connector svg { width: 32px; height: 56px; }
.how-cta { text-align: center; }

/* ===== RESULTS / TESTIMONIALS ===== */
.results {
  padding: 100px 0;
  background: var(--white);
}
.results h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 700px;
}
.results .section-sub { color: var(--gray); margin-bottom: 56px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,25,44,0.2);
}
.testimonial-featured {
  background: linear-gradient(135deg, #fff5f6 0%, #fff 100%);
  border-color: rgba(232,25,44,0.2);
  border-width: 2px;
}
.testimonial-quote-icon {
  font-size: 64px;
  line-height: 0.8;
  color: var(--red);
  font-family: Georgia, serif;
  margin-bottom: 12px;
  opacity: 0.25;
}
blockquote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--dark-2);
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
}
blockquote strong { color: var(--dark); font-style: normal; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.author-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.author-info { display: flex; flex-direction: column; gap: 2px; }
.author-info strong { font-size: 15px; font-weight: 700; color: var(--dark); }
.author-info span { font-size: 13px; color: var(--gray); }
.testimonial-results {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.result-badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 100px;
}
.result-number { font-size: 20px; font-weight: 900; color: var(--red); line-height: 1; }
.result-label { font-size: 11px; color: var(--gray); font-weight: 500; }
.results-cta { text-align: center; }

/* ===== WHY MBA ===== */
.why-mba {
  padding: 100px 0;
  background: var(--dark);
}
.why-mba .section-tag { background: rgba(232,25,44,0.2); color: #ff6b7a; }
.why-mba h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 48px;
  max-width: 600px;
}
.compare-table {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.compare-col {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.compare-col-mba {
  background: rgba(232,25,44,0.15);
  color: #ff6b7a;
  border-left: 1px solid rgba(232,25,44,0.2);
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: rgba(255,255,255,0.03); }
.compare-feature {
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}
.compare-val {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}
.compare-val-mba {
  background: rgba(232,25,44,0.08);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  border-left: 1px solid rgba(232,25,44,0.15);
}
.val-yes { color: #4ade80; font-size: 16px; }
.val-no { color: rgba(255,255,255,0.25); font-size: 16px; }

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--bg-light);
}
.faq h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 48px;
  max-width: 600px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item:hover { border-color: rgba(232,25,44,0.3); }
.faq-item[open] { border-color: var(--red); box-shadow: 0 4px 16px rgba(232,25,44,0.1); }
.faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  user-select: none;
}
.faq-item summary::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--red); flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 24px 20px; font-size: 15px; color: var(--gray); line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0d 40%, #1f0508 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,25,44,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cta-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 28px;
}
.cta-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.cta-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
}
.cta-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.cta-avatars {
  display: flex;
  margin-right: 4px;
}
.cta-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(255,255,255,0.3);
  margin-left: -8px;
}
.cta-avatars img:first-child { margin-left: 0; }
.cta-social-proof p { font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 500; }
.cta-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.cta-form h3 { font-size: 20px; font-weight: 700; margin-bottom: 28px; color: var(--dark); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--dark-2); margin-bottom: 6px; }
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,25,44,0.1);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-disclaimer { text-align: center; font-size: 12px; color: var(--gray-light); margin-top: 12px; line-height: 1.5; }

/* ===== FOOTER ===== */
.footer { background: var(--black); padding: 48px 0 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 32px; width: auto; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 260px; }
.footer-links { display: flex; gap: 24px; align-items: center; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding: 16px 24px; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-video { max-width: 600px; margin: 0 auto; width: 100%; }
  .solution-grid { grid-template-columns: 1fr; }
  .usp-banner { grid-template-columns: repeat(2, 1fr); }
  .usp-item:nth-child(2) { border-right: none; }
  .usp-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }
  .usp-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); border-right: none; }
  .ref-logos-grid-hero { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .compare-header, .compare-row { grid-template-columns: 1.5fr 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 60px 0 80px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .ref-logos-grid-hero { grid-template-columns: repeat(2, 1fr); }
  .ref-hero-header { flex-direction: column; align-items: flex-start; }
  .usp-banner { grid-template-columns: 1fr; }
  .usp-item { border-right: none !important; border-top: 1px solid rgba(255,255,255,0.08) !important; }
  .usp-item:first-child { border-top: none !important; }
  .how-step { padding: 28px; }
  .compare-header, .compare-row { grid-template-columns: 1.5fr 0.8fr 1.2fr; }
  .compare-feature, .compare-val, .compare-col { padding: 12px 16px; font-size: 13px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-cta-group { flex-direction: column; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 16px; }
  .trust-divider { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .ref-logos-grid-hero { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cta-form { padding: 24px; }
  .compare-header { display: none; }
  .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-feature { grid-column: 1 / -1; background: rgba(255,255,255,0.03); font-weight: 700; }
}

/* ===== FUNNEL ===== */
.funnel-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0d 40%, #1f0508 100%);
  position: relative;
  overflow: hidden;
}
.funnel-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,25,44,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.funnel-wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.funnel-header {
  text-align: center;
  margin-bottom: 40px;
}
.funnel-header h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.funnel-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Progress */
.funnel-progress {
  margin-bottom: 36px;
}
.funnel-progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 12px;
}
.funnel-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  border-radius: 100px;
  transition: width 0.4s ease;
}
.funnel-progress-steps {
  display: flex;
  justify-content: space-between;
}
.funnel-step-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.funnel-step-label.active {
  color: var(--red);
}
.funnel-step-label.done {
  color: rgba(255,255,255,0.6);
}

/* Step container */
.funnel-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  animation: fadeInUp 0.35s ease;
}
.funnel-step.hidden { display: none; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.funnel-question {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.funnel-hint {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  font-weight: 500;
}

/* Options grid */
.funnel-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.funnel-option {
  cursor: pointer;
  display: block;
}
.funnel-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.funnel-option-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: all 0.2s;
  user-select: none;
}
.funnel-option-inner:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(232,25,44,0.4);
}
.funnel-option input:checked + .funnel-option-inner {
  background: rgba(232,25,44,0.15);
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,25,44,0.15);
}
.funnel-option-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}
.funnel-option-text {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}
.funnel-option input:checked + .funnel-option-inner .funnel-option-text {
  color: var(--white);
}

/* Nav buttons */
.funnel-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
}
.btn-ghost-dark {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1.5px solid rgba(255,255,255,0.15);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost-dark:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
}
.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Step 4 – contact form */
.funnel-success-header {
  text-align: center;
  margin-bottom: 32px;
}
.funnel-check-icon {
  width: 56px;
  height: 56px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
}
.funnel-check-big {
  width: 72px;
  height: 72px;
  font-size: 36px;
  background: transparent;
  color: var(--red);
}
.funnel-success-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.funnel-success-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}
.funnel-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.funnel-form .form-group { margin-bottom: 0; }
.funnel-form label { color: rgba(255,255,255,0.7); }
.funnel-form input {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.funnel-form input::placeholder { color: rgba(255,255,255,0.3); }
.funnel-form input:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(232,25,44,0.15);
}
.funnel-form .btn-full { margin-top: 4px; }

/* Step 5 – thank you */
.funnel-thankyou {
  text-align: center;
  padding: 20px 0;
}
.funnel-thankyou h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.funnel-thankyou p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 32px;
}
.funnel-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* Funnel nav link in navbar */
.nav-links a[href="#funnel"] { color: #ff6b7a; }

/* Responsive */
@media (max-width: 600px) {
  .funnel-options { grid-template-columns: 1fr; }
  .funnel-form-grid { grid-template-columns: 1fr; }
  .funnel-step { padding: 24px 20px; }
  .funnel-nav { justify-content: space-between; }
}

/* ===== LOGO OPTIMIERUNGEN ===== */
.ref-logo-card img {
  max-height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  /* Logos mit weißem Hintergrund auf hellem Karten-Hintergrund gut sichtbar */
}

/* Logos die einen weißen Hintergrund haben – auf der hellen Karte gut sichtbar */
/* Für Logos mit transparentem Hintergrund (eigenstrom, moeller) – kein Anpassungsbedarf */

/* ===== FUNNEL-TOP: Stark hervorgehoben ===== */
.funnel-top {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0508 40%, #200306 100%);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.funnel-top::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(232,25,44,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.funnel-top::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.funnel-top .funnel-wrapper {
  max-width: 820px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(232,25,44,0.25);
  border-radius: 24px;
  padding: 56px 60px;
  box-shadow:
    0 0 0 1px rgba(232,25,44,0.1),
    0 0 60px rgba(232,25,44,0.12),
    0 30px 80px rgba(0,0,0,0.5);
  position: relative;
}
.funnel-top .funnel-wrapper::before {
  content: '🎯 Kostenlose Analyse';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}
.funnel-top .funnel-header {
  text-align: center;
  margin-bottom: 44px;
}
.funnel-top .funnel-header h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.funnel-top .funnel-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
}
.funnel-top .funnel-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(232,25,44,0.2);
  border-radius: 18px;
  padding: 44px;
}
.funnel-top .funnel-option-inner {
  padding: 20px 24px;
  font-size: 16px;
}
.funnel-top .funnel-option-text {
  font-size: 16px;
  font-weight: 700;
}
.funnel-top .funnel-question {
  font-size: 24px;
}
.funnel-top .btn-primary {
  font-size: 17px;
  padding: 18px 40px;
  box-shadow: 0 8px 30px rgba(232,25,44,0.4);
}
@media (max-width: 768px) {
  .funnel-top .funnel-wrapper {
    padding: 40px 24px;
  }
  .funnel-top .funnel-step {
    padding: 28px 20px;
  }
}

/* ===== TEAM SEKTION ===== */
.team-section {
  padding: 100px 0;
  background: var(--dark);
}

.team-section h2 {
  color: var(--white);
}

.team-section .section-sub {
  color: var(--gray);
  max-width: 680px;
  margin: 0 auto 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.team-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.team-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #1a1a1a;
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.team-card:hover .team-photo-wrap img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.team-info {
  padding: 20px 22px 24px;
}

.team-info h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
}

.team-role {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.team-info p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ===== HERO RIGHT (Video + Mini-Funnel) ===== */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.hero-right .video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
}

/* ===== HERO MINI-FUNNEL ===== */
.hero-mini-funnel {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(232,25,44,0.4);
  border-radius: 16px;
  padding: 20px 22px 18px;
  position: relative;
  box-shadow: 0 0 32px rgba(232,25,44,0.15);
}

.hero-funnel-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.hf-step { display: block; }
.hf-step.hidden { display: none !important; }

.hf-question {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.4;
}

.hf-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 14px;
}

.hf-opt {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  user-select: none;
}

.hf-opt:hover {
  border-color: rgba(232,25,44,0.5);
  background: rgba(232,25,44,0.08);
}

.hf-opt input { display: none; }

.hf-opt:has(input:checked) {
  border-color: var(--red);
  background: rgba(232,25,44,0.18);
  color: #fff;
}

.hf-btn {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.hf-btn:hover:not(:disabled) {
  background: #c8111f;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(232,25,44,0.4);
}

.hf-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.hf-btn-ghost {
  background: transparent !important;
  border: 1.5px solid rgba(255,255,255,0.2) !important;
  color: rgba(255,255,255,0.6) !important;
  font-size: 12px;
  padding: 8px 12px;
  width: auto;
  box-shadow: none !important;
}

.hf-btn-submit {
  background: linear-gradient(135deg, var(--red), #c8111f) !important;
  box-shadow: 0 4px 18px rgba(232,25,44,0.4);
  font-size: 14px;
  padding: 13px 16px;
  margin-top: 4px;
}

.hf-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hf-nav .hf-btn { flex: 1; }

.hf-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 10px 12px;
  color: #fff;
  font-size: 13px;
  margin-bottom: 8px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.hf-input:focus {
  outline: none;
  border-color: var(--red);
}

.hf-input::placeholder { color: rgba(255,255,255,0.35); }

.hf-thankyou {
  text-align: center;
  padding: 10px 0;
}

.hf-check { font-size: 36px; margin-bottom: 10px; }

.hf-thankyou h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
}

.hf-thankyou p {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  margin: 0;
}

@media (max-width: 480px) {
  .hf-options { grid-template-columns: 1fr; }
}

/* ===== FOOTER COLUMNS ===== */
.footer-col { display: flex; flex-direction: column; gap: 10px; min-width: 160px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #e8192c; }
.footer-inner { align-items: flex-start !important; }
@media (max-width: 768px) {
  .footer-links { flex-direction: column !important; gap: 32px !important; }
  .footer-col { min-width: unset; }
}

/* ===== MOBILE NAVIGATION (HAMBURGER) ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
  order: 3;
}
.menu-toggle:hover { background: rgba(255,255,255,0.1); }
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-inner { position: relative; }
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #0d0d0d;
    border-bottom: 2px solid var(--red);
    padding: 24px;
    gap: 0;
    z-index: 999;
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }
}

/* ===== MOBILE HERO ===== */
@media (max-width: 768px) {
  .hero {
    padding: 4px 0 32px !important;
    overflow-x: hidden !important;
  }
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .hero-right {
    order: -1 !important;
    gap: 12px !important;
    width: 100% !important;
    min-width: 0 !important;
  }
  .hero-video-wrapper {
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero-video-player {
    width: 100% !important;
    max-height: 56vw !important; /* 16:9 auf Mobile */
    border-radius: 10px !important;
    object-fit: cover !important;
  }
  .hero-video { max-width: 100% !important; }
  .hero h1 { font-size: clamp(24px, 6.5vw, 36px) !important; }
  .hero-sub { font-size: 14px; }
  .hero-cta-group { flex-direction: column; gap: 12px; }
  .hero-cta-group .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-trust { flex-wrap: wrap; gap: 12px; }
  .hero-left { order: 2; }
}

/* ===== MOBILE HERO-MINI-FUNNEL ===== */
@media (max-width: 768px) {
  .hf-box { padding: 20px 16px !important; max-width: 100% !important; }
  .hf-question { font-size: 16px !important; }
  .hf-option-row { padding: 12px 14px !important; gap: 10px !important; }
  .hf-option-icon { font-size: 18px !important; }
  .hf-option-label { font-size: 14px !important; }
  .hf-btn { font-size: 15px !important; padding: 14px 20px !important; }
  .hf-nav-row { flex-direction: column !important; gap: 8px !important; }
  .hf-back { text-align: center !important; }
}

/* ===== MOBILE FUNNEL (NF) ===== */
@media (max-width: 600px) {
  .nf-box { padding: 24px 16px !important; border-radius: 16px !important; }
  .nf-header { margin-bottom: 24px !important; }
  .nf-title { font-size: clamp(18px, 5vw, 24px) !important; }
  .nf-subtitle { font-size: 14px !important; }
  .nf-cards { grid-template-columns: 1fr !important; gap: 10px !important; }
  .nf-cards.nf-cards-2 { grid-template-columns: 1fr !important; }
  .nf-cards.nf-cards-3 { grid-template-columns: 1fr !important; }
  .nf-card { padding: 14px 16px !important; gap: 12px !important; }
  .nf-card-icon { font-size: 28px !important; min-width: 40px !important; }
  .nf-card-label { font-size: 14px !important; }
  .nf-next-btn { font-size: 15px !important; padding: 14px 20px !important; }
  .nf-nav { flex-direction: row !important; justify-content: space-between !important; align-items: center !important; }
  .nf-step-counter { font-size: 12px !important; }
  .nf-progress-bar { margin-bottom: 20px !important; }
  .nf-form-grid { grid-template-columns: 1fr !important; }
  .nf-input, .nf-select { font-size: 16px !important; /* prevents iOS zoom */ }
  .nf-section { padding: 60px 0 !important; }
}

/* ===== MOBILE LOGOS GRID ===== */
@media (max-width: 600px) {
  .ref-logos-grid-hero { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .ref-logo-card { padding: 16px 12px !important; }
  .ref-logo-card img { max-height: 44px !important; }
  .ref-logo-name { font-size: 11px !important; }
}

/* ===== MOBILE TESTIMONIALS ===== */
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .testimonial-card { padding: 24px 20px !important; }
  .testimonial-badges { flex-wrap: wrap !important; gap: 8px !important; }
  .testimonial-badge { font-size: 11px !important; padding: 6px 10px !important; }
}

/* ===== MOBILE STATS ===== */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 0 !important; }
  .stat-item { padding: 24px 16px !important; }
  .stat-number { font-size: clamp(28px, 8vw, 40px) !important; }
  .stat-label { font-size: 12px !important; }
}

/* ===== MOBILE SOLUTION CARDS ===== */
@media (max-width: 600px) {
  .solution-grid { grid-template-columns: 1fr !important; }
  .solution-card { padding: 24px 20px !important; }
}

/* ===== MOBILE PROCESS STEPS ===== */
@media (max-width: 600px) {
  .how-step { padding: 24px 20px !important; }
  .how-step-number { font-size: 36px !important; }
}

/* ===== MOBILE COMPARE TABLE ===== */
@media (max-width: 480px) {
  .compare-section { overflow-x: auto; }
  .compare-header { display: none !important; }
  .compare-row { grid-template-columns: 1fr 1fr !important; }
  .compare-feature { grid-column: 1 / -1 !important; }
}

/* ===== MOBILE TEAM ===== */
@media (max-width: 580px) {
  .team-grid { grid-template-columns: 1fr !important; }
  .team-card-body { padding: 16px !important; }
}

/* ===== MOBILE FOOTER ===== */
@media (max-width: 768px) {
  .footer-inner { flex-direction: column !important; gap: 32px !important; align-items: flex-start !important; }
  .footer-links { flex-direction: column !important; gap: 24px !important; }
  .footer-col { min-width: unset !important; }
  .footer-brand { max-width: 100% !important; }
  .footer-brand p { max-width: 100% !important; }
}

/* ===== MOBILE CTA SECTION ===== */
@media (max-width: 600px) {
  .cta-inner { grid-template-columns: 1fr !important; gap: 32px !important; }
  .cta-form { padding: 24px 16px !important; }
  .cta-form-grid { grid-template-columns: 1fr !important; }
  .cta-form input, .cta-form select, .cta-form textarea { font-size: 16px !important; }
}

/* ===== MOBILE FAQ ===== */
@media (max-width: 600px) {
  .faq-item summary { font-size: 15px !important; padding: 16px !important; }
  .faq-body { padding: 0 16px 16px !important; font-size: 14px !important; }
}

/* ===== MOBILE PROBLEM SECTION ===== */
@media (max-width: 600px) {
  .problem-grid { grid-template-columns: 1fr !important; }
  .problem-card { padding: 20px !important; }
}

/* ===== MOBILE FUNNEL-TOP ===== */
@media (max-width: 600px) {
  .funnel-top { padding: 60px 0 !important; }
  .funnel-top .funnel-wrapper { padding: 32px 16px !important; border-radius: 16px !important; }
  .funnel-top .funnel-step { padding: 20px 16px !important; }
  .funnel-top .funnel-question { font-size: 18px !important; }
  .funnel-top .funnel-option-inner { padding: 14px 16px !important; font-size: 14px !important; }
  .funnel-top .btn-primary { font-size: 15px !important; padding: 14px 20px !important; }
}

/* ===== GENERAL MOBILE FIXES ===== */
@media (max-width: 768px) {
  .section-title { font-size: clamp(24px, 6vw, 36px) !important; }
  .container { padding: 0 16px !important; }
  section { padding: 60px 0 !important; }
  .usp-banner { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 480px) {
  .usp-banner { grid-template-columns: 1fr !important; }
  .usp-item { border-right: none !important; }
}

/* ===== MOBILE-ONLY HERO HEADLINE ===== */
.mobile-hero-headline {
  display: none;
}
@media (max-width: 768px) {
  .mobile-hero-headline {
    display: block;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--white);
    text-align: center;
    margin-bottom: 16px;
    padding: 0 4px;
  }
}

/* ===== DROPDOWN NAVIGATION ===== */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown .dropbtn {
  display: flex;
  align-items: center;
  gap: 6px;
}
.dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: -20px;
  background-color: var(--white);
  min-width: 480px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 24px;
  z-index: 1000;
  display: flex;
  gap: 32px;
  transform: translateY(10px);
  transition: all 0.2s ease;
  border: 1px solid var(--border);
}
.nav-dropdown:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.dropdown-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dropdown-col strong {
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.dropdown-col a {
  color: var(--gray) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 4px 0;
}
.dropdown-col a:hover {
  color: var(--red) !important;
}

@media (max-width: 768px) {
  .dropdown-content {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border: none;
    padding: 16px 0;
    flex-direction: column;
    gap: 24px;
    display: none;
  }
  .nav-dropdown.active .dropdown-content {
    display: flex;
    visibility: visible;
    opacity: 1;
    transform: none;
  }
}
