/* SERVICES PAGE */

.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: center;
}
.service-detail--reverse .service-detail-layout {
  grid-template-columns: 1fr 1fr;
}
.service-detail--reverse .service-detail-visual { order: -1; }

.service-detail-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-surface-offset-2);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-4);
}
[data-theme='dark'] .service-detail-number { color: var(--color-surface-offset); }

.service-detail-text .badge { margin-bottom: var(--space-3); }
.service-detail-text h2 { margin-bottom: var(--space-4); }
.service-lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}
.feature-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.feature-check {
  width: 24px;
  height: 24px;
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.feature-item p { font-size: var(--text-sm); }

.service-result-callout {
  display: flex;
  gap: var(--space-8);
  padding: var(--space-6);
  background: var(--color-surface-offset);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
}
.result-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.result-stat-label { font-size: var(--text-xs); color: var(--color-text-muted); }

.service-detail-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.service-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 520px;
  display: block;
}

.service-badge-float {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-5);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.sbf-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}
.sbf-label { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: 2px; }

/* MINI SERVICES */
.mini-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.mini-service-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--duration-base) var(--ease-out);
}
.mini-service-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.mini-service-card .service-icon { margin-bottom: var(--space-4); }
.mini-service-card h3 { font-size: var(--text-base); color: var(--color-text); margin-bottom: var(--space-2); }
.mini-service-card p { font-size: var(--text-sm); }

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: start;
}
.pricing-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
}
.pricing-card--featured {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-primary);
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}
.price-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}
.price-per { font-size: var(--text-base); color: var(--color-text-muted); }
.pricing-desc { font-size: var(--text-sm); margin-bottom: var(--space-6); }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  font-size: var(--text-sm);
  color: var(--color-text);
}
.pricing-features li { color: var(--color-text-muted); }

@media (max-width: 1024px) {
  .mini-services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}
@media (max-width: 768px) {
  .service-detail-layout { grid-template-columns: 1fr; }
  .service-detail--reverse .service-detail-visual { order: 0; }
  .service-result-callout { flex-direction: column; gap: var(--space-4); }
}
@media (max-width: 560px) {
  .mini-services-grid { grid-template-columns: 1fr; }
}
