/* =============================================
   VOGGSMEDIA — Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600;700&display=swap');

:root {
  --red: #ff2600;
  --red-dark: #b81820;
  --red-glow: rgba(255, 38, 0, 0.25);
  --red-glow-soft: rgba(255, 38, 0, 0.12);
  --bg: #080808;
  --bg-2: #0f0f0f;
  --bg-3: #161616;
  --bg-card: #111111;
  --bg-card-hover: #181818;
  --border: rgba(255, 255, 255, 0.07);
  --border-red: rgba(255, 38, 0, 0.3);
  --text: #ffffff;
  --text-2: #a0a0a0;
  --text-3: #606060;
  --green: #22c55e;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1,
h2,
h3,
h4,
h5 {
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}

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

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

.red {
  color: var(--red);
}

.muted {
  color: var(--text-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 30px var(--red-glow);
}

.btn-primary:hover {
  background: #ff3818;
  box-shadow: 0 0 50px rgba(255, 38, 0, 0.5);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* Utility: line break visible only on mobile */
.mobile-only {
  display: none;
}

@media (max-width: 700px) {
  br.mobile-only {
    display: inline;
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255, 38, 0, 0.12);
  color: var(--red);
  border: 1px solid var(--border-red);
}

/* =============================================
   ANNOUNCEMENT BANNER
   ============================================= */
.announcement-bar {
  background: #1a0505;
  border-bottom: 1px solid rgba(255, 38, 0, 0.25);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.marquee-track {
  display: flex;
  animation: marquee 45s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.marquee-item .arrow {
  color: var(--red);
  font-weight: 800;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 99;
  padding: 0 24px;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  padding: 8px 14px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--red);
  background: rgba(255, 38, 0, 0.08);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-toggle:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  padding: 100px 24px 120px;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255, 38, 0, 0.2) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
  }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.proven-expert {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pe-stars {
  display: flex;
  gap: 2px;
}

.pe-stars svg {
  color: #f59e0b;
}

.pe-text {
  font-size: 13px;
  color: var(--text-2);
}

.pe-text strong {
  color: #fff;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tiktok-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
}

.tiktok-badge svg {
  color: #ff2d55;
}

.hero-visual {
  position: relative;
}

.hero-card-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.3s ease;
}

.case-card:hover {
  border-color: var(--border-red);
  box-shadow: 0 0 30px var(--red-glow-soft);
}

.case-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.case-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #ff6b6b);
  display: flex;
  align-items: center;
  justify-content: font;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.case-name {
  font-size: 14px;
  font-weight: 600;
}

.case-handle {
  font-size: 12px;
  color: var(--text-2);
}

.verified {
  color: #1d9bf0;
}

.case-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.kpi-item {
  text-align: center;
}

.kpi-value {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.kpi-change {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  margin: 2px 0;
}

.kpi-label {
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-2);
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  margin-top: 12px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   LEISTUNGEN (SERVICES)
   ============================================= */
.section {
  padding: 100px 24px;
}

.section-alt {
  background: var(--bg-2);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.services-left h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
}

.services-left p {
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
}

.services-accordion {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

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

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s ease;
  user-select: none;
}

.accordion-header:hover {
  color: var(--red);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
  font-size: 14px;
}

.accordion-item.open .accordion-icon {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(45deg);
}

.accordion-body {
  display: none;
  padding: 0 0 18px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.7;
}

.accordion-item.open .accordion-body {
  display: block;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.service-link:hover {
  gap: 10px;
}

/* =============================================
   CASE STUDIES (ERFOLGSGESCHICHTEN)
   ============================================= */
.cases-section {
  padding: 100px 24px;
}

.cases-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.cases-header-row h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
}

.cases-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-full-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.case-full-card:hover {
  border-color: var(--border-red);
  box-shadow: 0 0 40px var(--red-glow-soft);
  transform: translateY(-2px);
}

.case-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}

.case-brand-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.case-brand-name {
  font-size: 16px;
  font-weight: 700;
}

.case-brand-handle {
  font-size: 12px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 4px;
}

.verified-blue {
  color: #1d9bf0;
  font-size: 10px;
}

.case-kpis-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.kpi-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
}

.kpi-card .kpi-value {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.kpi-card .kpi-change {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  margin: 3px 0;
}

.kpi-card .kpi-label {
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.case-tag {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.case-tag-reach {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
}

.case-tag-employer {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}

.case-cta-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* =============================================
   PARTNERS (LOGOS)
   ============================================= */
.partners-section {
  padding: 80px 24px;
  background: var(--bg-2);
}

.partners-title {
  text-align: center;
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logos-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.logo-cell {
  background: var(--bg-2);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  min-height: 90px;
}

.logo-cell:hover {
  background: var(--bg-card);
}

.logo-cell-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.logo-cell-kpi {
  font-size: 10px;
  color: var(--green);
  font-weight: 600;
}

.logo-cell img {
  max-width: 120px;
  max-height: 40px;
  width: auto;
  height: auto;
  filter: brightness(0) invert(0.55);
  transition: filter 0.2s ease;
  display: block;
}

.logo-cell:hover img {
  filter: brightness(0) invert(0.85);
}

.logo-cell-cta {
  position: absolute;
  inset: 0;
  background: rgba(255, 38, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease;
  text-decoration: none;
}

.logo-cell:hover .logo-cell-cta {
  opacity: 1;
}

/* =============================================
   COMPARISON
   ============================================= */
.comparison-section {
  padding: 100px 24px;
}

.comparison-table {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.comp-header {
  display: grid;
  grid-template-columns: 1fr 200px 200px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}

.comp-header-cell {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
}

.comp-header-cell.voggs {
  background: rgba(255, 38, 0, 0.08);
  color: var(--red);
  text-align: center;
  border-left: 1px solid var(--border-red);
  border-right: 1px solid var(--border-red);
}

.comp-header-cell.other {
  color: var(--text-3);
  text-align: center;
}

.comp-row {
  display: grid;
  grid-template-columns: 1fr 200px 200px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.comp-row:last-child {
  border-bottom: none;
}

.comp-row:hover {
  background: var(--bg-3);
}

.comp-feature {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

.comp-cell {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.comp-cell.voggs {
  background: rgba(255, 38, 0, 0.04);
  border-left: 1px solid rgba(255, 38, 0, 0.1);
  border-right: 1px solid rgba(255, 38, 0, 0.1);
}

.check {
  color: var(--green);
}

.cross {
  color: #ef4444;
  font-size: 16px;
}

/* =============================================
   ABOUT / ÜBER UNS
   ============================================= */
.about-section {
  padding: 100px 24px;
  background: var(--bg-2);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-tag {
  margin-bottom: 16px;
}

.about-left h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  margin-bottom: 20px;
}

.about-left p {
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.pillar:hover {
  border-color: var(--border-red);
}

.pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.pillar-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pillar-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-team-photo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-team-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
}

.about-stat-num {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-size: 13px;
  color: var(--text-2);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  padding: 100px 24px;
}

.testimonials-top {
  max-width: 1200px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.award-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.award-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.award-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.award-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--border-red);
  box-shadow: 0 0 30px var(--red-glow-soft);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #374151, #1f2937);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-2);
}

.stars {
  color: #f59e0b;
  font-size: 13px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}

/* =============================================
   VIDEO TESTIMONIALS
   ============================================= */
.video-section {
  padding: 80px 24px;
  background: var(--bg-2);
}

.video-slider {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.video-card {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-3);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: scale(1.02);
  border-color: var(--border-red);
  box-shadow: 0 0 40px var(--red-glow-soft);
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.video-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.video-card:hover .play-btn {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.video-logo {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.video-quote {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-section {
  padding: 100px 24px;
}

.cta-banner {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a0a0a 100%);
  border: 1px solid var(--border-red);
  border-radius: 24px;
  padding: 60px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 38, 0, 0.15), transparent 70%);
  pointer-events: none;
}

.cta-left {
  position: relative;
  z-index: 1;
}

.cta-label {
  margin-bottom: 12px;
}

.cta-banner h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 440px;
}

.cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.team-avatars {
  display: flex;
}

.team-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--bg-2);
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  color: #fff;
}

.team-avatars .team-avatar:first-child {
  margin-left: 0;
}

.cta-right-text {
  font-size: 12px;
  color: var(--text-2);
  text-align: center;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-brand .logo {
  font-size: 20px;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.social-link:hover {
  border-color: var(--red);
  color: var(--red);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-col .contact-text {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
}

.footer-col .contact-text a {
  color: #fff;
  text-decoration: none;
}

.footer-col .contact-text a:hover {
  color: var(--red);
}

.footer-wordmark {
  text-align: center;
  font-size: clamp(40px, 10.5vw, 168px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 40px 0 -22px;
  white-space: nowrap;
  user-select: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-wordmark span {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(180deg, rgba(255, 38, 0, 0.9) 0%, rgba(255, 38, 0, 0.2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* =============================================
   Cookie banner / CMP
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 460px;
  z-index: 99999;
  background: #0c0c0e;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.6);
  padding: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--text-2);
  margin: 0 0 16px;
  line-height: 1.5;
}

.cookie-banner-controls {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner-controls .btn,
.cookie-banner-settings .btn {
  width: 100%;
  justify-content: center;
  padding: 11px 18px;
  font-size: 13px;
  border-radius: 10px;
}

.cookie-banner .btn-cookie-secondary {
  background: var(--bg-card);
  color: #fff;
  border: 1px solid var(--border);
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cookie-banner .btn-cookie-secondary:hover {
  border-color: var(--border-red);
}

.cookie-link {
  background: none;
  border: none;
  color: var(--text-2);
  text-decoration: underline;
  font-size: 12px;
  cursor: pointer;
  padding: 6px 4px;
  text-align: left;
}

.cookie-link:hover {
  color: #fff;
}

.cookie-banner-settings {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-toggle {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}

.cookie-toggle input {
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.cookie-toggle-label strong {
  display: block;
  color: #fff;
  font-size: 13px;
  margin-bottom: 2px;
}

.cookie-toggle-label span {
  display: block;
  color: var(--text-2);
  font-size: 12px;
  line-height: 1.4;
}

.cookie-settings-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}

.cookie-banner-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.cookie-banner-meta a {
  font-size: 12px;
  color: var(--text-3);
  text-decoration: none;
}

.cookie-banner-meta a:hover {
  color: var(--text-2);
}

@media (min-width: 700px) {
  .cookie-banner-controls {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .cookie-banner-controls .btn,
  .cookie-banner-controls .btn-cookie-secondary {
    width: auto;
    flex: 1 1 auto;
  }

  .cookie-banner-controls .cookie-link {
    margin-left: auto;
    flex: 0 0 auto;
  }
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-3);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-2);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: 0.1s;
}

.fade-up-delay-2 {
  transition-delay: 0.2s;
}

.fade-up-delay-3 {
  transition-delay: 0.3s;
}

/* =============================================
   MOBILE NAV
   ============================================= */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--bg);
  z-index: 200;
  padding: 24px 24px calc(56px + env(safe-area-inset-bottom, 0px));
  flex-direction: column;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  list-style: none;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  padding: 13px 16px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.18s ease, color 0.18s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
  background: rgba(255, 38, 0, 0.08);
  color: var(--red);
}

/* Sub-items grouped under "Leistungen — Übersicht": tighter, indented, red bullet */
.mobile-nav-links li.mobile-nav-sub {
  margin-left: 14px;
  border-left: 2px solid rgba(255, 38, 0, 0.28);
}

.mobile-nav-links li.mobile-nav-sub:first-of-type {
  margin-top: -2px;
  padding-top: 4px;
}

.mobile-nav-links li.mobile-nav-sub+li:not(.mobile-nav-sub) {
  margin-top: 14px;
}

.mobile-nav-links li.mobile-nav-sub a {
  padding: 7px 14px 7px 18px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 0 8px 8px 0;
  gap: 12px;
}

.mobile-nav-links li.mobile-nav-sub a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(255, 38, 0, 0.55);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.mobile-nav-links li.mobile-nav-sub a:hover {
  background: rgba(255, 38, 0, 0.10);
  color: #fff;
}

.mobile-nav-links li.mobile-nav-sub a:hover::before {
  transform: scale(1.25);
  box-shadow: 0 0 14px rgba(255, 38, 0, 0.85);
}

.close-btn {
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid var(--border);
    border-right: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .video-slider {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .lang-toggle {
    display: none;
  }

  .hero {
    padding: 60px 24px 80px;
    min-height: auto;
  }

  .case-full-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .case-cta-col {
    align-items: flex-start;
  }

  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .comp-header,
  .comp-row {
    grid-template-columns: 1fr 100px 100px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-top {
    grid-template-columns: 1fr;
  }

  .video-slider {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    padding: 40px 28px;
    text-align: center;
  }

  .cta-banner p {
    margin: 0 auto;
  }

  .cta-right {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .case-kpis-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

/* =============================================
   LEISTUNGEN-SUBPAGE LAYOUT (.lp-*)
   ============================================= */
.lp-hero {
  padding: 110px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-hero h1 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
  max-width: 1000px;
  margin: 18px auto 22px;
}

.lp-hero h1 .red {
  color: var(--red);
}

.lp-hero p.lead {
  font-size: 18px;
  color: var(--text-2);
  max-width: 740px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.lp-section {
  padding: 90px 24px;
}

.lp-section.alt {
  background: var(--bg-2);
}

.lp-section-inner {
  max-width: 920px;
  margin: 0 auto;
}

.lp-section h2 {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 14px 0 24px;
}

.lp-section .lead-p {
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.method-list {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.method-item {
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.25s ease;
}

.method-item:hover {
  border-color: var(--border-red);
}

.method-item h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.method-item p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.deliverables {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 32px;
  margin-top: 32px;
}

.deliverables ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}

.deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.55;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.deliverables li:hover {
  background: rgba(255, 38, 0, 0.06);
  transform: translateX(2px);
}

.deliverables li .emoji {
  font-size: 20px;
  line-height: 1.2;
  flex-shrink: 0;
  width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 700px) {
  .deliverables ul {
    grid-template-columns: 1fr;
  }

  .deliverables {
    padding: 22px 22px;
  }
}

.system-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.system-item {
  background: rgba(255, 38, 0, 0.06);
  border: 1px solid var(--border-red);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

.system-item strong {
  color: #fff;
  font-weight: 600;
}

.system-item a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

.system-item a:hover {
  text-decoration: underline;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

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

.proof-val {
  color: var(--red);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.proof-label {
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 10px;
}

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

.lp-cta {
  padding: 90px 24px 120px;
  text-align: center;
}

.lp-cta h2 {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 14px;
}

.lp-cta p {
  color: var(--text-2);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .lp-section {
    padding: 70px 22px;
  }
}

/* =============================================
   COMPASS — Scroll-driven approach section
   Used on all 5 leistungen subpages
   ============================================= */
.approach-section {
  position: relative;
  height: 320vh;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 38, 0, 0.05) 0%, transparent 70%),
    var(--bg);
}

.approach-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.approach-stage {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  position: relative;
}

.stage-header {
  text-align: center;
  margin-bottom: 24px;
  max-width: 820px;
}

.stage-header h2 {
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-top: 14px;
}

.circle-system {
  position: relative;
  width: min(960px, 95vw);
  height: min(560px, 62vh);
  margin: 0 auto;
}

.progress-ring-svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;
  z-index: 4;
  pointer-events: none;
}

.progress-ring-track {
  fill: none;
  stroke: rgba(255, 38, 0, 0.12);
  stroke-width: 2;
}

.progress-ring-fill {
  fill: none;
  stroke: var(--red);
  stroke-width: 3;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset 0.15s linear;
  filter: drop-shadow(0 0 6px rgba(255, 38, 0, 0.5));
}

.center-disc {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  height: 180px;
  margin: -90px 0 0 -90px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #1c1c1c 0%, #0c0c0c 100%);
  border: 1px solid rgba(255, 38, 0, 0.25);
  box-shadow:
    0 0 60px rgba(255, 38, 0, 0.1),
    inset 0 0 30px rgba(255, 38, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.center-label {
  text-align: center;
  pointer-events: none;
}

.progress-num {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  transition: color 0.3s ease;
}

.progress-of {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 8px;
}

.arrow-container {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 240px;
  height: 4px;
  margin-top: -2px;
  transform-origin: 0% 50%;
  transform: rotate(-135deg);
  transition: transform 0.18s cubic-bezier(0.25, 0.1, 0.25, 1);
  z-index: 3;
  pointer-events: none;
}

.arrow-line {
  position: absolute;
  left: 100px;
  top: 50%;
  width: 110px;
  height: 3px;
  background: linear-gradient(to right, transparent 0%, rgba(255, 38, 0, 0.4) 30%, var(--red) 100%);
  transform: translateY(-50%);
  border-radius: 2px;
}

.arrow-line::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent var(--red);
  transform: translateY(-50%);
  filter: drop-shadow(0 0 8px rgba(255, 38, 0, 0.6));
}

.principle {
  position: absolute;
  width: clamp(220px, 25vw, 310px);
  padding: 22px 24px;
  background: rgba(20, 20, 20, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition:
    border-color 0.5s ease,
    transform 0.5s ease,
    box-shadow 0.5s ease,
    opacity 0.5s ease;
  opacity: 0.4;
  z-index: 2;
}

.principle.active {
  opacity: 1;
  border-color: var(--red);
  box-shadow:
    0 0 0 1px var(--red),
    0 16px 50px rgba(255, 38, 0, 0.15),
    0 4px 20px rgba(0, 0, 0, 0.5);
  transform: scale(1.05);
}

.principle.p1 {
  top: 0;
  left: 0;
}

.principle.p2 {
  top: 0;
  right: 0;
}

.principle.p3 {
  bottom: 0;
  right: 0;
}

.principle.p4 {
  bottom: 0;
  left: 0;
}

.principle .num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}

.principle h3 {
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: -0.01em;
}

.principle p {
  font-size: clamp(13px, 1vw, 14px);
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .arrow-container {
    transition: none;
  }

  .progress-ring-fill {
    transition: none;
  }
}

@media (max-width: 800px) {
  .approach-section {
    height: 450vh;
  }

  .approach-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
  }

  .approach-stage {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 80px 0 0;
    box-sizing: border-box;
  }

  .stage-header {
    flex-shrink: 0;
    max-width: none;
    padding: 0 16px 20px;
  }

  .stage-header h2 {
    font-size: clamp(20px, 5.5vw, 28px);
  }

  .circle-system {
    flex: 1;
    position: relative;
    width: 100%;
    display: block;
    height: auto;
    gap: 0;
    margin: 0;
  }

  .center-disc,
  .arrow-container,
  .progress-ring-svg {
    display: none;
  }

  .principle {
    padding: 14px 16px;
  }

  /* JS overrides inline — these prevent flash from HTML-embedded active class */
  .principle,
  .principle.active {
    opacity: 0;
    transform: none;
    box-shadow: none;
  }
}

/* =============================================
   NAV DROPDOWN (Leistungen)
   ============================================= */
.nav-has-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  transform: translateY(-6px);
  min-width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 38, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Overview entry — visually elevated parent link above the 5 services */
.nav-dd-overview {
  background: linear-gradient(135deg, rgba(255, 38, 0, 0.14), rgba(255, 38, 0, 0.04));
  border: 1px solid rgba(255, 38, 0, 0.28);
  position: relative;
}

.nav-dd-overview:hover {
  background: linear-gradient(135deg, rgba(255, 38, 0, 0.22), rgba(255, 38, 0, 0.08)) !important;
  border-color: var(--red);
}

.nav-dropdown a.nav-dd-overview strong {
  color: var(--red);
}

.nav-dropdown a.nav-dd-overview:hover strong {
  color: var(--red);
}

.nav-dd-overview-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.nav-dd-overview:hover .nav-dd-overview-arrow {
  transform: translateY(-50%) translateX(3px);
}

/* Section label between overview and the 5 service items */
.nav-dd-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 14px 14px 4px;
  pointer-events: none;
}

.nav-has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown a:hover {
  background: rgba(255, 38, 0, 0.08);
}

/* Visual hierarchy: child items under "Im Detail" indented + connected by vertical line */
.nav-dropdown a:not(.nav-dd-overview) {
  padding-left: 32px;
  position: relative;
}

.nav-dropdown a:not(.nav-dd-overview)::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: rgba(255, 38, 0, 0.22);
  transition: background 0.15s ease;
}

.nav-dropdown a:not(.nav-dd-overview):hover::before {
  background: var(--red);
}

.nav-dd-emoji {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.nav-dropdown a strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
}

.nav-dropdown a em {
  display: block;
  font-style: normal;
  color: var(--text-2);
  font-size: 12px;
  margin-top: 2px;
  line-height: 1.4;
}

.nav-dropdown a:hover strong {
  color: var(--red);
}

@media (max-width: 900px) {
  .nav-dropdown {
    display: none;
  }
}

/* =============================================
   SHARED SUBPAGE HERO TREATMENT
   Unifies all sub-pages with the homepage's signature
   lava-bg fade. Higher specificity (`body .x`) wins
   over the local <style> blocks declared inline.
   ============================================= */
body .service-hero,
body .team-hero,
body .cases-hero,
body .library-hero,
body .case-hero {
  padding: 100px 24px 120px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

body .service-hero::before,
body .team-hero::before,
body .cases-hero::before,
body .library-hero::before,
body .case-hero::before {
  content: '';
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: 55%;
  transform: none;
  background-image: url('../images/lava-bg.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: transparent;
  opacity: 0.22;
  -webkit-mask-image: linear-gradient(to top, #000 0%, #000 55%, transparent 100%);
  mask-image: linear-gradient(to top, #000 0%, #000 55%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  border-radius: 0;
  filter: none;
}

body .service-hero>*,
body .team-hero>*,
body .cases-hero>*,
body .library-hero>*,
body .case-hero>* {
  position: relative;
  z-index: 1;
}

/* Subpage hero eyebrow — match homepage feel */
body .service-hero .label,
body .team-hero .label,
body .cases-hero .label,
body .library-hero .label,
body .case-hero .label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 13px;
  letter-spacing: 0.16em;
}

/* Subpage hero h1 — uniform sizing/weight */
body .service-hero h1,
body .team-hero h1,
body .cases-hero h1,
body .library-hero h1,
body .case-hero h1 {
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

/* Cards: unified hover lift + red border + soft glow */
body .phil-card,
body .founder-card,
body .case-card,
body .library-card,
body .ad-card,
body .ugc-card,
body .service-card,
body .problem-card,
body .solution-card {
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

body .phil-card:hover,
body .founder-card:hover,
body .case-card:hover,
body .library-card:hover,
body .ad-card:hover,
body .ugc-card:hover,
body .service-card:hover,
body .problem-card:hover,
body .solution-card:hover {
  border-color: var(--border-red);
  box-shadow: 0 12px 40px -12px rgba(255, 38, 0, 0.25), 0 0 0 1px rgba(255, 38, 0, 0.15);
  transform: translateY(-3px);
}

@media (max-width: 800px) {

  body .service-hero,
  body .team-hero,
  body .cases-hero,
  body .library-hero,
  body .case-hero {
    padding: 70px 20px 80px;
  }
}

/* =============================================
   BTS — "Auf Nachfrage" sequence (used on UGC and Statics subpages)
   ============================================= */
.bts-section {
  padding: 100px 0 120px;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255, 38, 0, 0.06) 0%, transparent 70%),
    var(--bg);
  overflow: hidden;
  position: relative;
}

.bts-header {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 30px;
  text-align: center;
}

.optional-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 38, 0, 0.10);
  border: 1px solid rgba(255, 38, 0, 0.30);
  color: var(--red);
  padding: 7px 14px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.optional-badge::before {
  content: '✦';
  font-size: 12px;
  color: var(--red);
}

.bts-header h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

.bts-header h2 .accent {
  color: var(--red);
}

.bts-header p {
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 32px;
}

.bts-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.bts-stat {
  text-align: center;
}

.bts-stat .num {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
}

.bts-stat .lbl {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
}

.marquee-wrap {
  position: relative;
  width: 100%;
  margin: 30px 0;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 5;
  pointer-events: none;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.bts-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: bts-marquee 70s linear infinite;
  align-items: center;
  padding: 30px 0;
}

.bts-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes bts-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.bts-photo {
  flex: 0 0 auto;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bts-photo:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 38, 0, 0.3),
    0 0 32px rgba(255, 38, 0, 0.15);
}

.bts-photo.portrait {
  width: 280px;
  height: 380px;
}

.bts-photo.landscape {
  width: 380px;
  height: 280px;
}

.bts-photo.square {
  width: 300px;
  height: 300px;
}

.bts-photo.tall {
  width: 240px;
  height: 340px;
}

.bts-photo.wide {
  width: 420px;
  height: 260px;
}

.bts-photo .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}

.bts-photo:hover .bg {
  transform: scale(1.08);
}

/* Placeholder gradients (replace with real BTS photos via inline style background-image) */
.bts-bg-1 {
  background: radial-gradient(circle at 30% 30%, rgba(255, 200, 150, 0.4) 0%, transparent 50%), linear-gradient(135deg, #2a1f15 0%, #6a4530 50%, #4a3020 100%);
}

.bts-bg-2 {
  background: radial-gradient(circle at 60% 40%, rgba(255, 130, 100, 0.35) 0%, transparent 50%), linear-gradient(160deg, #3d1818 0%, #8c3030 60%, #5a2020 100%);
}

.bts-bg-3 {
  background: radial-gradient(circle at 50% 30%, rgba(180, 200, 220, 0.3) 0%, transparent 50%), linear-gradient(135deg, #1a1f30 0%, #3a4868 60%, #2a2f48 100%);
}

.bts-bg-4 {
  background: radial-gradient(circle at 40% 60%, rgba(255, 220, 150, 0.4) 0%, transparent 50%), linear-gradient(135deg, #3d2810 0%, #8a6030 60%, #5a3a20 100%);
}

.bts-bg-5 {
  background: radial-gradient(circle at 70% 20%, rgba(180, 100, 100, 0.35) 0%, transparent 50%), linear-gradient(160deg, #2a1010 0%, #5a2020 60%, #3a1414 100%);
}

.bts-bg-6 {
  background: radial-gradient(circle at 30% 70%, rgba(150, 200, 180, 0.3) 0%, transparent 50%), linear-gradient(135deg, #102a20 0%, #305a48 60%, #1a3a2a 100%);
}

.bts-bg-7 {
  background: radial-gradient(circle at 60% 50%, rgba(255, 180, 200, 0.3) 0%, transparent 50%), linear-gradient(135deg, #2a1a30 0%, #5a3a68 60%, #3a2548 100%);
}

.bts-bg-8 {
  background: radial-gradient(circle at 40% 30%, rgba(220, 180, 120, 0.35) 0%, transparent 50%), linear-gradient(160deg, #1a1208 0%, #4a3a18 60%, #2a2010 100%);
}

.bts-bg-9 {
  background: radial-gradient(circle at 50% 40%, rgba(180, 220, 220, 0.3) 0%, transparent 50%), linear-gradient(135deg, #1a2030 0%, #305868 60%, #20384a 100%);
}

.bts-bg-10 {
  background: radial-gradient(circle at 70% 60%, rgba(255, 160, 130, 0.35) 0%, transparent 50%), linear-gradient(135deg, #2a1810 0%, #6a3a20 60%, #3a2010 100%);
}

.bts-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

.bts-photo .caption,
.bts-photo .tag {
  display: none;
}

.process-row {
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-step {
  text-align: center;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.process-step:hover {
  border-color: rgba(255, 38, 0, 0.3);
  transform: translateY(-3px);
}

.process-step .step-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.process-step .step-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.process-step .step-desc {
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.4;
}

.bts-cta {
  text-align: center;
  margin-top: 60px;
  padding: 0 30px;
}

.bts-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  padding: 14px 28px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(255, 38, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bts-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 38, 0, 0.4);
}

.bts-cta-button .arrow {
  transition: transform 0.3s ease;
}

.bts-cta-button:hover .arrow {
  transform: translate(3px, -3px);
}

.bts-cta-note {
  display: block;
  font-size: 13px;
  color: var(--text-3);
  margin-top: 12px;
}

@media (max-width: 800px) {
  .bts-stats {
    gap: 30px;
  }

  .bts-stat .num {
    font-size: 24px;
  }

  .bts-photo.portrait {
    width: 200px;
    height: 280px;
  }

  .bts-photo.landscape {
    width: 280px;
    height: 210px;
  }

  .bts-photo.square {
    width: 220px;
    height: 220px;
  }

  .bts-photo.tall {
    width: 180px;
    height: 250px;
  }

  .bts-photo.wide {
    width: 300px;
    height: 200px;
  }

  .process-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .bts-marquee-track {
    animation-duration: 50s;
  }
}

/* =============================================
   GEAR SYSTEM (scroll-driven) — used on Leistungs-Übersicht + Im-System auf Subpages
   ============================================= */
.gear-section {
  padding: 60px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gear-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(255, 38, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.system-container {
  position: relative;
  width: 820px;
  height: 620px;
  max-width: 100%;
  z-index: 1;
}

.gear {
  position: absolute;
  transform: translate(-50%, -50%);
}

.gear-spinner {
  width: 100%;
  height: 100%;
  transform-origin: center;
  will-change: transform;
  filter: drop-shadow(0 0 16px rgba(255, 38, 0, 0.25));
  transition: filter 0.4s ease;
}

.gear-central .gear-spinner {
  filter: drop-shadow(0 0 28px rgba(255, 38, 0, 0.4));
}

.gear:hover .gear-spinner {
  filter: drop-shadow(0 0 28px rgba(255, 38, 0, 0.55));
}

.gear-central:hover .gear-spinner {
  filter: drop-shadow(0 0 36px rgba(255, 38, 0, 0.6));
}

.gear-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.gear-central {
  width: 290px;
  height: 290px;
  left: 50%;
  top: 50%;
  z-index: 2;
}

.gear-satellite {
  width: 175px;
  height: 175px;
  z-index: 1;
}

.gear-1 {
  left: 50%;
  top: 19%;
}

.gear-2 {
  left: 73.4%;
  top: 41.4%;
}

.gear-3 {
  left: 64.4%;
  top: 76%;
}

.gear-4 {
  left: 35.6%;
  top: 76%;
}

.gear-5 {
  left: 26.6%;
  top: 41.4%;
}

.gear-central::before {
  content: '';
  position: absolute;
  inset: -70px;
  background: radial-gradient(circle, rgba(255, 38, 0, 0.18) 0%, transparent 65%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.gear-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 25%, #232325 0%, #0c0c0c 80%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 -10px 24px rgba(0, 0, 0, 0.4),
    inset 0 6px 18px rgba(255, 255, 255, 0.025),
    0 4px 18px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  padding: 8px 4px;
  pointer-events: none;
}

.gear-text::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 38, 0, 0.08);
  pointer-events: none;
}

.gear-text .icon {
  display: block;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
  margin-bottom: 6px;
}

.gear-text .title {
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  transition: color 0.3s ease;
}

.gear-text .subtitle {
  color: #a8a8a8;
  font-weight: 500;
  line-height: 1.1;
  margin-top: 5px;
}

.gear-satellite .gear-text .icon {
  font-size: 22px;
}

.gear-central .gear-text .icon {
  font-size: 36px;
  margin-bottom: 8px;
}

.gear-satellite .gear-text .title {
  font-size: 16px;
}

.gear-satellite .gear-text .subtitle {
  font-size: 12px;
  letter-spacing: 0.01em;
}

.gear-central .gear-text .title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.gear-central .gear-text .subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.06em;
  margin-top: 8px;
}

.gear-satellite-link {
  position: absolute;
  inset: 0;
  z-index: 11;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  text-decoration: none;
}

.gear-satellite:hover .gear-text .title {
  color: var(--red);
}

/* Active/current gear (used on subpages to mark "Du bist hier") */
.gear-satellite.current .gear-spinner {
  filter: drop-shadow(0 0 32px rgba(255, 38, 0, 0.85));
}

.gear-satellite.current .gear-text .title {
  color: var(--red);
}

.gear-satellite.current::after {
  content: 'Du bist hier';
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(255, 38, 0, 0.12);
  border: 1px solid rgba(255, 38, 0, 0.4);
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
  z-index: 12;
  pointer-events: none;
}

/* Bottom-row gears (3, 4): pill goes below to avoid the central Wachstum gear */
.gear-satellite.gear-3.current::after,
.gear-satellite.gear-4.current::after {
  top: auto;
  bottom: -22px;
}

/* Compact variant for "Im System" sections on subpages */
.gear-section.gear-compact {
  padding: 30px 0 0;
}

.gear-section.gear-compact .system-container {
  width: 560px;
  height: 420px;
}

.gear-section.gear-compact .gear-central {
  width: 200px;
  height: 200px;
}

.gear-section.gear-compact .gear-satellite {
  width: 120px;
  height: 120px;
}

.gear-section.gear-compact .gear-satellite .gear-text .title {
  font-size: 12px;
}

.gear-section.gear-compact .gear-satellite .gear-text .subtitle {
  font-size: 9px;
}

.gear-section.gear-compact .gear-satellite .gear-text .icon {
  font-size: 16px;
}

.gear-section.gear-compact .gear-central .gear-text .title {
  font-size: 22px;
}

.gear-section.gear-compact .gear-central .gear-text .subtitle {
  font-size: 11px;
}

.gear-section.gear-compact .gear-central .gear-text .icon {
  font-size: 26px;
}

@media (prefers-reduced-motion: reduce) {
  .gear-spinner {
    transform: none !important;
  }
}

@media (max-width: 850px) {
  .gear-section {
    padding: 50px 8px 30px;
  }

  .gear-section::before {
    background: radial-gradient(ellipse 95% 75% at 50% 50%, rgba(255, 38, 0, 0.14) 0%, rgba(255, 38, 0, 0.04) 40%, transparent 75%);
  }

  .system-container {
    width: 100%;
    max-width: 560px;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  /* Bigger, more breathable gears in a circular cluster */
  .gear-central {
    width: 36%;
    height: auto;
    aspect-ratio: 1;
  }

  .gear-satellite {
    width: 29%;
    height: auto;
    aspect-ratio: 1;
  }

  .gear-1 {
    top: 18%;
  }

  .gear-2 {
    left: 81%;
    top: 40%;
  }

  .gear-3 {
    left: 70%;
    top: 77%;
  }

  .gear-4 {
    left: 30%;
    top: 77%;
  }

  .gear-5 {
    left: 19%;
    top: 40%;
  }

  /* Wider text disc so labels breathe */
  .gear-text {
    width: 76%;
    height: 76%;
    padding: 6px 4px;
  }

  /* Stronger glow on mobile to feel more present */
  .gear-spinner {
    filter: drop-shadow(0 0 14px rgba(255, 38, 0, 0.4));
  }

  .gear-central .gear-spinner {
    filter: drop-shadow(0 0 24px rgba(255, 38, 0, 0.6));
  }

  .gear-central::before {
    inset: -40px;
    background: radial-gradient(circle, rgba(255, 38, 0, 0.3) 0%, transparent 65%);
  }

  .gear-satellite .gear-text .title {
    font-size: 12px;
  }

  .gear-satellite .gear-text .subtitle {
    font-size: 9px;
    margin-top: 3px;
    letter-spacing: -0.01em;
  }

  .gear-satellite .gear-text .icon {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .gear-central .gear-text .title {
    font-size: 24px;
  }

  .gear-central .gear-text .subtitle {
    font-size: 10.5px;
    margin-top: 5px;
  }

  .gear-central .gear-text .icon {
    font-size: 28px;
    margin-bottom: 5px;
  }

  /* Compact variant on subpages — same treatment */
  .gear-section.gear-compact {
    padding: 20px 8px 0;
  }

  .gear-section.gear-compact .system-container {
    width: 100%;
    max-width: 480px;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .gear-section.gear-compact .gear-central {
    width: 42%;
    height: auto;
    aspect-ratio: 1;
  }

  .gear-section.gear-compact .gear-satellite {
    width: 31%;
    height: auto;
    aspect-ratio: 1;
  }

  .gear-section.gear-compact .gear-satellite .gear-text .title {
    font-size: 12px;
  }

  .gear-section.gear-compact .gear-satellite .gear-text .subtitle {
    font-size: 9px;
  }

  .gear-section.gear-compact .gear-satellite .gear-text .icon {
    font-size: 17px;
  }

  .gear-section.gear-compact .gear-central .gear-text .title {
    font-size: 22px;
  }

  .gear-section.gear-compact .gear-central .gear-text .subtitle {
    font-size: 10.5px;
  }

  .gear-section.gear-compact .gear-central .gear-text .icon {
    font-size: 26px;
  }
}

@media (max-width: 420px) {
  .gear-satellite .gear-text .title {
    font-size: 11px;
  }

  .gear-satellite .gear-text .subtitle {
    font-size: 8px;
  }

  .gear-satellite .gear-text .icon {
    font-size: 15px;
  }

  .gear-central .gear-text .title {
    font-size: 21px;
  }

  .gear-central .gear-text .subtitle {
    font-size: 9.5px;
  }

  .gear-central .gear-text .icon {
    font-size: 24px;
  }

  .gear-section.gear-compact .gear-satellite .gear-text .title {
    font-size: 10.5px;
  }

  .gear-section.gear-compact .gear-satellite .gear-text .subtitle {
    font-size: 8px;
  }

  .gear-section.gear-compact .gear-central .gear-text .title {
    font-size: 19px;
  }
}

/* =============================================
   Calendly popup — dark shell overrides
   ============================================= */
.calendly-overlay {
  background: rgba(8, 8, 8, 0.88) !important;
}

.calendly-overlay .calendly-popup {
  background: #0a0a0a !important;
  border: 1px solid rgba(255, 38, 0, 0.18);
  border-radius: 14px;
  overflow: hidden;
  /* Slimmer + taller so the booking flow fits without scrolling */
  width: min(640px, 94vw) !important;
  height: min(900px, 94vh) !important;
  max-height: 94vh !important;
}

.calendly-overlay .calendly-popup-content,
.calendly-overlay .calendly-popup iframe {
  height: 100% !important;
}

.calendly-overlay .calendly-popup-content {
  background: #0a0a0a !important;
}

.calendly-overlay .calendly-popup-close {
  filter: invert(1) brightness(2);
  opacity: 0.85;
}

.calendly-overlay .calendly-popup-close:hover {
  opacity: 1;
}

.calendly-spinner>div {
  background-color: #ff2600 !important;
}

/* =============================================
   Ads Library CTA — used on subpages under deliverables / Im System
   ============================================= */
.ads-library-cta {
  margin-top: 40px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(255, 38, 0, 0.06) 0%, rgba(255, 38, 0, 0.02) 100%);
  border: 1px solid var(--border-red);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.ads-library-cta p {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  flex: 1;
  min-width: 220px;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .ads-library-cta {
    padding: 22px 22px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .ads-library-cta .btn {
    justify-content: center;
  }
}

/* =============================================
   Logo image override
   ============================================= */
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.logo .logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.footer-brand .logo .logo-img {
  height: 32px;
}

.mobile-menu-header .logo .logo-img {
  height: 26px;
}


/* Case Studies — Coming Soon nav badge */
.nav-links li>a,
.mobile-nav-links li>a {
  position: relative;
}

.nav-soon {
  position: absolute;
  top: 2px;
  right: 4px;
  font-size: 7px;
  color: var(--red);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.mobile-nav-links li>a .nav-soon {
  position: relative;
  top: -3px;
  right: auto;
  display: inline-block;
  vertical-align: top;
  margin-left: 6px;
}

.mobile-nav-links li>a .mobile-nav-soon {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  padding: 3px 8px;
  border-radius: 99px;
  background: rgba(255, 38, 0, 0.12);
  border: 1px solid rgba(255, 38, 0, 0.4);
  font-size: 9px;
  letter-spacing: 0.18em;
}