@import url("/styles.css");

.service-page-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 253, .94);
  backdrop-filter: blur(12px);
}

.service-page-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 610px;
  margin: 0 auto;
  padding: 65px 0 85px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 75px;
}

.service-hero-copy h1 {
  margin: 18px 0;
  font-size: clamp(45px, 5.5vw, 74px);
  line-height: 1.18;
  letter-spacing: -.05em;
}

.service-hero-copy h1 em { color: var(--purple); font-style: normal; }
.service-hero-copy > p { max-width: 650px; color: var(--muted); font-size: 17px; line-height: 2; }
.service-hero-actions { margin-top: 30px; display: flex; align-items: center; gap: 18px; }
.service-hero-actions .secondary-link { color: var(--purple-dark); font-size: 13px; font-weight: 800; }

.service-hero-art {
  min-height: 440px;
  position: relative;
  display: grid;
  place-items: center;
}

.service-art-bg {
  position: absolute;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  background: var(--purple-soft);
}

.service-icon-card {
  width: 280px;
  height: 280px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 138, 224, .25);
  border-radius: 42px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 28px 65px rgba(62, 40, 76, .12);
  transform: rotate(-3deg);
}

.service-icon-card img { width: 190px; height: 190px; object-fit: contain; }
.service-art-chip {
  position: absolute;
  z-index: 3;
  padding: 12px 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(62, 40, 76, .1);
  font-size: 12px;
  font-weight: 800;
}
.service-art-chip.top { top: 19%; right: 0; }
.service-art-chip.bottom { bottom: 18%; left: 0; }

.service-content-section {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 95px 0;
}

.service-content-section.soft {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 980px) / 2));
  background: var(--purple-soft);
}

.service-content-section h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.35;
}
.service-content-section > p { color: var(--muted); line-height: 2; }

.benefit-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.benefit-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}
.benefit-card span { color: var(--purple); font-size: 25px; font-weight: 900; }
.benefit-card h3 { margin: 13px 0 6px; font-size: 17px; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.85; }

.service-region-card {
  margin-top: 32px;
  padding: 28px;
  border: 1px solid rgba(185, 138, 224, .25);
  border-radius: 25px;
  background: rgba(255, 255, 255, .85);
}
.service-region-card h3 { margin: 0 0 7px; font-size: 20px; }
.service-region-card > p { margin: 0 0 20px; color: var(--muted); font-size: 13px; }
.service-districts { display: flex; flex-wrap: wrap; gap: 9px; }
.service-districts span,
.service-districts a {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.faq-list { margin-top: 34px; display: grid; gap: 12px; }
.faq-list details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.faq-list summary { cursor: pointer; color: var(--ink); font-weight: 800; }
.faq-list details p { margin: 13px 0 0; color: var(--muted); font-size: 14px; line-height: 1.9; }

.service-cta {
  width: min(980px, calc(100% - 40px));
  margin: 35px auto 0;
  padding: 48px 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(125deg, var(--purple-dark), #8d60a9);
}
.service-cta h2 { margin: 0 0 7px; font-size: 30px; }
.service-cta p { margin: 0; opacity: .78; }
.service-cta .button { color: var(--purple-dark); background: #fff; flex-shrink: 0; }

@media (max-width: 900px) {
  .service-page-hero { grid-template-columns: 1fr; text-align: center; }
  .service-hero-copy > p { margin-inline: auto; }
  .service-hero-actions { justify-content: center; }
}

@media (max-width: 650px) {
  .service-page-hero { width: calc(100% - 28px); padding: 52px 0 70px; gap: 25px; }
  .service-hero-copy h1 { font-size: 43px; }
  .service-hero-copy > p { font-size: 15px; }
  .service-hero-actions { flex-direction: column; }
  .service-hero-art { min-height: 390px; }
  .service-art-bg { width: 330px; height: 330px; }
  .service-icon-card { width: 225px; height: 225px; border-radius: 34px; }
  .service-icon-card img { width: 150px; height: 150px; }
  .service-art-chip.top { right: -2%; }
  .service-art-chip.bottom { left: -2%; }
  .service-content-section { width: calc(100% - 28px); padding: 70px 0; }
  .service-content-section.soft { width: 100%; padding-inline: 14px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .service-region-card { padding: 22px 17px; }
  .service-cta { width: calc(100% - 28px); padding: 38px 23px; flex-direction: column; text-align: center; }
}
