/* Container utility */
.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Buttons (match your palette) */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 0.75rem;
}
.btn-primary { background: #00BCD4; color: #fff; }
.btn-primary:hover { background: #0097A7; }
.btn-secondary { background: #eef7f9; color: #007a88; border: 1px solid #cfe9ee; }
.btn-secondary:hover { background: #e4f2f5; }

/* Hero */
.mould-hero {
  background: linear-gradient(120deg, rgba(0,188,212,0.10), rgba(0,188,212,0.30)), url("../images/background/bg_2.webp");
  background-size: cover;
  background-position: center;
  color: #123;
  padding: 4rem 1rem;
}
.mould-hero__content {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255,255,255,0.85);
  border-radius: 12px;
  padding: 2rem;
}
.mould-hero__content h1 {
  margin-top: 0;
}
.mould-hero__cta { margin-top: 1rem; }

/* Key points */
.key-points {
  list-style: disc;
  margin-left: 1.25rem;
  line-height: 1.7;
}

/* Service grid */
.service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
.service-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.service-card h3 { margin-top: 0; }

@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* Process */
.process-steps {
  counter-reset: step;
  margin-left: 0;
  padding-left: 0;
}
.process-steps li {
  list-style: none;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  position: relative;
}
.process-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  background: #00BCD4;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}

/* Benefits */
.benefits-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
.benefit {
  background: #f9f9f9;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  padding: 1rem;
}
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* Before/After */
.ba-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.ba-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}
.ba-card img {
  width: 100%;
  height: auto;
  display: block;
}
.ba-card figcaption {
  padding: 0.5rem;
  font-weight: 600;
}
.mt-2 { margin-top: 1rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, 1fr);
}
.gallery-item {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-note {
  color: #666;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* FAQ */
.mould-faq details {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}

/* CTA */
.cta-box {
  background: linear-gradient(180deg, #f5feff, #ffffff);
  border: 1px solid #d6f3f7;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.cta-box p { margin-bottom: 1rem; }
