/* ─── Page Header ─── */
.page-header {
  padding: 140px 0 72px;
  background: var(--neutral);
  text-align: center;
}
.page-header .eyebrow { margin-bottom: 12px; }
.page-header h1 { margin-bottom: 16px; }
.page-header-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─── Service Cards ─── */
.services-section { padding: 80px 0; }

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--neutral-dark);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(58,68,93,0.1);
  transform: translateY(-4px);
}

.service-card--featured {
  border-color: var(--secondary);
  border-width: 2px;
  box-shadow: 0 4px 24px rgba(166,124,82,0.12);
  position: relative;
}

.service-card-top { margin-bottom: 24px; }

/* Push CTA to bottom so all cards align at the same height */
.service-card .service-includes { flex: 1; }

.service-tag {
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  background: var(--secondary-muted);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}
.service-tag--light {
  color: var(--white);
  background: var(--secondary);
}

.service-name {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.price-main {
  font-family: var(--font-headline);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--primary);
  line-height: 1;
}

.price-unit {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.price-bundle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 16px;
  min-height: 1.4em;
}

.price-bundle strong { color: var(--secondary); }

.service-card .divider { margin: 0 0 20px; }

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.service-includes {
  flex: 1;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-includes li {
  font-size: 0.875rem;
  color: var(--text-body);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.service-includes li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 600;
}

.service-cta { width: 100%; text-align: center; }

.service-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-cta-group .service-cta {
  width: 100%;
  text-align: center;
}

/* ─── Ongoing ─── */
.ongoing { }

.ongoing-intro {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

.ongoing-cards {
  max-width: 860px;
  margin: 48px auto 0;
  background: var(--white);
  border: 1px solid var(--neutral-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ongoing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 44px 48px;
}

.ongoing-divider {
  height: 1px;
  background: var(--neutral-dark);
  margin: 0 48px;
}

.ongoing-left { flex: 1; }
.ongoing-left h3 { font-size: 1.5rem; margin-bottom: 10px; }
.ongoing-left p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }

.ongoing-includes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ongoing-includes li {
  font-size: 0.82rem;
  color: var(--text-body);
  padding-left: 16px;
  position: relative;
}
.ongoing-includes li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--secondary);
}

.ongoing-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.ongoing-price {
  font-family: var(--font-headline);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--primary);
  line-height: 1;
  white-space: nowrap;
}
.ongoing-price span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

/* ─── Always Included ─── */
.always-included { }

.ai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ai-inner--text-only {
  grid-template-columns: 1fr;
}

.ai-text--wide {
  max-width: 680px;
  margin: 0 auto;
}

.ai-text h2 { margin-top: 8px; margin-bottom: 0; }
.ai-text .divider { margin-top: 20px; margin-bottom: 28px; }

.ai-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ai-list li {
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
  color: var(--text-body);
}
.ai-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 600;
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .service-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .ai-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 700px) {
  .ongoing-card { flex-direction: column; align-items: flex-start; padding: 32px 28px; }
  .ongoing-divider { margin: 0 28px; }
  .ongoing-right { flex-direction: row; gap: 24px; align-items: center; }
}
