/* Service hub landing — /service/ (visual system = /delivery/) */

.mp-service {
  margin: 0 auto 2.5rem;
  max-width: 1140px;
  padding: 0 16px;
  color: #526371;
  font-family: "Exo 2", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  box-sizing: border-box;
}
.mp-service *,
.mp-service *::before,
.mp-service *::after { box-sizing: border-box; }
.mp-service a {
  color: #00bf80;
  text-decoration: none;
}
.mp-service a:hover { color: #0055a6; }

/* Hero */
.mp-svc-hero {
  margin: 8px 0 1.25rem;
  padding: 28px 28px 30px;
  background: linear-gradient(180deg, #e8f7f0 0%, #f7fbf9 55%, #fff 100%);
  border: 1px solid #cfe9dc;
  border-radius: 0.3rem;
}
.mp-svc-hero__eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #00bf80;
}
.mp-svc-hero__title {
  margin: 0 0 12px;
  font: 700 32px/1.2 Roboto, "Exo 2", sans-serif;
  color: #333;
}
.mp-svc-hero__lead {
  margin: 0 0 18px;
  max-width: 48rem;
  font-size: 18px;
  color: #5a6a78;
}
.mp-svc-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.mp-svc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: .6rem 1.25rem;
  border-radius: 0.3rem;
  background: #00bf80 !important;
  color: #fff !important;
  font-weight: 600;
}
.mp-svc-btn:hover { background: #00a86f !important; color: #fff !important; }
.mp-svc-btn--ghost {
  background: #fff !important;
  color: #0055a6 !important;
  border: 1px solid #c5d4e0;
}
.mp-svc-btn--ghost:hover { border-color: #0055a6; }
.mp-svc-phone {
  font-weight: 700;
  color: #0055a6 !important;
  font-size: 17px;
}

/* Jump */
.mp-svc-jump {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .65rem;
  margin: 0 0 8px;
}
.mp-svc-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: .35rem .75rem;
  border: 1px solid #d7ebe2;
  border-radius: 0.3rem;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #0055a6 !important;
}
.mp-svc-jump a:hover {
  border-color: #00bf80;
  color: #00bf80 !important;
}

/* Bars */
.mp-svc-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px 0 20px;
  padding: 18px 16px;
  font: 400 22px/1.2 "Exo 2", Roboto, sans-serif;
  color: #54595f;
  text-align: center;
  background-image: linear-gradient(180deg, #c0e6d2 0%, rgba(192, 230, 210, .37) 100%);
  border-radius: 0.3rem;
  scroll-margin-top: 1rem;
}

/* Offer cards */
.mp-svc-offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 8px;
}
.mp-svc-offer {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  padding: 1.05rem 1.05rem 1.1rem;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 0.3rem;
  color: inherit !important;
  transition: border-color .15s ease, background .15s ease;
}
.mp-svc-offer:hover {
  border-color: #00bf80;
  background: #f3faf7;
  color: inherit !important;
}
.mp-svc-offer__icon { display: block; line-height: 0; }
.mp-svc-offer__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
}
.mp-svc-offer__text {
  margin: 0;
  flex: 1 1 auto;
  font-size: 15px;
  color: #5a6a78;
  line-height: 1.45;
}
.mp-svc-offer__more {
  margin-top: .35rem;
  font-size: 14px;
  font-weight: 700;
  color: #00bf80;
}
.mp-svc-offer:hover .mp-svc-offer__more { color: #0055a6; }

/* Cycle */
.mp-svc-cycle { margin: 0 0 8px; }
.mp-svc-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.25rem 1.5rem;
  align-items: start;
  margin: 0 0 1.15rem;
}
.mp-svc-panel {
  margin: 0;
  padding: 1.1rem 1.15rem;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 0.3rem;
}
.mp-svc-panel h3 {
  margin: 0 0 .75rem;
  font-size: 18px;
  color: #333;
}
.mp-svc-panel p { margin: 0 0 .75rem; }
.mp-svc-panel p:last-of-type { margin-bottom: .85rem; }
.mp-svc-bullets {
  margin: 0;
  padding: 0 0 0 1.15rem;
  font-size: 15px;
}
.mp-svc-bullets li { margin: 0 0 .4rem; }
.mp-svc-media {
  margin: 0;
  border-radius: 0.3rem;
  overflow: hidden;
  border: 1px solid #e8edf2;
  background: #f7f9fa;
}
.mp-svc-media img {
  display: block;
  width: 100%;
  height: auto;
}

.mp-svc-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
}
.mp-svc-step {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  margin: 0;
  padding: .9rem 1rem;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 0.3rem;
}
.mp-svc-step__n {
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00bf80;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.mp-svc-step strong {
  display: block;
  margin: 0 0 .2rem;
  color: #333;
  font-size: 15px;
}
.mp-svc-step span {
  display: block;
  font-size: 14px;
  color: #5a6a78;
  line-height: 1.4;
}

/* More chips */
.mp-svc-more {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .65rem;
  margin: 0 0 8px;
}
.mp-svc-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: .45rem 1rem;
  border: 1px solid #d7ebe2;
  border-radius: 0.3rem;
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  color: #333 !important;
}
.mp-svc-chip:hover {
  border-color: #00bf80;
  background: #f3faf7;
  color: #00a06c !important;
}

/* Contracts */
.mp-svc-contracts { margin: 0 0 8px; }
.mp-svc-contracts__lead {
  margin: 0 0 1rem;
  max-width: 42rem;
  font-size: 15px;
  color: #5a6a78;
}
.mp-svc-contracts__media {
  margin: 0;
  border-radius: 0.3rem;
  overflow: hidden;
  border: 1px solid #e8edf2;
  background: #f7f9fa;
}
.mp-svc-contracts__media img {
  display: block;
  width: 100%;
  height: auto;
}

/* FAQ */
.mp-svc-faq {
  display: grid;
  gap: .65rem;
  margin: 0 0 8px;
}
.mp-svc-faq__item {
  margin: 0;
  padding: .85rem 1.05rem;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 0.3rem;
}
.mp-svc-faq__item summary {
  cursor: pointer;
  font-weight: 700;
  color: #333;
  list-style: none;
  font-size: 15px;
}
.mp-svc-faq__item summary::-webkit-details-marker { display: none; }
.mp-svc-faq__item summary::after {
  content: "+";
  float: right;
  color: #00bf80;
  font-weight: 700;
}
.mp-svc-faq__item[open] summary::after { content: "–"; }
.mp-svc-faq__item p {
  margin: .65rem 0 0;
  font-size: 15px;
  color: #5a6a78;
}

/* CTA */
.mp-svc-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin: 28px 0 0;
  padding: 1.15rem 1.2rem;
  background: #f3faf7;
  border: 1px solid #cfe9dc;
  border-radius: 0.3rem;
}
.mp-svc-cta strong {
  display: block;
  margin: 0 0 .25rem;
  color: #333;
  font-size: 16px;
}
.mp-svc-cta p {
  margin: 0;
  font-size: 15px;
  color: #5a6a78;
}
.mp-svc-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.1rem;
  align-items: center;
}

@media (max-width: 960px) {
  .mp-svc-offers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mp-svc-split,
  .mp-svc-steps { grid-template-columns: 1fr; }
  .mp-svc-hero__title { font-size: 26px; }
  .mp-svc-bar { font-size: 18px; padding: 14px 12px; }
}
@media (max-width: 560px) {
  .mp-svc-offers { grid-template-columns: 1fr; }
  .mp-svc-hero { padding: 20px 16px; }
}
