/**
 * Webgentic - Pathways Page Styles
 * Dedicated landing page for Pathways feature
 */

/* ================================
   PATHWAYS HERO
   ================================ */

.pathways-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.92) 0%, rgba(32, 178, 170, 0.88) 100%),
              url('/assets/images/fluid-sentience-hero_0_2025-12-26_09-15-05.jpg') center center / cover no-repeat;
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}

.pathways-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(160, 225, 247, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(231, 184, 232, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.pathways-hero__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.pathways-hero__label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pathways-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--weight-semibold);
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}

.pathways-hero__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-10);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pathways-hero__cta {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.pathways-hero__trust {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: var(--weight-medium);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.pathways-hero__trust p {
  margin: 0;
}

/* ================================
   PLATFORM GRID
   ================================ */

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
}

.platform-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: var(--space-8);
  transition: all 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.platform-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid rgba(91, 33, 182, 0.2);
}

.platform-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.platform-card__list li {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: var(--space-6);
}

.platform-card__list li:last-child {
  border-bottom: none;
}

.platform-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #5b21b6;
  font-weight: var(--weight-semibold);
}

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

.cta-block {
  padding: var(--space-16) var(--space-8);
  max-width: 900px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.btn--white {
  background: white;
  color: #000000;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn--white:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

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

@media (max-width: 768px) {
  .pathways-hero {
    min-height: auto;
    padding: var(--space-16) 0;
  }

  .pathways-hero__cta {
    flex-direction: column;
  }

  .pathways-hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .platform-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .pathways-hero__content {
    padding: 0 var(--space-4);
  }

  .platform-card {
    padding: var(--space-6);
  }

  .cta-block {
    padding: var(--space-12) var(--space-4);
  }
}
