/* ============================
   SERVICES PAGE — Sales Intelligence Labs
   ============================ */

/* ============================
   SPRUNGNAVIGATION
   ============================ */

.services-nav {
  margin-top: var(--space-16);
}

.services-nav__intro {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  max-width: none;
}

.services-nav__intro-tag {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-accent);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  background: var(--color-accent-subtle);
  padding: 2px var(--space-3);
  white-space: nowrap;
}

.services-nav__inner {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  padding: var(--space-8);
  border-radius: 20px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(14, 165, 233, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(99, 102, 241, 0.10) 0%, transparent 55%),
    linear-gradient(135deg, #eaf2fc 0%, #eceaf8 50%, #eeecf6 100%);
}

@media (max-width: 600px) {
  .services-nav__inner {
    flex-direction: column;
  }
}

.services-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.70);
  border-radius: 16px;
  padding: var(--space-8) var(--space-6);
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease, border-color 0.5s ease, background 0.5s ease;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
}

.services-nav__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  margin-bottom: var(--space-4);
}

.services-nav__icon.icon-ring {
  border-radius: 12px;
}

.services-nav__icon.icon-ring::before {
  inset: -1.5px;
}

.services-nav__icon.icon-ring::after {
  border-radius: 10px;
  inset: 1.5px;
}

.services-nav__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.services-nav__item:hover {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(14, 165, 233, 0.14),
    0 24px 56px rgba(99, 102, 241, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.services-nav__label {
  display: block;
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-tight);
  font-family: var(--font-heading);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.services-nav__sub {
  display: block;
  font-size: var(--text-base);
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  letter-spacing: 0;
  text-transform: none;
  line-height: var(--leading-relaxed);
}

.hero--page {
  position: relative;
}

/* ============================
   SERVICE SEKTIONEN
   ============================ */

.service-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--space-24);
}


.service-section__bg-num {
  position: absolute;
  top: -0.15em;
  right: -0.05em;
  font-size: clamp(10rem, 22vw, 20rem);
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  color: transparent;
  -webkit-text-stroke: 1px rgba(14, 165, 233, 0.07);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.service-section .container {
  position: relative;
  z-index: 1;
}

.service-section__overline {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: var(--tracking-wider);
}

.service-section__header {
  margin-bottom: var(--space-6);
}

.service-section__header h2 {
  margin-top: var(--space-3);
  font-size: clamp(var(--text-4xl), 5vw, var(--text-5xl));
}

.service-section__lead {
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin-top: var(--space-4);
  max-width: 560px;
}

.service-section__intro {
  margin-bottom: var(--space-12);
  max-width: 680px;
}

.service-section__intro p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

/* ============================
   SERVICE DETAIL CARDS (2x2 Grid)
   ============================ */

.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-top: var(--space-16);
  padding: var(--space-10);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(99, 102, 241, 0.04) 0%, transparent 70%),
    linear-gradient(135deg, #e8f4fd 0%, #eef0fb 50%, #f0eff5 100%);
}

/* Section-specific card backgrounds */
#strukturen .service-cards {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(14, 165, 233, 0.04) 0%, transparent 70%),
    linear-gradient(135deg, #eeedf8 0%, #f0eef6 50%, #f2f0f4 100%);
}

#maerkte .service-cards {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(212, 168, 83, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(212, 168, 83, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(14, 165, 233, 0.04) 0%, transparent 70%),
    linear-gradient(135deg, #f2efe6 0%, #f0eee8 50%, #eef0ec 100%);
}

@media (min-width: 640px) {
  .service-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card-detail {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.70);
  border-radius: 16px;
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease, border-color 0.5s ease, background 0.5s ease;
}

.service-card-detail:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(14, 165, 233, 0.16),
    0 28px 64px rgba(99, 102, 241, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.service-card-detail__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: var(--space-5);
  flex-shrink: 0;
  transition: transform 0.5s var(--ease-out-expo);
}

.service-card-detail__icon.icon-ring::after {
  border-radius: 12px;
}

.service-card-detail:hover .service-card-detail__icon {
  transform: translateY(-2px);
}

.service-card-detail__icon svg {
  width: 22px;
  height: 22px;
}

.service-card-detail h4 {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.service-card-detail p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  max-width: none;
}

/* ============================
   UNSER ANSATZ
   ============================ */

.approach-section {
  position: relative;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  align-items: start;
}

.approach-grid--stacked {
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

.approach-statement--centered {
  text-align: center;
}

.approach-statement--centered .overline {
  display: block;
}

.approach-statement h2 {
  margin-top: var(--space-4);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  line-height: var(--leading-snug);
}

.approach-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding: var(--space-8);
  border-radius: 20px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(99, 102, 241, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(212, 168, 83, 0.06) 0%, transparent 55%),
    linear-gradient(135deg, #eeedf6 0%, #f0eef2 50%, #f3f0ea 100%);
}

@media (min-width: 900px) {
  .approach-points--row {
    flex-direction: row;
    gap: var(--space-6);
  }

  .approach-points--row .approach-point {
    flex: 1;
  }
}

.approach-point {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.70);
  border-radius: 16px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease, border-color 0.5s ease, background 0.5s ease;
}

.approach-point:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(14, 165, 233, 0.14),
    0 24px 56px rgba(99, 102, 241, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.approach-point:last-child {
  border-bottom: none;
  padding-bottom: var(--space-6);
}

.approach-point__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
}

.approach-point__icon.icon-ring {
  border-radius: 10px;
}

.approach-point__icon.icon-ring::before {
  inset: -1.5px;
}

.approach-point__icon.icon-ring::after {
  border-radius: 8px;
  inset: 1.5px;
}

.approach-point__icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

.approach-point h4 {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
}

.approach-point p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  max-width: none;
}

/* ============================
   CTA
   ============================ */

.cta {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(212, 168, 83, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(212, 168, 83, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(14, 165, 233, 0.04) 0%, transparent 70%),
    linear-gradient(135deg, #f0eef6 0%, #f2efe8 50%, #f5f0e8 100%);
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background:
    radial-gradient(circle at 30% 40%, rgba(14, 165, 233, 0.10) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta .container {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.60);
  border-radius: 24px;
  padding: var(--space-16) var(--space-10);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.cta .accent {
  background: var(--gradient-brand-soft);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================
   PAIN-POINT BOX
   ============================ */

.pain-points {
  margin-top: var(--space-16);
  padding: var(--space-10);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(239, 68, 68, 0.12);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(239, 68, 68, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.pain-points__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-5);
  color: var(--color-text);
}

.pain-points__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .pain-points__list {
    grid-template-columns: 1fr 1fr;
  }
}

.pain-points__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

.pain-points__icon {
  flex-shrink: 0;
  color: var(--color-error);
  font-size: var(--text-lg);
  line-height: 1.4;
  opacity: 0.7;
}

/* ============================
   FEATURE CHECKLIST
   ============================ */

.feature-list {
  margin-top: var(--space-16);
  padding: var(--space-10);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.70);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.feature-list__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-5);
  color: var(--color-text);
}

.feature-list__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .feature-list__items {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

.feature-list__check {
  flex-shrink: 0;
  color: var(--color-secondary);
  font-size: var(--text-lg);
  line-height: 1.4;
}

/* Section-colored feature checks */
#hubspot .feature-list__check { color: var(--color-accent); }
#strukturen .feature-list__check { color: var(--color-indigo); }
#maerkte .feature-list__check { color: var(--color-warm); }

/* ============================
   PHASE TIMELINE
   ============================ */

.phase-timeline {
  margin-top: var(--space-16);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  counter-reset: phase;
}

@media (min-width: 900px) {
  .phase-timeline--5 {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-8);
  }
  .phase-timeline--4 {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
  }
  .phase-timeline--7 {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
  }
}

.phase-step {
  counter-increment: phase;
  padding: var(--space-6) var(--space-5);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.70);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.phase-step:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(14, 165, 233, 0.12);
}

.phase-step__number {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
  display: block;
}

/* Section-colored phase numbers */
#strukturen .phase-step__number { color: var(--color-indigo); }
#maerkte .phase-step__number { color: var(--color-warm); }

.phase-step__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.phase-step__desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

.phase-step__timing {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-text-subtle);
  letter-spacing: var(--tracking-wide);
  margin-top: var(--space-2);
  display: block;
}

/* ============================
   STATS HIGHLIGHT BOX
   ============================ */

.stats-highlight {
  margin-top: var(--space-16);
  padding: var(--space-10);
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Section-colored stats backgrounds */
#hubspot .stats-highlight {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(14, 165, 233, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(14, 165, 233, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, #e8f4fd 0%, #eef0fb 100%);
}

#strukturen .stats-highlight {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, #eceaf8 0%, #eeedf6 100%);
}

#maerkte .stats-highlight {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(212, 168, 83, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(212, 168, 83, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, #f2efe6 0%, #f0eee8 100%);
}

.stats-highlight__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: var(--space-8);
  display: block;
}

.stats-highlight .stats {
  gap: var(--space-12);
}

.stats-highlight .stat__number {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
}

/* Section-colored stat numbers */
#hubspot .stats-highlight .stat__number { color: var(--color-accent); }
#strukturen .stats-highlight .stat__number { color: var(--color-indigo); }
#maerkte .stats-highlight .stat__number { color: var(--color-warm); }

.stats-highlight .stat__label {
  font-size: var(--text-xs);
  margin-top: var(--space-2);
}

/* ============================
   SVG ILLUSTRATION
   ============================ */

.service-illustration {
  max-width: 480px;
  margin: var(--space-8) auto var(--space-4);
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.service-illustration:hover {
  opacity: 1;
}

.service-illustration svg {
  width: 100%;
  height: auto;
}

/* ============================
   EXTENDED INTRO (multi-paragraph)
   ============================ */

.service-section__intro--extended {
  max-width: 720px;
  margin-bottom: var(--space-8);
}

.service-section__intro--extended p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.service-section__intro--extended p:last-child {
  margin-bottom: 0;
}

.service-section__intro--extended strong {
  color: var(--color-text);
  font-weight: var(--weight-medium);
}

/* ============================
   APPROACH SECTION (3 points)
   ============================ */

@media (min-width: 900px) {
  .approach-points--three {
    flex-direction: row;
    gap: var(--space-5);
  }
  .approach-points--three .approach-point {
    flex: 1;
  }
}
