.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.service-card {
  padding: 40px 32px; border: 1px solid #ececec; background: var(--white);
  position: relative; overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.09); }
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--red);
  transform: scaleX(0); transition: var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 64px; height: 64px; background: #fff0f0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-card__icon svg { width: 28px; height: 28px; fill: var(--red); }

.service-card__title {
  font-family: var(--font-h); font-size: 18px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--black); margin-bottom: 12px;
}
.service-card__desc { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ---- Process / How it works ---- */
.process { background: var(--dark); padding: 90px 5%; }
.process .section__title { color: var(--white); }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 52px; }
.process__grid::before {
  content: ''; position: absolute;
  top: 36px; left: 10%; right: 10%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--red) 0, var(--red) 8px, transparent 8px, transparent 16px);
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.process-step__num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-family: var(--font-h); font-size: 24px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; border: 4px solid var(--dark);
}
.process-step__title { font-family: var(--font-h); font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 10px; }
.process-step__desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ---- Pricing table ---- */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pricing-card {
  border: 1px solid #ececec; overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.pricing-card--featured { border: 2px solid var(--red); }

.pricing-card__header { padding: 32px 28px; background: var(--dark); text-align: center; }
.pricing-card--featured .pricing-card__header { background: var(--red); }
.pricing-card__label { font-family: var(--font-h); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.pricing-card__price { font-family: var(--font-h); font-size: 48px; font-weight: 700; color: var(--white); line-height: 1; }
.pricing-card__price span { font-size: 16px; opacity: 0.7; }
.pricing-card__period { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 4px; }

.pricing-card__body { padding: 32px 28px; background: var(--white); }
.pricing-card__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-card__feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--black); }
.pricing-card__feature::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.pricing-card__feature.disabled { color: #ccc; }
.pricing-card__feature.disabled::before { content: '✗'; color: #ccc; }

/* ---- Testimonials strip ---- */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { padding: 32px; border: 1px solid #ececec; background: var(--white); }
.testimonial-card__quote { font-size: 48px; line-height: 1; color: var(--red); font-family: Georgia, serif; margin-bottom: 12px; }
.testimonial-card__text { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.stars { color: var(--red); font-size: 12px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 700; color: var(--white); font-size: 16px; flex-shrink: 0;
}
.testimonial-card__name { font-family: var(--font-h); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--black); }
.testimonial-card__role { font-size: 12px; color: var(--muted); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid::before { display: none; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .services__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
}
