/* Services landing + detail pages */

/* Detail hero */
.svc-hero {
  padding: 28px 0 40px;
  background: linear-gradient(165deg, #f0f6ff 0%, var(--page-bg) 55%, #faf8ff 100%);
  border-bottom: 1px solid var(--line);
}

.svc-hero__grid {
  display: grid;
  grid-template-columns: 1fr min(380px, 38%);
  gap: 36px;
  align-items: center;
  margin-top: 8px;
}

.svc-hero__badge {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border: 1px solid rgba(69, 147, 255, 0.2);
}

.svc-hero__title {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}

.svc-hero__lead {
  margin-top: 16px;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

.svc-hero__intro {
  margin-top: 14px;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
}

.svc-hero--wide .svc-hero__grid {
  grid-template-columns: 1fr;
  max-width: 920px;
}

.svc-hero--wide .svc-hero__lead,
.svc-hero--wide .svc-hero__intro {
  max-width: none;
}

.svc-hero__tagline {
  margin: 0 0 6px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--blue-dark);
  line-height: 1.15;
}

.svc-hero--pers .svc-hero__visual img {
  max-height: 320px;
  object-fit: contain;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.svc-hero--capsule .svc-hero__visual img {
  max-height: 340px;
  object-fit: contain;
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.svc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  align-items: center;
}

.svc-hero__visual img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  background: var(--white);
}

/* Hero: PNG without frame, aligned to bottom */
.svc-hero--flush-img {
  padding-bottom: 0;
}

.svc-hero--flush-img + .svc-intro-strip {
  margin-top: 20px;
}

.svc-hero--flush-img .svc-hero__actions {
  display: none;
}

.svc-hero--flush-img .svc-hero__grid {
  align-items: stretch;
  min-height: 280px;
}

.svc-hero--flush-img .svc-hero__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svc-hero--flush-img .svc-hero__visual {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.svc-hero--flush-img .svc-hero__visual img {
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  max-height: 280px;
  width: auto;
  max-width: 100%;
  margin-left: auto;
  display: block;
}

/* Intro strip */
.svc-intro-strip {
  padding-top: 0;
  padding-bottom: 8px;
}

.svc-intro-strip__inner {
  max-width: 900px;
}

.svc-intro-strip__quote {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 14px;
}

.svc-intro-strip__lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* Mosaic gallery (ward photos) */
.svc-mosaic-section {
  padding-top: 16px;
}

.svc-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: repeat(2, 130px);
  gap: 8px;
}

.svc-mosaic__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface);
  min-height: 0;
}

.svc-mosaic__item--tall {
  grid-row: 1 / 3;
  grid-column: 1;
  min-height: 100%;
}

.svc-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s var(--ease);
}

.svc-mosaic__item:hover img {
  transform: scale(1.03);
}

/* About columns */
.svc-about-section {
  background: linear-gradient(180deg, var(--surface) 0%, var(--page-bg) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.svc-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-about-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.svc-about-card--blue { border-top: 4px solid var(--blue); }
.svc-about-card--mint { border-top: 4px solid var(--mint); }
.svc-about-card--coral { border-top: 4px solid var(--coral); }
.svc-about-card--lilac { border-top: 4px solid var(--lilac); }

.svc-about-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.svc-about-card h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 10px;
}

.svc-about-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.svc-section-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--ink);
}

.svc-bc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.svc-bc a {
  color: var(--muted);
  transition: color 0.2s;
}

.svc-bc a:hover { color: var(--blue); }
.svc-bc span:last-child { color: var(--ink-2); font-weight: 600; }

/* Landing grid */
.svc-landing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 56px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
  min-height: 200px;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.svc-card--blue { border-top: 4px solid var(--blue); }
.svc-card--mint { border-top: 4px solid var(--mint); }
.svc-card--coral { border-top: 4px solid var(--coral); }
.svc-card--lilac { border-top: 4px solid var(--lilac); }
.svc-card--amber { border-top: 4px solid var(--amber); }

.svc-card__dept {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 10px;
}

.svc-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--ink);
}

.svc-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.svc-card__arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  font-size: 18px;
  color: var(--blue);
  transition: background 0.2s, transform 0.2s;
}

.svc-card:hover .svc-card__arrow {
  background: var(--blue-soft);
  transform: translateX(4px);
}

/* Detail: intro reuses page-intro from page.css */
.svc-intro .page-intro__grid {
  align-items: center;
}

.svc-intro .page-intro__visual img {
  max-height: 400px;
  object-fit: cover;
}

.svc-block-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--ink);
}

/* Feature cards */
.svc-feats-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.svc-feats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.svc-feat {
  padding: 24px 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-feat--blue { border-top: 3px solid var(--blue); }
.svc-feat--mint { border-top: 3px solid var(--mint); }
.svc-feat--coral { border-top: 3px solid var(--coral); }
.svc-feat--indigo { border-top: 3px solid var(--indigo); }
.svc-feat--lilac { border-top: 3px solid var(--lilac); }
.svc-feat--amber { border-top: 3px solid var(--amber); }

.svc-feat__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.svc-feat__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.svc-feat__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
}

.svc-feat__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  margin: 6px 0 0;
}

.svc-feat p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
}

/* Info cards in prose */
.svc-lead-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: 24px !important;
}

.svc-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.svc-info-card {
  padding: 20px 18px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
}

.svc-info-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* CTA */
.svc-cta-section {
  padding-top: 0;
}

/* Related cards */
.svc-related-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.svc-related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 48px 22px 20px;
  min-height: 120px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s;
}

.svc-related-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.svc-related-card--blue { border-top: 3px solid var(--blue); }
.svc-related-card--mint { border-top: 3px solid var(--mint); }
.svc-related-card--coral { border-top: 3px solid var(--coral); }
.svc-related-card--lilac { border-top: 3px solid var(--lilac); }

.svc-related-card__dept {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
}

.svc-related-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 6px;
}

.svc-related-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.svc-related-card__arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 18px;
}

/* Promyvka: duo cards + steps */
.svc-duo-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.svc-duo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.svc-duo-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.svc-duo-card--blue { border-top: 4px solid var(--blue); }
.svc-duo-card--mint { border-top: 4px solid var(--mint); }
.svc-duo-card--lilac { border-top: 4px solid var(--lilac); }

.svc-duo-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--blue-soft);
  font-size: 22px;
}

.svc-duo-card--lilac .svc-duo-card__icon {
  background: rgba(167, 139, 250, 0.15);
}

.svc-duo-card--mint .svc-duo-card__icon {
  background: var(--mint-soft);
}

.svc-duo-card h2 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--ink);
}

.svc-duo-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 12px;
}

.svc-duo-card p:last-child {
  margin-bottom: 0;
}

.svc-duo-card__accent {
  font-weight: 600;
  color: var(--ink-2) !important;
}

.svc-steps-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
}

.svc-steps-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.svc-steps-head p {
  font-size: 16px;
  color: var(--muted);
  margin: 8px 0 0;
}

.svc-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 820px;
  margin-inline: auto;
}

.svc-steps::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
  transform: translateX(-50%);
}

.svc-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.svc-step:last-child {
  margin-bottom: 0;
}

.svc-step__card {
  padding: 24px 22px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.svc-step--left .svc-step__card {
  grid-column: 1;
}

.svc-step--right .svc-step__card {
  grid-column: 3;
}

.svc-step__dot {
  grid-column: 2;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
  justify-self: center;
}

.svc-step__card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 0 0 8px;
}

.svc-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 100px;
  background: var(--blue-soft);
  font-size: 13px;
}

.svc-step__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.svc-closing-section {
  padding-top: 0;
}

.svc-closing {
  max-width: 720px;
  padding: 32px 0 8px;
}

.svc-closing h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--ink);
}

.svc-closing p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

/* Персонифицированная медицина */
.svc-pers-highlights-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.svc-pers-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.svc-pers-hl {
  padding: 22px 18px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  min-height: 120px;
}

.svc-pers-hl--blue { border-top: 3px solid var(--blue); }
.svc-pers-hl--mint { border-top: 3px solid var(--mint); }
.svc-pers-hl--coral { border-top: 3px solid var(--coral); }
.svc-pers-hl--lilac { border-top: 3px solid var(--lilac); }

.svc-pers-hl h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 8px;
}

.svc-pers-hl p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.svc-pers-opinion-section {
  background: linear-gradient(135deg, #f0f6ff 0%, #f5f0ff 55%, var(--white) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.svc-pers-opinion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  max-width: 720px;
}

.svc-pers-opinion__label {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue-dark);
}

.svc-pers-opinion__text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  color: var(--ink);
}

.svc-pers-opinion__text p:last-child {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.svc-pers-opinion__visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.svc-pers-services-section {
  background: var(--white);
}

.svc-pers-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.svc-pers-svc {
  padding: 20px 18px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
}

.svc-pers-svc span {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink-2);
}

.svc-pers-about-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.svc-pers-about {
  max-width: 860px;
}

.svc-pers-about__lead {
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--ink-2);
  margin: 0 0 20px;
}

.svc-pers-about .svc-prose p {
  color: var(--muted);
}

/* Видеокапсульная эндоскопия */
.svc-caps-intro-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.svc-caps-intro__text {
  max-width: 900px;
}

.svc-caps-intro__text p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
}

.svc-caps-intro__text p:last-child {
  margin-bottom: 0;
}

.svc-caps-adv-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.svc-caps-adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.svc-caps-adv {
  padding: 24px 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.svc-caps-adv--blue { border-top: 3px solid var(--blue); }
.svc-caps-adv--mint { border-top: 3px solid var(--mint); }
.svc-caps-adv--coral { border-top: 3px solid var(--coral); }
.svc-caps-adv--lilac { border-top: 3px solid var(--lilac); }
.svc-caps-adv--amber { border-top: 3px solid var(--amber); }
.svc-caps-adv--indigo { border-top: 3px solid var(--indigo); }

.svc-caps-adv h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
}

.svc-caps-adv p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.svc-caps-clinical-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.svc-caps-clinical {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.svc-caps-clinical__col {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
}

.svc-caps-clinical__col h2 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--ink);
}

.svc-caps-complications {
  padding: 24px 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #f0f6ff 0%, #faf8ff 100%);
  border: 1px solid var(--line);
}

.svc-caps-complications h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--ink);
}

.svc-caps-complications p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

/* COVID rehabilitation page */
.svc-hero--covid {
  background: linear-gradient(165deg, #eef8ff 0%, var(--page-bg) 50%, #f5f0ff 100%);
}

.svc-hero--covid .svc-hero__visual img {
  object-fit: cover;
  min-height: 280px;
}

.svc-cov-complex-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.svc-cov-complex {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
  padding: 8px 0;
}

.svc-cov-complex__head p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.svc-cov-complex__list {
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}

.svc-cov-why-section {
  background: var(--page-bg);
}

.svc-cov-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.svc-cov-why {
  padding: 22px 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 130px;
}

.svc-cov-why--blue { border-top: 3px solid var(--blue); }
.svc-cov-why--mint { border-top: 3px solid var(--mint); }
.svc-cov-why--coral { border-top: 3px solid var(--coral); }
.svc-cov-why--lilac { border-top: 3px solid var(--lilac); }
.svc-cov-why--amber { border-top: 3px solid var(--amber); }
.svc-cov-why--indigo { border-top: 3px solid var(--indigo); }

.svc-cov-why h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}

.svc-cov-why p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.svc-cov-equip-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.svc-cov-equip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.svc-cov-equip {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.svc-cov-equip:hover {
  border-color: rgba(69, 147, 255, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.svc-cov-equip__img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--page-bg);
  aspect-ratio: 1;
}

.svc-cov-equip__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-cov-equip__body h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.svc-cov-equip__body p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.svc-cov-equip__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}

.svc-cov-cta-section {
  padding-top: 0;
}

.svc-cov-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-soft) 0%, #f8f4ff 100%);
  border: 1px solid rgba(69, 147, 255, 0.2);
}

.svc-cov-cta__text h2 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--ink);
}

.svc-cov-cta__text p {
  margin: 0;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.svc-cov-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Cryotherapy page */
.svc-hero--krio {
  background: linear-gradient(165deg, #e8f4ff 0%, var(--page-bg) 45%, #eef9ff 100%);
}

.svc-hero--krio .svc-hero__visual img {
  object-fit: cover;
  min-height: 300px;
  border-radius: var(--radius-lg);
}

.svc-krio-price-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.svc-krio-price {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 8px 0;
}

.svc-krio-price__badge {
  flex-shrink: 0;
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue) 0%, #5eb8ff 100%);
  box-shadow: 0 8px 24px rgba(69, 147, 255, 0.25);
}

.svc-krio-price__text h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.svc-krio-price__text p {
  margin: 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.svc-krio-about-section {
  background: var(--page-bg);
}

.svc-krio-goals-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.svc-krio-goals-lead {
  margin: -8px 0 24px;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.svc-krio-goals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.svc-krio-goal {
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.svc-krio-goal--blue { border-top: 3px solid var(--blue); }
.svc-krio-goal--mint { border-top: 3px solid var(--mint); }
.svc-krio-goal--coral { border-top: 3px solid var(--coral); }
.svc-krio-goal--lilac { border-top: 3px solid var(--lilac); }
.svc-krio-goal--amber { border-top: 3px solid var(--amber); }
.svc-krio-goal--indigo { border-top: 3px solid var(--indigo); }

.svc-krio-goal h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}

.svc-krio-goal p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.svc-krio-why-section {
  background: var(--page-bg);
}

.svc-krio-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.svc-krio-why {
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
}

.svc-krio-why--blue { border-top: 3px solid var(--blue); }
.svc-krio-why--mint { border-top: 3px solid var(--mint); }
.svc-krio-why--coral { border-top: 3px solid var(--coral); }

.svc-krio-why h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}

.svc-krio-why p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.svc-krio-cta-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.svc-krio-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #e8f4ff 0%, #f5f0ff 100%);
  border: 1px solid rgba(69, 147, 255, 0.15);
}

.svc-krio-cta__text h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--ink);
}

.svc-krio-cta__text p {
  margin: 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.svc-krio-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* Shockwave therapy (UVT) page */
.svc-hero--uvt {
  background: linear-gradient(165deg, #f3eeff 0%, var(--page-bg) 45%, #fff4ee 100%);
}

.svc-hero--uvt .svc-hero__visual img {
  object-fit: contain;
  max-height: 340px;
  padding: 12px;
}

.svc-uvt-equip-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.svc-uvt-equip {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 8px 0;
}

.svc-uvt-equip__badge {
  flex-shrink: 0;
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  background: linear-gradient(135deg, var(--lilac) 0%, #c4a0ff 100%);
  box-shadow: 0 8px 24px rgba(165, 120, 255, 0.25);
}

.svc-uvt-equip__text h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.svc-uvt-equip__text p {
  margin: 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.svc-uvt-about-section {
  background: var(--page-bg);
}

.svc-uvt-tabs-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.svc-uvt-tabs {
  display: flex;
  gap: 0;
  margin-top: 20px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  -webkit-overflow-scrolling: touch;
}

.svc-uvt-tabs__btn {
  flex-shrink: 0;
  padding: 14px 22px;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.svc-uvt-tabs__btn:hover {
  color: var(--ink);
}

.svc-uvt-tabs__btn.is-active {
  color: var(--blue-dark);
  border-bottom-color: var(--blue);
}

.svc-uvt-panels {
  padding-top: 28px;
}

.svc-uvt-panel {
  display: none;
}

.svc-uvt-panel.is-active {
  display: block;
}

.svc-uvt-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.svc-uvt-panel__body p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.svc-uvt-panel__body p:last-child {
  margin-bottom: 0;
}

.svc-uvt-panel__body .svc-checklist {
  margin: 0 0 14px;
}

.svc-uvt-panel__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.svc-uvt-panel__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.svc-uvt-clinical-section {
  background: var(--page-bg);
}

.svc-uvt-indications {
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.svc-uvt-indications h2 {
  margin: 0 0 16px;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  color: var(--ink);
}

.svc-uvt-clinical__list {
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}

.svc-uvt-note {
  margin-top: 20px;
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
}

.svc-uvt-note h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}

.svc-uvt-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.svc-uvt-cta-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.svc-uvt-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #f3eeff 0%, #fff4ee 100%);
  border: 1px solid rgba(165, 120, 255, 0.15);
}

.svc-uvt-cta__text h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--ink);
}

.svc-uvt-cta__text p {
  margin: 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.svc-uvt-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* Hyperbaric chamber (barokamera) page */
.svc-hero--baro {
  background: linear-gradient(165deg, #e8f8f4 0%, var(--page-bg) 45%, #eef6ff 100%);
}

.svc-hero--baro .svc-hero__visual img {
  object-fit: contain;
  max-height: 340px;
  padding: 8px;
}

.svc-baro-equip-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.svc-baro-equip {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 8px 0;
}

.svc-baro-equip__badge {
  flex-shrink: 0;
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  background: linear-gradient(135deg, var(--mint) 0%, #5ed4b8 100%);
  box-shadow: 0 8px 24px rgba(59, 207, 169, 0.25);
}

.svc-baro-equip__text h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.svc-baro-equip__text p {
  margin: 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.svc-baro-about-section {
  background: var(--page-bg);
}

.svc-baro-goals-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.svc-baro-goals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.svc-baro-goal {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.svc-baro-goal--blue { border-top: 3px solid var(--blue); }
.svc-baro-goal--mint { border-top: 3px solid var(--mint); }
.svc-baro-goal--coral { border-top: 3px solid var(--coral); }
.svc-baro-goal--lilac { border-top: 3px solid var(--lilac); }
.svc-baro-goal--amber { border-top: 3px solid var(--amber); }
.svc-baro-goal--indigo { border-top: 3px solid var(--indigo); }

.svc-baro-goal__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
}

.svc-baro-goal__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}

.svc-baro-goal:hover .svc-baro-goal__img img {
  transform: scale(1.04);
}

.svc-baro-goal h3 {
  margin: 0;
  padding: 16px 18px 18px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
}

.svc-baro-price-section {
  background: var(--page-bg);
}

.svc-baro-price-grid {
  display: grid;
  grid-template-columns: 220px 220px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.svc-baro-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.svc-baro-price--alt {
  background: linear-gradient(180deg, var(--mint-soft) 0%, var(--white) 100%);
  border-top: 3px solid var(--mint);
}

.svc-baro-price__value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--blue-dark);
  line-height: 1.1;
}

.svc-baro-price__label {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.svc-baro-benefits {
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  box-shadow: var(--shadow-sm);
}

.svc-baro-benefits h3 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}

.svc-baro-benefits p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.svc-baro-cta-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.svc-baro-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #e8f8f4 0%, #eef6ff 100%);
  border: 1px solid rgba(59, 207, 169, 0.2);
}

.svc-baro-cta__text h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--ink);
}

.svc-baro-cta__text p {
  margin: 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.svc-baro-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* Plasmolifting page */
.svc-hero--plazmo {
  background: linear-gradient(165deg, #faf0ff 0%, var(--page-bg) 45%, #fff5f8 100%);
}

.svc-hero--plazmo .svc-hero__visual img {
  object-fit: contain;
  max-height: 340px;
  padding: 8px;
}

.svc-plazmo-strip-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.svc-plazmo-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 8px 0;
}

.svc-plazmo-strip__badge {
  flex-shrink: 0;
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  background: linear-gradient(135deg, var(--lilac) 0%, #c89bff 100%);
  box-shadow: 0 8px 24px rgba(165, 120, 255, 0.25);
}

.svc-plazmo-strip__text h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.svc-plazmo-strip__text p {
  margin: 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.svc-plazmo-about-section {
  background: var(--page-bg);
}

.svc-plazmo-clinical-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.svc-plazmo-clinical-lead {
  margin: -8px 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.svc-plazmo-indications {
  margin: 0 0 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}

.svc-plazmo-when-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.svc-plazmo-when {
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.svc-plazmo-when--lilac { border-top: 3px solid var(--lilac); }
.svc-plazmo-when--coral { border-top: 3px solid var(--coral); }

.svc-plazmo-when h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}

.svc-plazmo-when p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.svc-plazmo-reviews-section {
  background: var(--page-bg);
}

.svc-plazmo-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.svc-plazmo-review {
  margin: 0;
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.svc-plazmo-review p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  font-style: italic;
}

.svc-plazmo-review footer {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-dark);
}

.svc-plazmo-cta-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.svc-plazmo-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #faf0ff 0%, #fff5f8 100%);
  border: 1px solid rgba(165, 120, 255, 0.15);
}

.svc-plazmo-cta__text h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--ink);
}

.svc-plazmo-cta__text p {
  margin: 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.svc-plazmo-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* Content blocks */
.svc-blocks {
  padding: 56px 0;
}

.svc-blocks__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 820px;
}

.svc-block {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.svc-prose p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.svc-prose p:last-child {
  margin-bottom: 0;
}

.svc-checklist {
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.svc-checklist li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-2);
  line-height: 1.6;
  font-size: 15px;
}

.svc-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

/* Gallery */
.svc-gallery-section {
  padding: 0 0 56px;
}

.svc-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.svc-gallery__item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
}

.svc-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}

.svc-gallery__item:hover img {
  transform: scale(1.04);
}

.svc-gallery--row-4 {
  grid-template-columns: repeat(4, 1fr);
}

.svc-gallery--row-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* CTA banner */
.svc-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.page-banner .btn--outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.page-banner .btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Related */
.svc-related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.svc-related__link {
  padding: 12px 18px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.svc-related__link:hover {
  border-color: var(--blue);
  background: var(--blue-tint);
  color: var(--blue-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .svc-landing-grid,
  .svc-feats {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-hero__grid {
    grid-template-columns: 1fr;
  }

  .svc-hero__visual {
    order: -1;
  }

  .svc-hero__visual img {
    max-height: 220px;
  }
}

@media (max-width: 900px) {
  .svc-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-gallery--row-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-gallery--row-3 {
    grid-template-columns: 1fr;
  }

  .svc-info-grid,
  .svc-related-grid,
  .svc-about-grid,
  .svc-duo-grid,
  .svc-pers-highlights {
    grid-template-columns: 1fr;
  }

  .svc-pers-opinion {
    grid-template-columns: 1fr;
  }

  .svc-pers-services {
    grid-template-columns: 1fr;
  }

  .svc-caps-adv-grid {
    grid-template-columns: 1fr;
  }

  .svc-caps-clinical {
    grid-template-columns: 1fr;
  }

  .svc-cov-complex {
    grid-template-columns: 1fr;
  }

  .svc-cov-complex__list {
    grid-template-columns: 1fr;
  }

  .svc-cov-why-grid {
    grid-template-columns: 1fr;
  }

  .svc-cov-equip-grid {
    grid-template-columns: 1fr;
  }

  .svc-cov-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .svc-krio-price {
    flex-direction: column;
    align-items: flex-start;
  }

  .svc-krio-goals-grid,
  .svc-krio-why-grid {
    grid-template-columns: 1fr;
  }

  .svc-krio-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .svc-uvt-equip {
    flex-direction: column;
    align-items: flex-start;
  }

  .svc-uvt-panel__grid {
    grid-template-columns: 1fr;
  }

  .svc-uvt-panel__visual {
    order: -1;
  }

  .svc-uvt-clinical__list {
    grid-template-columns: 1fr;
  }

  .svc-uvt-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .svc-baro-equip {
    flex-direction: column;
    align-items: flex-start;
  }

  .svc-baro-goals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-baro-price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .svc-baro-benefits {
    grid-column: 1 / -1;
  }

  .svc-baro-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .svc-plazmo-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .svc-plazmo-indications {
    grid-template-columns: 1fr;
  }

  .svc-plazmo-when-grid,
  .svc-plazmo-reviews-grid {
    grid-template-columns: 1fr;
  }

  .svc-plazmo-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .svc-steps::before {
    left: 20px;
  }

  .svc-step {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding-left: 8px;
  }

  .svc-step__dot {
    grid-column: 1;
    grid-row: 1;
  }

  .svc-step__card,
  .svc-step--left .svc-step__card,
  .svc-step--right .svc-step__card {
    grid-column: 2;
  }

  .svc-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .svc-mosaic__item--tall {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 200px;
    max-height: 240px;
  }
}

@media (max-width: 600px) {
  .svc-landing-grid,
  .svc-feats,
  .svc-gallery {
    grid-template-columns: 1fr;
  }

  .svc-blocks {
    padding: 40px 0;
  }

  .svc-block {
    padding: 24px 20px;
  }
}
