/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--space-24) + 80px) 0 var(--space-16);
  overflow: hidden;
}

.page-hero__bg { display: none; }
.page-hero__overlay { display: none; }

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

.page-hero__content h1 {
  color: var(--navy);
  font-size: clamp(1.875rem, 4vw, var(--text-4xl));
  margin-bottom: var(--space-6);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--gray);
}

.breadcrumb a {
  color: var(--brand);
  text-decoration: none;
  font-weight: var(--weight-medium);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--navy);
}

/* ===== SERVICES DETAIL GRID ===== */
.services-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  position: relative;
}

@media (min-width: 768px) {
  .services-detail__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}

@media (min-width: 1024px) {
  .services-detail__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Decorative gradient circles */
.services-detail__grid::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(33, 96, 181, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.services-detail__grid::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ===== SERVICE CARD ===== */
.service-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--brand);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.service-card:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-primary-light);
  border-top-color: inherit;
}

/* Card body wrapper — pushes button to bottom */
.service-card__body {
  flex: 1;
}

/* Icon container */
.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--brand);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  transition: transform var(--transition-normal);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-white);
}

/* Card text */
.service-card h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}

.service-card p {
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-3);
  color: var(--color-text-secondary);
}

/* Subheadings inside cards */
.service-card h4 {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--teal);
  margin-top: var(--space-3);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Lists inside cards */
.service-card ul {
  margin-bottom: var(--space-3);
  padding-left: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: var(--space-5);
  font-size: var(--text-xs);
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-1);
}

.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.6;
}

/* Ghost button in cards */
.service-card .btn--ghost {
  align-self: flex-start;
  font-size: var(--text-xs);
  margin-top: var(--space-3);
}

/* ===== CARD ACCENT COLORS ===== */
.service-card:nth-child(1) { border-top-color: var(--brand); }
.service-card:nth-child(2) { border-top-color: var(--teal); }
.service-card:nth-child(3) { border-top-color: var(--coral); }
.service-card:nth-child(4) { border-top-color: var(--gold); }
.service-card:nth-child(5) { border-top-color: var(--purple); }
.service-card:nth-child(6) { border-top-color: var(--emerald); }

/* Icon backgrounds per card */
.service-card:nth-child(1) .service-card__icon { background: var(--brand); }
.service-card:nth-child(2) .service-card__icon { background: var(--teal); }
.service-card:nth-child(3) .service-card__icon { background: var(--coral); }
.service-card:nth-child(4) .service-card__icon { background: var(--gold); }
.service-card:nth-child(5) .service-card__icon { background: var(--purple); }
.service-card:nth-child(6) .service-card__icon { background: var(--emerald); }

/* Bullet colors matching card accent */
.service-card:nth-child(1) li::before { background: var(--brand); }
.service-card:nth-child(2) li::before { background: var(--teal); }
.service-card:nth-child(3) li::before { background: var(--coral); }
.service-card:nth-child(4) li::before { background: var(--gold); }
.service-card:nth-child(5) li::before { background: var(--purple); }
.service-card:nth-child(6) li::before { background: var(--emerald); }

/* ===== TABLET/DESKTOP CARD OVERRIDES ===== */
@media (min-width: 768px) {
  .service-card {
    border-radius: var(--radius-lg);
    padding: var(--space-10);
  }

  .service-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-6);
  }

  .service-card__icon svg {
    width: 32px;
    height: 32px;
  }

  .service-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
  }

  .service-card p {
    font-size: var(--text-sm);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-4);
  }

  .service-card h4 {
    font-size: var(--text-sm);
    margin-top: var(--space-4);
  }

  .service-card li {
    font-size: var(--text-sm);
    padding-left: var(--space-6);
    margin-bottom: var(--space-2);
  }

  .service-card li::before {
    width: 7px;
    height: 7px;
  }

  .service-card .btn--ghost {
    font-size: var(--text-sm);
  }
}

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--brand);
  padding: var(--space-12) 0;
  border-radius: var(--radius-xl);
  margin: 0 clamp(1rem, 3vw, 2rem);
}

.stats-band__grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.stats-band__item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stats-band__item .stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-white);
}

.stats-band__item .stat-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-2);
}

/* ===== GET STARTED / STEPS ===== */
.steps-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .steps-row {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
  }
}

.step {
  text-align: center;
  max-width: 280px;
  flex: 1;
}

.step__number {
  width: 64px;
  height: 64px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: var(--weight-extrabold);
  color: var(--color-white);
  margin: 0 auto var(--space-6);
  box-shadow: var(--shadow-md);
}

.step h4 {
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

.step p {
  font-size: var(--text-sm);
  line-height: var(--line-height-relaxed);
}

.step__connector {
  display: none;
  color: var(--color-primary-light);
  flex-shrink: 0;
  padding-top: 20px;
}

.step__connector svg {
  width: 60px;
  height: 24px;
}

@media (min-width: 768px) {
  .step__connector {
    display: flex;
    align-items: flex-start;
    margin: 0 var(--space-4);
  }
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.2rem 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: var(--space-4);
  color: var(--navy);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer__inner {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: var(--line-height-relaxed);
}

.faq-answer__inner a {
  color: var(--brand);
  text-decoration: underline;
}

/* ===== WHY I-KETS ===== */
.why-ikets__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .why-ikets__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}

@media (min-width: 1024px) {
  .why-ikets__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-ikets__item {
  text-align: center;
  padding: var(--space-8) var(--space-5);
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
}

.why-ikets__item:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.why-ikets__icon {
  width: 52px;
  height: 52px;
  background: var(--brand-wash);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
}

.why-ikets__icon svg {
  width: 26px;
  height: 26px;
  fill: var(--brand);
}

.why-ikets__item h3 {
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--navy);
  margin-bottom: var(--space-3);
}

.why-ikets__item p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}
