/* ============================================
   SERVICES PAGE STYLES
   Dedicated overrides and layouts for services.html
   ============================================ */

:root {
  --services-brand: #3A4F7A;
  --services-ink: #1A1A1A;
  --services-muted: #666666;
  --services-surface: #ffffff;
  --services-soft: #F0F4F8;
  --services-border: #E5E5E5;
}

/* Hero */
.services-hero {
  min-height: 40vh;
  background: radial-gradient(circle at 20% 20%, rgba(58, 79, 122, 0.08), transparent 40%),
              radial-gradient(circle at 80% 10%, rgba(58, 79, 122, 0.08), transparent 42%),
              linear-gradient(135deg, #F7FAFC 0%, #F0F4F8 80%);
  color: var(--services-ink);
  padding: 96px 0;
}

.services-hero .lead {
  font-size: 22px;
  max-width: 760px;
  margin: 0 auto;
  color: var(--services-muted);
}

/* Section header */
.services-kicker {
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--services-brand);
}

.services-intro {
  max-width: 840px;
  margin: 0 auto;
  color: var(--services-muted);
}

/* Card grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--services-surface);
  border: 1px solid var(--services-border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  box-shadow: 0 10px 24px rgba(26, 26, 26, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--services-brand);
  box-shadow: 0 16px 36px rgba(58, 79, 122, 0.14);
}

.service-card__label {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--services-brand);
  background: rgba(58, 79, 122, 0.08);
  border: 1px solid rgba(58, 79, 122, 0.16);
}

.service-card__title {
  margin: 0;
  color: var(--services-ink);
}

.service-card__summary {
  margin: 0;
  color: var(--services-muted);
  line-height: 1.6;
}

.service-card__list {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 8px;
  color: var(--services-ink);
}

.service-card__list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.5;
}

.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--services-brand);
  opacity: 0.8;
}

/* Supporting sections */
.services-included {
  background-color: #F9F9F9;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.included-card {
  background: #ffffff;
  border: 1px solid var(--services-border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(26, 26, 26, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.included-kicker {
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--services-brand);
  margin: 0;
}

.included-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--services-ink);
}

.included-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.5;
}

.included-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--services-brand);
  opacity: 0.9;
}

.services-pricing__copy {
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto;
  color: var(--services-muted);
}

.services-soft-cta {
  background: linear-gradient(180deg, rgba(58, 79, 122, 0.05) 0%, rgba(58, 79, 122, 0.0) 100%);
}

.soft-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.soft-cta-card {
  background: #ffffff;
  border: 1px solid var(--services-border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  box-shadow: 0 10px 24px rgba(26, 26, 26, 0.04);
}

.soft-cta-kicker {
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--services-brand);
  margin: 0 0 4px 0;
}

.services-cta {
  background-color: #1A1A1A;
  color: #ffffff;
}

.services-cta__outline {
  color: #ffffff !important;
  border-color: #ffffff !important;
}

.services-cta__outline:hover {
  background-color: #ffffff !important;
  color: #1A1A1A !important;
}

@media (max-width: 768px) {
  .services-hero {
    padding: 72px 0;
  }

  .service-card {
    padding: 24px;
  }

  .included-card {
    padding: 20px;
  }

  .soft-cta-card {
    padding: 20px;
  }
}
