/* ============================================================
   SERVICES PAGE
   ============================================================ */

.page-hero {
  padding: 10rem 0 5rem;
  text-align: center;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--dark);
  margin: 0.5rem 0 1rem;
}

.page-hero p {
  color: var(--gray);
  font-weight: 300;
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

.services-intro {
  padding: 4rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
}

.services-intro-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.services-intro-inner p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
}

.services-what {
  padding: 7rem 0;
  background: var(--dark);
}

.services-what .section-header { color: var(--white); }
.services-what .section-header h2 { color: var(--white); }
.services-what .section-label { color: var(--cyan); }

.services-what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.services-what-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all var(--transition);
}

.services-what-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(92,225,230,0.25);
  transform: translateY(-4px);
}

.services-what-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(92,225,230,0.1);
  border: 1px solid rgba(92,225,230,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}

.services-what-card p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.services-what-footer {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cyan-light);
  padding-top: 1rem;
}

.services-pricing {
  padding: 7rem 0;
  background: var(--off-white);
}

.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.pricing-text .section-label { margin-bottom: 1rem; }

.pricing-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  margin: 0.5rem 0 1.25rem;
}

.pricing-text p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.pricing-factors {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.pricing-factors h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-light);
  position: relative;
}

.pricing-factors h3::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--cyan);
}

.pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.5;
}

.pricing-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .services-what-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .services-what-grid { grid-template-columns: 1fr; }
  .pricing-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}