/* ===================
   SERVICES PAGE STYLES
   All Options (A, B, C)
   =================== */

/* ==============
   OPTION A: Enhanced Services
   ============== */

/* Hero-style page header with gradient */
.services-hero {
  position: relative;
  padding: 4.5rem 0 3rem;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(88, 119, 255, 0.15), transparent 55%),
    radial-gradient(circle at bottom right, rgba(88, 119, 255, 0.08), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.services-hero .container {
  position: relative;
  z-index: 1;
}

.services-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(210, 216, 244, 0.9);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--color-accent-strong);
  margin-bottom: 0.9rem;
}

.services-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}

.services-hero .page-intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: none;
}

/* Section with proof points */
.services-section {
  padding: 3.5rem 0;
}

.services-section h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.services-section .section-intro {
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: 0.75rem;
}

/* Proof bar under section header */
.section-proof {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 0.6rem 0;
}

.proof-stat {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.proof-stat strong {
  color: var(--color-accent);
  font-weight: 700;
}

.proof-stat .proof-icon {
  color: var(--color-accent);
  opacity: 0.7;
}

/* Enhanced service cards with icons and badges */
.service-card-enhanced {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(207, 214, 244, 0.9);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card-enhanced:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 35, 77, 0.1);
}

.service-card-enhanced .card-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent-strong);
  font-size: 0.75rem;
  font-weight: 700;
}

.service-card-enhanced .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.service-card-enhanced h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--color-text);
}

.service-card-enhanced > p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.service-card-enhanced .bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card-enhanced .bullet-list li {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.4rem;
}

.service-card-enhanced .bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* Flagship card - dark premium treatment */
.service-card-enhanced.flagship {
  background: linear-gradient(145deg, #1f2352, #151933);
  border: none;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(21, 25, 51, 0.35);
}

.service-card-enhanced.flagship:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(21, 25, 51, 0.45);
}

.service-card-enhanced.flagship .card-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.service-card-enhanced.flagship .card-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.service-card-enhanced.flagship .flagship-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.service-card-enhanced.flagship h3 {
  color: #ffffff;
  font-size: 1.25rem;
}

.service-card-enhanced.flagship > p {
  color: rgba(255, 255, 255, 0.75);
}

.service-card-enhanced.flagship .bullet-list li {
  color: rgba(255, 255, 255, 0.7);
}

.service-card-enhanced.flagship .bullet-list li::before {
  background: rgba(255, 255, 255, 0.5);
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Option A Responsive */
@media (max-width: 768px) {
  .services-hero {
    padding: 3rem 0 2rem;
  }

  .services-hero h1 {
    font-size: 1.9rem;
  }

  .section-proof {
    flex-wrap: wrap;
    gap: 1rem;
  }

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

/* ==============
   OPTION B: Journey Flow
   ============== */

.journey-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.journey-header h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.journey-header .section-intro {
  color: var(--color-text-muted);
}

/* Journey Flow Container */
.journey-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

/* Individual Step (card + connector) */
.journey-step {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 320px;
}

.journey-step:last-child {
  flex: 0 0 auto;
}

/* Journey Card */
.journey-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(207, 214, 244, 0.9);
  border-radius: 16px;
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(30, 35, 77, 0.12);
}

.journey-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(46, 92, 255, 0.3);
}

.journey-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.journey-phase {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}

.journey-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  line-height: 1.3;
}

.journey-card > p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.journey-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.journey-list li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.35rem;
}

.journey-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* Impact Stat Badge */
.journey-impact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(207, 214, 244, 0.6);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.journey-impact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(46, 92, 255, 0.08);
  color: var(--color-accent);
  flex-shrink: 0;
}

.journey-impact strong {
  color: var(--color-accent);
  font-weight: 700;
}

/* Arrow Connector */
.journey-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  color: var(--color-border);
  flex-shrink: 0;
}

/* Flagship Card (Dark) */
.journey-card.flagship {
  background: linear-gradient(145deg, #1f2352, #151933);
  border: none;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(21, 25, 51, 0.4);
  padding: 2rem 1.75rem;
}

.journey-card.flagship:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 56px rgba(21, 25, 51, 0.5);
}

.journey-card.flagship .journey-badge {
  background: #ffffff;
  color: var(--color-accent-strong);
}

.journey-card.flagship .journey-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.journey-card.flagship .journey-phase {
  color: rgba(255, 255, 255, 0.7);
}

.journey-card.flagship .flagship-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
}

.journey-card.flagship h3 {
  color: #ffffff;
  font-size: 1.25rem;
}

.journey-card.flagship > p {
  color: rgba(255, 255, 255, 0.75);
}

.journey-card.flagship .journey-list li {
  color: rgba(255, 255, 255, 0.7);
}

.journey-card.flagship .journey-list li::before {
  background: rgba(255, 255, 255, 0.5);
}

.flagship-connector {
  color: rgba(21, 25, 51, 0.3);
}

/* Journey Step with Flagship - slightly larger */
.journey-step-flagship .journey-card {
  transform: scale(1.02);
}

.journey-step-flagship:hover .journey-card {
  transform: translateY(-8px) scale(1.04);
}

/* Option B Responsive */
@media (max-width: 1024px) {
  .journey-flow {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .journey-step {
    flex-direction: column;
    max-width: 400px;
    width: 100%;
  }

  .journey-card {
    width: 100%;
  }

  .journey-connector {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }

  .journey-step:last-child .journey-connector {
    display: none;
  }

  .journey-step-flagship .journey-card {
    transform: none;
  }

  .journey-step-flagship:hover .journey-card {
    transform: translateY(-6px);
  }
}

@media (max-width: 600px) {
  .journey-header {
    margin-bottom: 2rem;
  }

  .journey-card {
    padding: 1.5rem;
  }

  .journey-card.flagship {
    padding: 1.75rem 1.5rem;
  }

  .journey-icon {
    width: 44px;
    height: 44px;
  }

  .journey-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* ==============
   OPTION C: Split Hero + Stats Bar
   ============== */

/* Split Hero with Audience Cards */
.services-hero-split {
  position: relative;
  padding: 4rem 0 3.5rem;
  overflow: hidden;
}

.services-hero-split::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(88, 119, 255, 0.18), transparent 50%),
    radial-gradient(circle at bottom right, rgba(88, 119, 255, 0.1), transparent 55%);
  pointer-events: none;
}

.services-hero-split .container {
  position: relative;
  z-index: 1;
}

.split-hero-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.split-hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(210, 216, 244, 0.9);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--color-accent-strong);
  margin-bottom: 0.9rem;
}

.split-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}

.split-hero-content .page-intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Audience Navigation Cards */
.audience-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.audience-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(207, 214, 244, 0.9);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 35, 77, 0.12);
  border-color: var(--color-accent);
  text-decoration: none;
}

.audience-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--color-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.audience-text {
  flex: 1;
}

.audience-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}

.audience-text p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

.audience-arrow {
  font-size: 1.25rem;
  color: var(--color-accent);
  opacity: 0.6;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.audience-card:hover .audience-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* Section Header C */
.services-section-c {
  padding: 3.5rem 0;
}

.section-header-c {
  margin-bottom: 1.5rem;
}

.section-header-c h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.section-header-c .section-intro {
  color: var(--color-text-muted);
  max-width: 600px;
}

/* Stats Bar */
.stats-bar {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(207, 214, 244, 0.8);
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(30, 35, 77, 0.04);
}

.muted .stats-bar {
  background: #ffffff;
}

.stat-item {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: lowercase;
}

.stat-divider {
  width: 1px;
  height: 24px;
  background: var(--color-border);
}

/* Services Grid C */
.services-grid-c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Service Card C - Horizontal Layout */
.service-card-c {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(207, 214, 244, 0.9);
  border-radius: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card-c:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 35, 77, 0.1);
}

.card-icon-c {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.card-content-c {
  flex: 1;
  min-width: 0;
}

.card-content-c h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.card-content-c > p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.card-list-c {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}

.card-list-c li {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding-left: 0.9rem;
  position: relative;
}

.card-list-c li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* Flagship Card C */
.service-card-c.flagship {
  position: relative;
  background: linear-gradient(145deg, #1f2352, #151933);
  border: none;
  box-shadow: 0 16px 40px rgba(21, 25, 51, 0.35);
  grid-column: span 2;
}

.service-card-c.flagship:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(21, 25, 51, 0.45);
}

.service-card-c.flagship .flagship-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.service-card-c.flagship .card-icon-c {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.service-card-c.flagship .card-content-c h3 {
  color: #ffffff;
  font-size: 1.2rem;
}

.service-card-c.flagship .card-content-c > p {
  color: rgba(255, 255, 255, 0.75);
}

.service-card-c.flagship .card-list-c li {
  color: rgba(255, 255, 255, 0.7);
}

.service-card-c.flagship .card-list-c li::before {
  background: rgba(255, 255, 255, 0.5);
}

/* Option C Responsive */
@media (max-width: 768px) {
  .services-hero-split {
    padding: 3rem 0 2.5rem;
  }

  .audience-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .stats-bar {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
  }

  .stat-divider {
    display: none;
  }

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

  .service-card-c.flagship {
    grid-column: span 1;
  }

  .service-card-c {
    flex-direction: column;
    gap: 1rem;
  }

  .card-list-c {
    flex-direction: column;
    gap: 0.3rem;
  }
}

@media (max-width: 480px) {
  .split-hero-content h1 {
    font-size: 1.8rem;
  }

  .audience-card {
    padding: 1rem;
  }

  .audience-icon {
    width: 48px;
    height: 48px;
  }

  .audience-icon svg {
    width: 24px;
    height: 24px;
  }
}
