/* ============================================================
   JAZE DIGITAL — Services Page Styles
   ============================================================ */

/* --- Page Hero --- */
.page-hero__content {
  max-width: 760px;
}

.page-hero__content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-5);
}

.page-hero__content p {
  font-size: var(--text-xl);
  color: rgba(196,181,253,0.8);
  line-height: 1.7;
}

/* --- Service Nav --- */
.service-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
}

.service-nav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.service-nav__inner::-webkit-scrollbar { display: none; }

.service-nav__link {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--space-4) var(--space-5);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  text-decoration: none;
}

.service-nav__link:hover {
  color: var(--purple-deep);
  border-bottom-color: var(--purple-deep);
}

.service-nav__link--cta {
  margin-left: auto;
  color: var(--purple-deep);
  font-weight: 600;
}

/* --- Service Block --- */
.service-block__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-16);
  align-items: start;
}

.service-block__inner--reverse {
  grid-template-columns: 1fr 200px;
}

.service-block__inner--reverse .service-block__icon-col {
  order: 2;
}

.service-block__inner--reverse .service-block__content {
  order: 1;
}

.service-block__icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  position: sticky;
  top: calc(var(--nav-height) + 60px + var(--space-8));
}

.service-block__number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--lavender-soft);
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-block__icon-wrap {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-xl);
  background: var(--lavender-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-deep);
}

.service-block__icon-wrap svg {
  width: 48px;
  height: 48px;
}

.service-block__content h2 {
  margin-bottom: var(--space-3);
}

.service-block__tagline {
  font-size: var(--text-xl);
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0;
}

.service-block__includes {
  margin: var(--space-6) 0;
}

.service-block__includes h4 {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: var(--space-4);
}

/* Checklist */
.service-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: 1.6;
}

.service-checklist li svg {
  width: 16px;
  height: 16px;
  color: var(--purple-deep);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-block__tier {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin: var(--space-6) 0;
}

.service-block__note {
  font-size: var(--text-sm);
  color: var(--text-subtle);
  font-style: italic;
}

.badge--purple {
  background: var(--lavender-soft);
  color: var(--purple-deep);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
  margin-bottom: var(--space-8);
}

.pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: relative;
  transition: border-color var(--transition-md);
}

.pricing-card:hover {
  border-color: rgba(196,181,253,0.3);
}

.pricing-card--featured {
  background: var(--purple-deep);
  border-color: var(--purple-light);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
}

.pricing-card__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lavender);
  color: var(--purple-deep);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-card__tier {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
}

.pricing-card__best-for {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
  flex-wrap: wrap;
}

.pricing-card__from {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  width: 100%;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.pricing-card__period {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.5);
}

.pricing-card__note {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  margin-top: calc(-1 * var(--space-3));
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-5);
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
}

.pricing-card__features li svg {
  width: 14px;
  height: 14px;
  color: var(--lavender);
  flex-shrink: 0;
}

.pricing-card--featured .pricing-card__features li svg {
  color: var(--white);
}

.pricing-card__commitment {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  text-align: center;
  line-height: 1.5;
}

/* Pricing note */
.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: rgba(196,181,253,0.08);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
}

.pricing-note svg {
  width: 20px;
  height: 20px;
  color: var(--lavender);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-note p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.pricing-note strong {
  color: var(--white);
}

/* Bottom CTA (shared) */
.bottom-cta__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

.bottom-cta__inner h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.bottom-cta__inner p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-lg);
  line-height: 1.7;
}

/* ============================================================
   SERVICES RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .service-block__inner,
  .service-block__inner--reverse {
    grid-template-columns: 1fr;
  }

  .service-block__inner--reverse .service-block__icon-col,
  .service-block__inner--reverse .service-block__content {
    order: unset;
  }

  .service-block__icon-col {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
  }

  .service-block__number { font-size: 3rem; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
}

@media (max-width: 768px) {
  .service-nav__link { padding: var(--space-3) var(--space-4); font-size: var(--text-xs); }
}
