:root {
  --navy: #082b55;
  --blue: #075fc4;
  --teal: #16b8a6;
  --mint: #e9faf7;
  --ice: #f4f8fb;
  --text: #15304f;
  --muted: #60738a;
  --line: #dfe8f0;
  --white: #fff;
  --shadow: 0 18px 50px rgba(8, 43, 85, .11);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1400px, calc(100% - 80px)); margin: 0 auto; }
a,
button,
.btn,
.header-whatsapp,
.header-cta,
.site-brand,
.primary-nav a,
.service-card,
.doctor-card,
.review-card,
.feature-strip article,
.hero-stat {
  transition:
    color .22s ease,
    background-color .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    transform .22s ease,
    opacity .22s ease;
}
.rexab-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  vertical-align: middle;
}
.icon-link .rexab-icon {
  width: 18px;
  height: 18px;
  color: #2b7ed9;
  stroke-width: 2;
}
.icon-link--whatsapp .rexab-icon {
  color: #18c878;
}
.contact-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid #e8eef5;
  box-shadow: 0 8px 28px rgba(8, 43, 85, .04);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 250px minmax(520px, 1fr) auto;
  align-items: center;
  gap: 28px;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  flex: 0 0 auto;
}
.site-brand:hover { transform: translateY(-1px); }
.site-brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #22c4bd, #0b65cb);
  color: var(--white);
  font-weight: 900;
  font-size: 17px;
  box-shadow: 0 8px 20px rgba(19, 184, 166, .24);
}
.site-brand__text strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1;
  letter-spacing: .02em;
}
.site-brand__text small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.primary-nav { min-width: 0; }
.primary-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}
.primary-nav a:hover { color: var(--teal); }
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-weight: 900;
  font-size: 15px;
  line-height: 1.1;
  white-space: nowrap;
}
.header-phone .rexab-icon {
  width: 20px;
  height: 20px;
  color: #2b7ed9;
  stroke-width: 2.3;
}
.header-phone small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.header-whatsapp {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #18c878;
  color: var(--white);
  box-shadow: 0 8px 18px rgba(24, 200, 120, .22);
}
.header-whatsapp:hover {
  background: #12b86d;
  transform: translateY(-2px);
  box-shadow: 0 13px 26px rgba(24, 200, 120, .32);
}
.header-whatsapp .rexab-icon {
  width: 20px;
  height: 20px;
  color: var(--white);
  stroke-width: 1.7;
}
.header-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 7px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(7, 95, 196, .18);
}
.header-cta:hover { background: #064fa4; color: var(--white); }
.btn, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
}
.btn-primary, .lead-form button { background: var(--blue); color: var(--white); }
.btn-light { background: var(--white); color: var(--navy); border: 1px solid var(--line); }
.btn-small { background: var(--teal); color: var(--white); padding: 8px 12px; border-radius: 7px; font-size: 13px; font-weight: 800; }
.btn:hover,
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(8, 43, 85, .14);
}
.btn-primary:hover,
.lead-form button:hover {
  background: #064fa4;
  color: var(--white);
}
.btn-light:hover {
  border-color: #b9d4ee;
  color: var(--blue);
}
.btn-whatsapp {
  gap: 10px;
}
.btn-whatsapp .rexab-icon {
  width: 20px;
  height: 20px;
  color: #18c878;
  stroke-width: 1.9;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  background: var(--ice);
  color: var(--navy);
  border: 1px solid var(--line);
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 3px auto;
  background: currentColor;
  border-radius: 999px;
}
.nav-toggle em { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.home-hero {
  position: relative;
  background-image:
    linear-gradient(90deg, #fff 0%, #fff 39%, rgba(255,255,255,.94) 49%, rgba(248,252,255,.74) 63%, rgba(239,249,252,.38) 100%),
    url("../img/hero-bg.webp");
  background-position: center, right center;
  background-repeat: no-repeat;
  background-size: 100% 100%, auto 100%;
  border-bottom: 1px solid #e7eef5;
  overflow: hidden;
}
.home-hero:after { display: none; }
.home-hero__grid {
  position: relative;
  z-index: 1;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(460px, 540px) minmax(680px, 1fr);
  gap: 46px;
  align-items: center;
}
.home-hero__content {
  padding: 58px 0 86px;
}
.home-hero h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(42px, 4.15vw, 62px);
  line-height: 1.06;
  max-width: 470px;
}
.home-hero p {
  max-width: 455px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.home-hero__badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin: 24px 0 30px;
}
.home-hero__badges span {
  position: relative;
  min-height: 50px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid rgba(43, 126, 217, .12);
  border-radius: 10px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 8px 22px rgba(8, 43, 85, .045);
  color: var(--navy);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
  max-width: none;
}
.home-hero__badges .rexab-icon {
  width: 22px;
  height: 22px;
  padding: 3px;
  border-radius: 8px;
  background: #eff8ff;
  color: #2b7ed9;
}
.home-hero__actions {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(250px, 1fr);
  gap: 12px;
  max-width: 620px;
  margin: 0 0 28px;
}
.home-hero__actions .btn {
  width: 100%;
  min-height: 54px;
  border-radius: 7px;
  padding: 0 18px;
  font-size: 15px;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(7, 95, 196, .12);
}
.home-hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-weight: 900;
  font-size: 22px;
}
.home-hero__phone .rexab-icon {
  width: 24px;
  height: 24px;
  color: #2b7ed9;
}
.home-hero__phone small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.home-hero__visual {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.home-hero__circle {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  background: rgba(42, 194, 199, .22);
  pointer-events: none;
}
.home-hero__circle--main {
  width: 590px;
  height: 590px;
  left: 74px;
  top: 54px;
}
.home-hero__doctor {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: 745px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  filter: drop-shadow(0 26px 34px rgba(9, 36, 68, .12));
}
.hero-stat {
  position: absolute;
  z-index: 2;
  right: 20px;
  width: 220px;
  min-height: 96px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(194, 215, 232, .95);
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 34px rgba(8, 43, 85, .11);
  backdrop-filter: blur(12px);
}
.hero-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(8, 43, 85, .16);
}
.hero-stat strong {
  grid-column: 2;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
}
.hero-stat span {
  grid-column: 2;
  margin-top: 2px;
  color: var(--muted);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.15;
}
.hero-stat .rexab-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 12px;
  background: #eff8ff;
  color: #2b7ed9;
  stroke-width: 2;
}
.hero-stat--top { top: 134px; }
.hero-stat--middle { top: 266px; }
.hero-stat--bottom { top: 398px; }
.feature-strip {
  position: relative;
  z-index: 3;
  margin-top: -36px;
  background: transparent;
}
.feature-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 20px 50px rgba(8, 43, 85, .10);
  overflow: hidden;
}
.feature-strip article {
  min-height: 172px;
  padding: 28px 22px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.feature-strip article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(8, 43, 85, .10);
}
.feature-strip article:last-child { border-right: 0; }
.feature-strip article span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: var(--mint);
  border: 1px solid #bfede8;
  color: #1aaea2;
}
.feature-strip article span .rexab-icon {
  width: 26px;
  height: 26px;
}
.feature-strip h3 {
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: 16px;
}
.feature-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.about-preview {
  padding-top: 20px;
}
.about-preview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 34px;
  align-items: center;
}
.about-preview__image {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.about-preview h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 32px;
}
.about-preview p {
  margin: 0;
  color: var(--muted);
}

.hero {
  background: linear-gradient(90deg, #f7fbff 0%, #f7fbff 45%, #eef8fb 100%);
  overflow: hidden;
}
.hero-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: center;
}
.page-hero .hero-grid { min-height: 430px; }
.page-hero.compact { padding: 70px 0; }
.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  margin: 12px 0 20px;
  color: var(--navy);
  max-width: 760px;
}
.lead { font-size: 19px; color: var(--muted); max-width: 680px; margin: 0 0 28px; }
.eyebrow, .breadcrumbs { color: var(--teal); font-weight: 800; margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.trust-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.trust-row span, .stat-card, .service-card, .doctor-card, .lead-form, .help-card, .faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.trust-row span { padding: 14px; font-weight: 800; color: var(--navy); text-align: center; }
.hero-media { align-self: stretch; display: flex; align-items: flex-end; justify-content: center; }
.hero-shot {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow);
}

.section { padding: 72px 0; }
.section-muted { background: var(--ice); }
.section-dark { background: var(--navy); color: var(--white); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.section-head h2, .split h2, .cta-band h2 { margin: 0; color: var(--navy); font-size: clamp(28px, 3.5vw, 42px); line-height: 1.1; }
.section-dark .section-head h2, .invert h2 { color: var(--white); }
.section-head a { color: var(--blue); font-weight: 800; }
.cards { display: grid; gap: 20px; }
.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card {
  min-height: 138px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  align-items: start;
  gap: 8px 20px;
  padding: 24px 26px;
}
.service-card .icon {
  grid-column: 1;
  grid-row: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: transparent;
  color: var(--teal);
}
.service-card .icon .rexab-icon {
  width: 40px;
  height: 40px;
  stroke-width: 1.65;
}
.service-card h2, .service-card h3 {
  grid-column: 2 / 4;
  grid-row: 1;
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}
.service-card p {
  grid-column: 2 / 3;
  grid-row: 2 / 4;
  margin: 0;
  color: var(--muted);
}
.service-card a {
  grid-column: 3;
  grid-row: 3;
  display: inline-flex;
  align-items: center;
  align-self: end;
  justify-self: end;
  gap: 12px;
  color: var(--blue);
  font-weight: 800;
  white-space: nowrap;
}
.service-card a::after {
  content: "→";
  font-size: 24px;
  line-height: 1;
}
.service-card:hover,
.doctor-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(8, 43, 85, .10);
}
.service-card a:hover,
.doctor-card a:hover,
.section-head a:hover {
  color: var(--teal);
}
.steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.steps article { position: relative; text-align: center; }
.steps span {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
  font-weight: 900;
  border: 1px solid #bdece6;
}
.steps h3 { margin: 14px 0 6px; color: var(--navy); }
.steps p { margin: 0; color: var(--muted); font-size: 14px; }
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 42px; align-items: center; }
.rounded-img { border-radius: 8px; box-shadow: var(--shadow); width: 100%; max-height: 420px; object-fit: cover; object-position: top center; }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 24px 0; }
.stats strong { color: var(--teal); font-size: 30px; }
.stats span { display: block; color: var(--muted); font-size: 12px; }
.doctors-section .section-head {
  align-items: center;
}
.doctors-section__actions {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.carousel-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.carousel-btn {
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(8, 43, 85, .08);
}
.carousel-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.doctors-carousel {
  overflow: hidden;
}
.doctors-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 2px 2px 18px;
}
.doctors-grid::-webkit-scrollbar {
  display: none;
}
.doctor-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-height: 220px;
  display: grid;
  grid-template-columns: minmax(98px, 42%) minmax(0, 1fr);
  overflow: hidden;
  scroll-snap-align: start;
}
.doctor-card__photo {
  min-width: 0;
  background: linear-gradient(180deg, #f6f9fc, #eef5f8);
}
.doctor-card__photo img,
.doctor-card > img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center top;
  background: var(--ice);
}
.doctor-card div { padding: 22px 18px 16px; min-width: 0; }
.doctor-card h3 { margin: 0 0 8px; font-size: 17px; line-height: 1.28; color: var(--navy); }
.doctor-card p { margin: 0 0 8px; color: var(--muted); font-size: 14px; line-height: 1.45; }
.doctor-card span { color: var(--teal); font-weight: 800; font-size: 13px; }
.card-actions { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 18px; padding: 0 !important; }
.card-actions a:first-child { color: var(--blue); font-weight: 800; }
.card-actions .btn-small {
  flex: 0 0 auto;
  white-space: nowrap;
}
.doctors-page-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 42%, rgba(237,249,252,.76) 100%),
    url("../img/hero-bg.webp") center right / auto 100% no-repeat;
}
.doctors-page-hero__grid {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 44px;
}
.doctors-page-hero__content {
  padding: 58px 0;
}
.doctors-page-hero h1 {
  margin: 12px 0 18px;
  color: var(--navy);
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}
.doctors-page-hero p {
  max-width: 560px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}
.doctors-page-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
}
.doctors-page-hero__stats span {
  display: grid;
  grid-template-columns: 42px auto;
  align-items: center;
  column-gap: 12px;
}
.doctors-page-hero__stats .rexab-icon {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  color: var(--blue);
}
.doctors-page-hero__stats strong {
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
}
.doctors-page-hero__stats small {
  color: var(--muted);
  font-weight: 800;
}
.doctors-page-hero__image {
  align-self: stretch;
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 360px;
}
.doctors-page-hero__image img {
  width: min(100%, 680px);
  max-height: 360px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 34px rgba(8, 43, 85, .13));
}
.doctors-page-list .section-head p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
}
.doctors-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.doctor-profile-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 43, 85, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.doctor-profile-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 187, 178, .38);
  box-shadow: 0 20px 46px rgba(8, 43, 85, .12);
}
.doctor-profile-card__image {
  display: block;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(180deg, #f6f9fc, #eef5f8);
}
.doctor-profile-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .28s ease;
}
.doctor-profile-card:hover .doctor-profile-card__image img {
  transform: scale(1.025);
}
.doctor-profile-card__body {
  padding: 22px 20px 18px;
}
.doctor-profile-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.28;
}
.doctor-profile-card__role {
  min-height: 46px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.doctor-profile-card span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}
.doctor-profile-card__text {
  min-height: 44px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.doctor-profile-card .card-actions {
  margin-top: 20px;
}
.doctors-help {
  padding: 0 0 58px;
  background: var(--bg);
}
.doctors-help__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto auto auto;
  align-items: center;
  gap: 26px;
  padding: 22px 24px;
  border: 1px solid #bfe9e6;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(236, 253, 250, .96), rgba(255,255,255,.98));
  box-shadow: 0 14px 34px rgba(8, 43, 85, .07);
}
.doctors-help__intro {
  display: flex;
  align-items: center;
  gap: 18px;
}
.doctors-help__intro > .rexab-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  color: var(--teal);
}
.doctors-help h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 24px;
}
.doctors-help p {
  margin: 0;
  color: var(--muted);
}
.doctors-help__phone,
.doctors-help__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}
.doctors-help__phone:hover,
.doctors-help__whatsapp:hover {
  color: var(--teal);
}
.doctors-help__phone .rexab-icon,
.doctors-help__whatsapp .rexab-icon {
  width: 28px;
  height: 28px;
  color: var(--blue);
}
.doctors-help__whatsapp .rexab-icon {
  color: #18c878;
}
.doctors-help__phone small,
.doctors-help__whatsapp small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.doctor-single-hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 45%, rgba(237,249,252,.78) 100%),
    url("../img/hero-bg.webp") center right / auto 100% no-repeat;
  border-bottom: 1px solid var(--line);
}
.doctor-single-hero__grid {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: 46px;
}
.doctor-single-hero__content {
  padding: 56px 0;
}
.doctor-single-hero__role {
  margin: 0 0 8px;
  color: var(--muted);
  font-weight: 800;
}
.doctor-single-hero h1 {
  max-width: 620px;
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.06;
}
.doctor-single-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin: 0 0 24px;
}
.doctor-single-hero__facts span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}
.doctor-single-hero__facts .rexab-icon {
  width: 28px;
  height: 28px;
  color: var(--blue);
}
.doctor-single-hero__content > p:not(.breadcrumbs):not(.doctor-single-hero__role) {
  max-width: 610px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}
.doctor-single-hero__media {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 430px;
}
.doctor-single-hero__circle {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184, 241, 236, .9), rgba(212, 243, 251, .78));
}
.doctor-single-hero__photo {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: 420px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 34px rgba(8, 43, 85, .13));
}
.doctor-single-stats {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}
.doctor-single-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.doctor-single-stats article {
  min-height: 104px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-content: center;
  gap: 4px 12px;
  padding: 18px;
  border-right: 1px solid var(--line);
}
.doctor-single-stats article:last-child {
  border-right: 0;
}
.doctor-single-stats .rexab-icon {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  color: var(--teal);
}
.doctor-single-stats strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.25;
}
.doctor-single-stats span {
  color: var(--muted);
  font-size: 13px;
}
.doctor-single-main {
  padding-top: 54px;
}
.doctor-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 38px;
  align-items: start;
}
.doctor-single-content {
  display: grid;
  gap: 34px;
}
.doctor-single-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
  gap: 34px;
}
.doctor-single-block h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 28px;
}
.doctor-single-block p {
  color: var(--text);
  line-height: 1.7;
}
.doctor-timeline {
  display: grid;
  gap: 18px;
}
.doctor-timeline div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
}
.doctor-timeline time {
  color: var(--teal);
  font-weight: 900;
}
.doctor-timeline p {
  margin: 0;
  color: var(--text);
}
.doctor-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.doctor-service-grid article,
.doctor-review-grid article,
.doctor-side-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8, 43, 85, .06);
}
.doctor-service-grid article {
  min-height: 174px;
  padding: 20px;
}
.doctor-service-grid .rexab-icon {
  width: 34px;
  height: 34px;
  color: var(--teal);
  margin-bottom: 12px;
}
.doctor-service-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 17px;
}
.doctor-service-grid p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}
.doctor-service-grid strong {
  color: var(--teal);
  font-size: 14px;
}
.doctor-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.doctor-review-grid article {
  padding: 20px;
}
.doctor-review-grid strong {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
}
.doctor-review-grid span {
  display: block;
  color: #f5b626;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.doctor-review-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.doctor-single-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}
.doctor-single-aside .lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.doctor-side-card {
  padding: 22px;
}
.doctor-side-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
}
.doctor-side-card ul {
  list-style: none;
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
}
.doctor-side-card li,
.doctor-side-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}
.doctor-side-card .rexab-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--teal);
}
.doctor-side-card--help {
  background: linear-gradient(180deg, #eef8ff, #ffffff);
}
.doctor-side-card--help p {
  margin: 0 0 14px;
  color: var(--muted);
}
.doctor-side-card--help a {
  margin-top: 12px;
  color: var(--blue);
}
.doctor-side-card--help a:hover {
  color: var(--teal);
}
.doctor-single-cta {
  width: min(100% - 48px, 1400px);
  margin: 0 auto 42px;
}
.service-single-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-bottom: 1px solid var(--line);
  background: #f5fbfd;
}
.services-page-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 28%, rgba(184, 241, 236, .62) 0 180px, transparent 181px),
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.95) 48%, rgba(237,249,252,.86) 100%);
}
.services-page-hero__grid {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 44px;
}
.services-page-hero h1 {
  max-width: 680px;
  margin: 12px 0 18px;
  color: var(--navy);
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.05;
}
.services-page-hero p {
  max-width: 660px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}
.services-page-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.services-page-hero__stats span {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 34px rgba(8, 43, 85, .06);
}
.services-page-hero__stats .rexab-icon {
  width: 42px;
  height: 42px;
  color: var(--teal);
}
.services-page-hero__stats strong {
  color: var(--navy);
  font-size: 22px;
}
.services-page-hero__stats small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
}
.services-page-list .section-head p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
}
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.services-page-card {
  min-height: 250px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: 10px 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 43, 85, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.services-page-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 187, 178, .38);
  box-shadow: 0 20px 46px rgba(8, 43, 85, .12);
}
.services-page-card__icon {
  grid-row: 1 / 4;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--mint);
  color: var(--teal);
}
.services-page-card__icon .rexab-icon {
  width: 34px;
  height: 34px;
}
.services-page-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.24;
}
.services-page-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.services-page-card a {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
}
.services-page-card a::after {
  content: "→";
  font-size: 22px;
  line-height: 1;
}
.services-page-card a:hover {
  color: var(--teal);
}
.services-page-help {
  background: var(--white);
}
.about-page-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 45%, rgba(237,249,252,.72) 100%);
}
.about-page-hero__grid {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 44px;
}
.about-page-hero__content {
  padding: 58px 0;
}
.about-page-hero h1 {
  max-width: 620px;
  margin: 12px 0 18px;
  color: var(--navy);
  font-size: clamp(40px, 4vw, 62px);
  line-height: 1.08;
}
.about-page-hero p {
  max-width: 600px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}
.about-page-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin: 28px 0 24px;
}
.about-page-hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}
.about-page-hero__badges .rexab-icon {
  width: 30px;
  height: 30px;
  color: var(--blue);
}
.about-page-hero__media {
  align-self: stretch;
  min-height: 430px;
  overflow: hidden;
  border-radius: 0 0 0 80px;
}
.about-page-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}
.about-mission {
  margin-top: -24px;
  position: relative;
  z-index: 2;
}
.about-mission__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.about-mission article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 24px;
  padding: 34px;
  border-right: 1px solid var(--line);
}
.about-mission article:last-child {
  border-right: 0;
}
.about-mission .rexab-icon {
  width: 74px;
  height: 74px;
  padding: 18px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
}
.about-mission h2,
.about-advantages h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 36px);
}
.about-mission p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
}
.about-advantages__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.about-advantages__grid article {
  min-height: 152px;
  padding: 18px;
  border-right: 1px solid var(--line);
}
.about-advantages__grid article:last-child {
  border-right: 0;
}
.about-advantages__grid .rexab-icon {
  width: 36px;
  height: 36px;
  color: var(--teal);
}
.about-advantages__grid h3 {
  margin: 12px 0 6px;
  color: var(--navy);
  font-size: 15px;
}
.about-advantages__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.about-stats {
  padding: 12px 0 26px;
}
.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ice);
}
.about-stats article {
  min-height: 104px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-content: center;
  gap: 4px 14px;
  padding: 20px;
  border-right: 1px solid var(--line);
}
.about-stats article:last-child {
  border-right: 0;
}
.about-stats .rexab-icon {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  color: var(--teal);
}
.about-stats strong {
  color: var(--teal);
  font-size: 28px;
  line-height: 1;
}
.about-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.about-gallery {
  padding-top: 34px;
}
.about-gallery__row {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 14px;
}
.about-gallery__row img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(8, 43, 85, .08);
}
.about-gallery__row img.is-wide {
  height: 190px;
}
.about-certificates {
  padding-top: 32px;
}
.about-page-help {
  background: var(--white);
  padding-top: 0;
}
.service-single-hero__image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.service-single-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.96) 42%, rgba(255,255,255,.52) 68%, rgba(255,255,255,.08) 100%);
}
.service-single-hero__grid {
  position: relative;
  z-index: 2;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) 360px;
  align-items: center;
  gap: 54px;
}
.service-single-hero__content {
  padding: 58px 0;
}
.service-single-hero h1 {
  max-width: 640px;
  margin: 12px 0 18px;
  color: var(--navy);
  font-size: clamp(40px, 4vw, 62px);
  line-height: 1.06;
}
.service-single-hero__content > p:not(.breadcrumbs) {
  max-width: 640px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}
.service-single-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin: 26px 0 24px;
}
.service-single-hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}
.service-single-hero__badges .rexab-icon {
  width: 30px;
  height: 30px;
  color: var(--blue);
}
.service-single-hero__form {
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 46px rgba(8, 43, 85, .14);
}
.service-indications,
.service-process,
.service-advantages,
.service-prices,
.service-doctors-faq {
  padding-top: 42px;
  padding-bottom: 42px;
}
.service-indications h2,
.service-process h2,
.service-advantages h2,
.service-prices h2 {
  margin: 0 0 26px;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 36px);
}
.service-indications__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.service-indications__grid article {
  min-height: 122px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.service-indications__grid article:last-child {
  border-right: 0;
}
.service-indications__grid .rexab-icon,
.service-advantages__grid .rexab-icon {
  width: 42px;
  height: 42px;
  color: var(--teal);
}
.service-indications__grid p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}
.service-process__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.service-process__steps article {
  position: relative;
  min-height: 156px;
  text-align: center;
}
.service-process__steps article:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -12px;
  top: 38px;
  color: var(--teal);
  font-size: 22px;
  font-weight: 900;
}
.service-process__steps span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
  font-weight: 900;
}
.service-process__steps .rexab-icon {
  display: block;
  width: 30px;
  height: 30px;
  margin: 12px auto 10px;
  color: var(--teal);
}
.service-process__steps h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 16px;
}
.service-process__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.service-advantages__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.service-advantages__grid article {
  min-height: 146px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(8, 43, 85, .05);
}
.service-advantages__grid h3 {
  margin: 12px 0 6px;
  color: var(--navy);
  font-size: 15px;
}
.service-advantages__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.service-prices__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.service-prices__grid article {
  position: relative;
  min-height: 310px;
  padding: 30px 28px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 43, 85, .07);
}
.service-prices__grid article.is-featured {
  border-color: rgba(20, 187, 178, .36);
  box-shadow: 0 18px 44px rgba(20, 187, 178, .12);
}
.service-prices__label {
  position: absolute;
  left: 22px;
  right: 22px;
  top: -16px;
  min-height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}
.service-prices__grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
}
.service-prices__grid p {
  margin: 0 0 14px;
  color: var(--muted);
}
.service-prices__grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 28px;
}
.service-prices__grid ul {
  list-style: none;
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 0;
  margin: 0 0 18px;
}
.service-prices__grid li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
}
.service-prices__grid li .rexab-icon {
  width: 17px;
  height: 17px;
  color: var(--teal);
  margin-top: 1px;
}
.service-prices__grid .btn {
  width: 100%;
  justify-content: center;
}
.service-content-section {
  padding-top: 18px;
}
.service-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(8, 43, 85, .07);
}
.service-content h2:first-child {
  margin-top: 0;
}
.service-content h2,
.service-content h3 {
  color: var(--navy);
}
.service-content p,
.service-content li {
  color: var(--text);
  line-height: 1.72;
}
.service-content a {
  color: var(--blue);
  font-weight: 900;
}
.service-doctors-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: 38px;
}
.service-doctors {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-doctors article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8, 43, 85, .06);
}
.service-doctors img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center top;
  background: var(--ice);
}
.service-doctors h3 {
  margin: 14px 14px 6px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.3;
}
.service-doctors p {
  margin: 0 14px 8px;
  color: var(--muted);
  font-size: 13px;
}
.service-doctors span {
  display: block;
  margin: 0 14px 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}
.service-faq {
  display: grid;
  gap: 10px;
}
.service-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 43, 85, .05);
}
.service-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 900;
}
.service-faq p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}
.service-bottom-cta {
  padding: 0 0 54px;
}
.service-bottom-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 34px;
  align-items: center;
  min-height: 190px;
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 151, 148, .95), rgba(6, 65, 132, .90)),
    url("../img/cta-hands.webp") right center / auto 100% no-repeat;
  color: var(--white);
}
.service-bottom-cta h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 32px;
}
.service-bottom-cta p {
  color: rgba(255,255,255,.9);
}
.service-bottom-cta__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}
.service-bottom-cta__facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 900;
}
.service-bottom-cta__facts .rexab-icon {
  width: 22px;
  height: 22px;
}
.service-bottom-cta .lead-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  color: var(--white);
}
.service-bottom-cta .lead-form label,
.service-bottom-cta .lead-form p {
  margin: 0;
}
.service-bottom-cta .lead-form span {
  color: var(--white);
}
.service-bottom-cta .lead-form p {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.88);
}
.service-bottom-cta .lead-form p .rexab-icon {
  width: 16px;
  height: 16px;
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.reviews-grid article { background: var(--white); color: var(--text); border-radius: 8px; padding: 22px; }
.reviews-grid p { color: var(--muted); }
.reviews-grid span { color: var(--teal); font-weight: 800; }
.recovery-stories {
  padding: 34px 0;
  background: linear-gradient(135deg, #063064 0%, #06264f 48%, #073b78 100%);
  color: var(--white);
}
.recovery-stories__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.recovery-stories__head h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 2.5vw, 34px);
}
.carousel-btn--dark {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  color: var(--white);
  box-shadow: none;
}
.carousel-btn--dark:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.recovery-stories__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 2px 4px;
}
.recovery-stories__track::-webkit-scrollbar {
  display: none;
}
.recovery-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-height: 146px;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  background: rgba(255,255,255,.96);
  color: var(--text);
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
  scroll-snap-align: start;
}
.recovery-card__photo {
  width: 100%;
  height: 100%;
  min-height: 146px;
  object-fit: cover;
  object-position: center top;
  background: var(--ice);
}
.recovery-card__body {
  padding: 20px 22px;
}
.recovery-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.25;
}
.recovery-card p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}
.recovery-card p strong {
  color: var(--navy);
}
.media-reviews {
  padding-top: 66px;
}
.media-reviews__top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  gap: 42px;
  align-items: start;
}
.compact-head {
  margin-bottom: 18px;
}
.compact-head h2 {
  font-size: clamp(24px, 2.4vw, 34px);
}
.compact-head a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
  font-size: 14px;
}
.compact-head a::after {
  content: "→";
  font-size: 20px;
  line-height: 1;
}
.video-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.video-card__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ice);
  box-shadow: 0 14px 32px rgba(8, 43, 85, .10);
}
.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease, filter .28s ease;
}
.video-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,43,85,0) 45%, rgba(8,43,85,.52) 100%);
}
.video-card__thumb:hover img {
  transform: scale(1.035);
  filter: saturate(1.06);
}
.video-card__play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 28px rgba(8, 43, 85, .20);
}
.video-card__play::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 16px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--blue);
}
.video-card__time {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 8px;
  padding: 3px 7px;
  border-radius: 5px;
  background: rgba(8, 43, 85, .78);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}
.video-card h3 {
  margin: 12px 0 2px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.25;
}
.video-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.text-review__card {
  position: relative;
  min-height: 178px;
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.text-review__quote {
  position: absolute;
  left: 24px;
  top: 10px;
  color: #b9d8fa;
  font-size: 86px;
  line-height: 1;
  font-weight: 900;
}
.text-review__card p {
  position: relative;
  margin: 0 0 22px;
  padding-left: 44px;
  color: var(--text);
}
.text-review__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-left: 44px;
}
.text-review__footer strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
}
.text-review__footer span {
  color: var(--muted);
  font-size: 14px;
}
.text-review__stars {
  color: #ffba08 !important;
  letter-spacing: 2px;
  white-space: nowrap;
}
.certificates-strip {
  margin-top: 40px;
}
.certificates-strip__row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
.certificate-card {
  display: block;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8, 43, 85, .08);
}
.certificate-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(8, 43, 85, .12);
}
.certificate-card img {
  width: 100%;
  aspect-ratio: 1.44 / 1;
  object-fit: cover;
  border-radius: 6px;
}
.licenses-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 46%, rgba(237,249,252,.76) 100%);
}
.licenses-hero__grid {
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 44px;
}
.licenses-hero__content {
  padding: 54px 0;
}
.licenses-hero h1 {
  max-width: 620px;
  margin: 12px 0 18px;
  color: var(--navy);
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.08;
}
.licenses-hero p {
  max-width: 590px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}
.licenses-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 28px;
}
.licenses-hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}
.licenses-hero__badges .rexab-icon {
  width: 32px;
  height: 32px;
  color: var(--blue);
}
.licenses-hero__media {
  align-self: stretch;
  min-height: 390px;
  position: relative;
}
.licenses-hero__media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -90px;
  width: 180px;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,0));
}
.licenses-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
}
.licenses-summary {
  margin-top: -24px;
  position: relative;
  z-index: 2;
}
.licenses-summary__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.licenses-summary article {
  min-height: 118px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-content: center;
  gap: 4px 16px;
  padding: 22px;
  border-right: 1px solid var(--line);
}
.licenses-summary article:last-child {
  border-right: 0;
}
.licenses-summary .rexab-icon {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  color: var(--teal);
}
.licenses-summary strong {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.1;
}
.licenses-summary span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}
.licenses-filter {
  display: grid;
  grid-template-columns: 220px 220px minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(8, 43, 85, .06);
}
.licenses-filter label {
  display: grid;
  gap: 8px;
}
.licenses-filter span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}
.licenses-filter select,
.licenses-filter input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: var(--white);
  outline: none;
}
.licenses-filter select:focus,
.licenses-filter input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(20, 187, 178, .14);
}
.licenses-filter button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: var(--ice);
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.licenses-filter button:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 187, 178, .35);
  background: var(--mint);
}
.licenses-filter button .rexab-icon {
  width: 18px;
  height: 18px;
}
.licenses-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.license-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 43, 85, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.license-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 187, 178, .38);
  box-shadow: 0 20px 46px rgba(8, 43, 85, .12);
}
.license-card__image {
  position: relative;
  display: block;
  padding: 14px;
  background: linear-gradient(180deg, #f8fcfe, #ffffff);
}
.license-card__image img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 8px 24px rgba(8, 43, 85, .08);
}
.license-card__image span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  color: var(--blue);
}
.license-card__image .rexab-icon {
  width: 17px;
  height: 17px;
}
.license-card__body {
  display: grid;
  gap: 8px;
  padding: 0 18px 18px;
}
.license-card h3 {
  min-height: 48px;
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.3;
}
.license-card p,
.license-card small {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}
.license-card small {
  font-size: 13px;
}
.license-card__link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  font-weight: 900;
}
.license-card__link:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--mint);
}
.licenses-trust {
  padding-top: 12px;
}
.licenses-trust h2 {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 36px);
}
.licenses-trust__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ice);
}
.licenses-trust article {
  min-height: 152px;
  padding: 20px;
  border-right: 1px solid var(--line);
}
.licenses-trust article:last-child {
  border-right: 0;
}
.licenses-trust .rexab-icon {
  width: 34px;
  height: 34px;
  color: var(--teal);
}
.licenses-trust h3 {
  margin: 12px 0 7px;
  color: var(--navy);
  font-size: 15px;
}
.licenses-trust p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.licenses-question {
  padding: 18px 0 34px;
  background: var(--white);
}
.licenses-question__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: center;
  padding: 30px;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(20, 167, 155, .98), rgba(8, 43, 85, .82)),
    url("../img/cta-hands.webp") right center / auto 100% no-repeat;
  color: var(--white);
}
.licenses-question h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(25px, 3vw, 36px);
}
.licenses-question p {
  margin: 0;
  max-width: 560px;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
  font-weight: 700;
}
.licenses-question__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.licenses-question__links a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
}
.licenses-question__links a:hover {
  background: rgba(255,255,255,.14);
}
.licenses-question__links .rexab-icon {
  width: 24px;
  height: 24px;
}
.licenses-question .lead-form {
  background: rgba(255,255,255,.96);
}
.faq { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.faq details { padding: 18px 20px; box-shadow: none; }
.faq summary { cursor: pointer; font-weight: 800; color: var(--navy); }
.faq p { color: var(--muted); margin-bottom: 0; }
.cta-band {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: var(--white);
}
.cta-band h2 { color: var(--white); }
.cta-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.cta-points span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.35); border-radius: 7px; font-weight: 800; }
.contact-cta {
  padding: 34px 0 0;
  background: var(--white);
}
.contact-cta__bar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(560px, 1fr);
  align-items: center;
  gap: 26px;
  min-height: 112px;
  padding: 24px 250px 22px 34px;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(20, 167, 155, .98) 0%, rgba(26, 167, 176, .94) 48%, rgba(8, 43, 85, .36) 100%),
    url("../img/cta-hands.webp") right center / auto 100% no-repeat;
  color: var(--white);
  box-shadow: 0 18px 46px rgba(8, 43, 85, .14);
}
.contact-cta__copy h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
}
.contact-cta__copy p {
  margin: 0;
  color: rgba(255,255,255,.90);
  font-weight: 700;
}
.contact-cta__form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(160px, 1fr) minmax(190px, .9fr);
  gap: 14px;
  align-items: center;
}
.contact-cta__form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 7px;
  padding: 0 16px;
  background: rgba(255,255,255,.96);
  color: var(--text);
  font: inherit;
  box-shadow: 0 8px 22px rgba(8, 43, 85, .08);
}
.contact-cta__form button {
  width: 100%;
  min-height: 46px;
  border-radius: 7px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(8, 43, 85, .18);
}
.contact-cta__form button:hover {
  background: #064fa4;
}
.contact-cta__form p {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: -2px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 700;
}
.contact-cta__form p .rexab-icon {
  width: 16px;
  height: 16px;
  color: #d8f8b7;
}
.contact-cta__main {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 28px 0 32px;
}
.contact-cta__contacts {
  padding: 4px 0;
}
.contact-cta__contacts h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
}
.contact-cta__contacts ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}
.contact-cta__contacts li {
  color: var(--text);
  font-size: 15px;
}
.contact-cta__contacts .icon-link {
  align-items: flex-start;
  gap: 11px;
}
.contact-cta__contacts .rexab-icon {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  color: #2b7ed9;
}
.contact-cta__contacts .icon-link--whatsapp .rexab-icon {
  color: #18c878;
}
.contact-cta__map {
  min-height: 190px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ice);
}
.contact-cta__map img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}
.lead-form { padding: 22px; color: var(--text); }
.lead-form h3 { margin: 0 0 16px; color: var(--navy); }
.lead-form label { display: block; margin-bottom: 12px; }
.lead-form span { display: block; font-weight: 800; color: var(--navy); font-size: 13px; margin-bottom: 6px; }
.lead-form input, .lead-form textarea, .lead-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 14px;
  font: inherit;
}
.lead-form button { width: 100%; margin-top: 6px; }
.lead-form p { font-size: 12px; color: var(--muted); margin: 12px 0 0; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 42px; align-items: start; }
.content-body { font-size: 18px; }
.content-body h2 { color: var(--navy); margin-top: 36px; }
.content-body li { margin-bottom: 8px; }
.sticky-aside { position: sticky; top: 104px; display: grid; gap: 18px; }
.help-card { padding: 22px; }
.help-card h3 { margin-top: 0; color: var(--navy); }
.help-card a { display: block; color: var(--blue); font-weight: 800; margin-top: 10px; }
.site-footer {
  background: #052649;
  color: rgba(255,255,255,.78);
  padding: 54px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .95fr .95fr 1.05fr;
  gap: 46px;
}
.footer-brand {
  color: var(--white);
  margin-bottom: 18px;
}
.footer-brand .site-brand__text strong,
.footer-brand .site-brand__text small { color: var(--white); }
.footer-about p {
  max-width: 300px;
  margin: 0 0 20px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.site-footer h3 {
  color: var(--white);
  margin: 0 0 16px;
  font-size: 16px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li {
  margin-bottom: 10px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.site-footer a:hover { color: var(--white); }
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
}
.footer-socials a:hover {
  background: rgba(255,255,255,.10);
  transform: translateY(-2px);
}
.footer-socials .rexab-icon {
  width: 16px;
  height: 16px;
}
.footer-contacts li { padding-left: 0; }
.site-footer .icon-link {
  align-items: flex-start;
}
.site-footer .icon-link .rexab-icon {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: rgba(255,255,255,.82);
}
.site-footer .icon-link--whatsapp .rexab-icon {
  color: #18c878;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.13);
  margin-top: 38px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.contacts-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 45%, rgba(237,249,252,.72) 100%);
}
.contacts-hero__grid {
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(560px, 1.12fr);
  align-items: center;
  gap: 44px;
}
.contacts-hero__content {
  padding: 54px 0;
}
.contacts-hero h1 {
  max-width: 620px;
  margin: 12px 0 18px;
  color: var(--navy);
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.08;
}
.contacts-hero p {
  max-width: 580px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}
.contacts-hero__badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 14px 34px rgba(8, 43, 85, .08);
}
.contacts-hero__badges span {
  min-height: 90px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-content: center;
  gap: 4px 12px;
  padding: 16px;
  border-right: 1px solid var(--line);
}
.contacts-hero__badges span:last-child {
  border-right: 0;
}
.contacts-hero__badges .rexab-icon {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  padding: 7px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
}
.contacts-hero__badges strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.2;
}
.contacts-hero__badges small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}
.contacts-hero__media {
  align-self: stretch;
  min-height: 390px;
  position: relative;
}
.contacts-hero__media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -120px;
  width: 240px;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,0));
}
.contacts-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
}
.contacts-main {
  background: var(--white);
}
.contacts-main__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .82fr);
  gap: 34px;
  align-items: start;
}
.contacts-map-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--ice);
  box-shadow: 0 14px 34px rgba(8, 43, 85, .08);
}
.contacts-map-card__image {
  position: absolute;
  inset: 0;
}
.contacts-map-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contacts-map-card__pin {
  position: absolute;
  left: 48%;
  top: 24%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(20, 167, 155, .34);
}
.contacts-map-card__pin .rexab-icon {
  width: 30px;
  height: 30px;
}
.contacts-map-card__zoom {
  position: absolute;
  right: 22px;
  top: 22px;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 24px rgba(8, 43, 85, .1);
}
.contacts-map-card__zoom span {
  width: 36px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}
.contacts-map-card__zoom span + span {
  border-top: 1px solid var(--line);
}
.contacts-info-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(430px, calc(100% - 48px));
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 44px rgba(8, 43, 85, .12);
}
.contacts-info-card dl {
  margin: 0;
  display: grid;
}
.contacts-info-card dl > div {
  display: grid;
  grid-template-columns: minmax(120px, .55fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contacts-info-card dl > div:last-child {
  border-bottom: 0;
}
.contacts-info-card dt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
}
.contacts-info-card dt .rexab-icon {
  width: 24px;
  height: 24px;
  color: var(--teal);
}
.contacts-info-card dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.35;
}
.contacts-info-card dd a {
  color: inherit;
}
.contact-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}
.contact-inline-link .rexab-icon {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--teal) !important;
}
.contacts-info-card dd small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}
.contacts-form {
  display: grid;
  gap: 14px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(8, 43, 85, .09);
}
.contacts-form h2 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 34px);
}
.contacts-form > p {
  margin: 0 0 6px;
  color: var(--muted);
}
.contacts-form label {
  display: grid;
  gap: 7px;
}
.contacts-form label span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}
.contacts-form input,
.contacts-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contacts-form input {
  min-height: 50px;
  padding: 0 16px;
}
.contacts-form textarea {
  min-height: 132px;
  resize: vertical;
  padding: 14px 16px;
}
.contacts-form input:focus,
.contacts-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(20, 187, 178, .14);
}
.contacts-form__agree {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px !important;
}
.contacts-form__agree input {
  min-height: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}
.contacts-form__agree span {
  margin: 0;
  color: var(--muted) !important;
  font-size: 13px !important;
  line-height: 1.35;
}
.contacts-form button {
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(20, 167, 155, .2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.contacts-form button:hover {
  transform: translateY(-2px);
  background: #07998f;
  box-shadow: 0 18px 36px rgba(20, 167, 155, .28);
}
.contacts-form__secure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted) !important;
  font-size: 12px;
}
.contacts-form__secure .rexab-icon {
  width: 17px;
  height: 17px;
  color: var(--teal);
}
.contacts-methods {
  padding: 10px 0 54px;
  background: var(--white);
}
.contacts-methods h2 {
  margin: 0 0 24px;
  color: var(--navy);
  text-align: center;
  font-size: clamp(26px, 3vw, 36px);
}
.contacts-methods__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--ice);
}
.contacts-methods article {
  min-height: 196px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.contacts-methods article:last-child {
  border-right: 0;
}
.contacts-methods .rexab-icon {
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--blue);
}
.contacts-methods .contact-inline-link .rexab-icon {
  width: 18px !important;
  height: 18px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--teal) !important;
}
.contacts-methods h3 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
}
.contacts-methods p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}
.contacts-methods a,
.contacts-methods span {
  color: var(--teal);
  font-weight: 900;
}
.reviews-page-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 45%, rgba(237,249,252,.70) 100%);
}
.reviews-page-hero__grid {
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(560px, 1.08fr);
  align-items: center;
  gap: 44px;
}
.reviews-page-hero__content {
  padding: 54px 0;
}
.reviews-page-hero h1 {
  max-width: 680px;
  margin: 12px 0 18px;
  color: var(--navy);
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.08;
}
.reviews-page-hero p {
  max-width: 610px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}
.reviews-page-hero__media {
  align-self: stretch;
  min-height: 390px;
  position: relative;
}
.reviews-page-hero__media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -120px;
  width: 240px;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,0));
}
.reviews-page-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
}
.reviews-page-stats {
  margin-top: -24px;
  position: relative;
  z-index: 2;
}
.reviews-page-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.reviews-page-stats article {
  min-height: 112px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-content: center;
  gap: 4px 14px;
  padding: 22px;
  border-right: 1px solid var(--line);
}
.reviews-page-stats article:last-child {
  border-right: 0;
}
.reviews-page-stats .rexab-icon {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  color: var(--teal);
}
.reviews-page-stats strong {
  color: var(--navy);
  font-size: 23px;
  line-height: 1.08;
}
.reviews-page-stats span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}
.reviews-page-videos {
  padding-top: 58px;
}
.reviews-page-videos .container {
  position: relative;
}
.reviews-page-videos__track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.reviews-page-videos__track::-webkit-scrollbar {
  display: none;
}
.reviews-page-video {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  scroll-snap-align: start;
}
.reviews-page-videos__controls {
  position: absolute;
  right: 0;
  top: 0;
}
.reviews-page-written {
  padding-top: 30px;
}
.reviews-page-written__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.reviews-page-review {
  min-height: 285px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 43, 85, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.reviews-page-review:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 187, 178, .38);
  box-shadow: 0 20px 46px rgba(8, 43, 85, .12);
}
.reviews-page-review__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.reviews-page-review__stars {
  color: #ffba08;
  letter-spacing: 1px;
  white-space: nowrap;
}
.reviews-page-review time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.reviews-page-review p {
  margin: 0;
  color: var(--text);
  line-height: 1.62;
}
.reviews-page-review__author {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
.reviews-page-review__author .rexab-icon {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
}
.reviews-page-review__author strong,
.reviews-page-review__author small {
  display: block;
}
.reviews-page-review__author strong {
  color: var(--navy);
}
.reviews-page-review__author small {
  color: var(--muted);
}
.reviews-page-trust {
  padding: 18px 0 34px;
  background: var(--white);
}
.reviews-page-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--ice);
}
.reviews-page-trust article {
  min-height: 156px;
  padding: 22px;
  border-right: 1px solid var(--line);
}
.reviews-page-trust article:last-child {
  border-right: 0;
}
.reviews-page-trust .rexab-icon {
  width: 38px;
  height: 38px;
  color: var(--teal);
}
.reviews-page-trust h3 {
  margin: 12px 0 7px;
  color: var(--navy);
  font-size: 17px;
}
.reviews-page-trust p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.reviews-page-cta {
  padding: 0 0 34px;
  background: var(--white);
}
.reviews-page-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: center;
  padding: 32px;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(20, 167, 155, .98), rgba(8, 43, 85, .82)),
    url("../img/cta-hands.webp") right center / auto 100% no-repeat;
  color: var(--white);
}
.reviews-page-cta h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(25px, 3vw, 36px);
}
.reviews-page-cta p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
  font-weight: 700;
}
.reviews-page-cta .lead-form {
  background: rgba(255,255,255,.96);
}
.blog-page-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 45%, rgba(237,249,252,.72) 100%);
}
.blog-page-hero__grid {
  min-height: 390px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: 44px;
}
.blog-page-hero__content {
  padding: 54px 0;
}
.blog-page-hero h1,
.blog-single-hero h1 {
  max-width: 720px;
  margin: 12px 0 18px;
  color: var(--navy);
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.08;
}
.blog-page-hero p,
.blog-single-hero__content > p {
  max-width: 650px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}
.blog-page-hero__media {
  align-self: stretch;
  min-height: 390px;
  position: relative;
}
.blog-page-hero__media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -120px;
  width: 240px;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,0));
}
.blog-page-hero__media img,
.blog-single-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
}
.blog-page-hero__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 760px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 34px rgba(8, 43, 85, .08);
}
.blog-page-hero__features span {
  min-height: 86px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-content: center;
  gap: 10px;
  padding: 16px;
  border-right: 1px solid var(--line);
}
.blog-page-hero__features span:last-child {
  border-right: 0;
}
.blog-page-hero__features .rexab-icon {
  width: 32px;
  height: 32px;
  color: var(--teal);
}
.blog-page-hero__features strong {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.25;
}
.blog-page-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}
.blog-page-sidebar,
.blog-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
}
.blog-side-card,
.blog-sidebar-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 43, 85, .07);
}
.blog-side-card h2,
.blog-sidebar-card h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 22px;
}
.blog-side-card ul {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-side-card li a {
  min-height: 42px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text);
  font-weight: 800;
}
.blog-side-card li a:hover {
  color: var(--teal);
}
.blog-side-card li .rexab-icon {
  width: 20px;
  height: 20px;
  color: var(--teal);
}
.blog-side-card li small {
  color: var(--muted);
  font-weight: 800;
}
.blog-search,
.blog-subscribe {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.blog-search {
  grid-template-columns: minmax(0, 1fr) 46px;
}
.blog-search input,
.blog-subscribe input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
}
.blog-search button,
.blog-subscribe button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}
.blog-search button .rexab-icon {
  width: 18px;
  height: 18px;
}
.blog-side-card--help {
  color: var(--white);
  background: linear-gradient(150deg, var(--teal), var(--navy));
}
.blog-side-card--help h2,
.blog-side-card--help p,
.blog-side-card--help a,
.blog-side-card--help small {
  color: var(--white);
}
.blog-side-card--help .icon-link {
  margin-top: 12px;
}
.blog-side-card--help .rexab-icon {
  color: var(--white);
}
.blog-side-card--help .btn {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}
.blog-side-card--subscribe small {
  display: inline-flex;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.blog-side-card--subscribe small .rexab-icon {
  width: 16px;
  height: 16px;
  color: var(--teal);
}
.blog-page-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.blog-page-toolbar h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 36px);
}
.blog-page-toolbar label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}
.blog-page-toolbar select {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: var(--white);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 43, 85, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 187, 178, .38);
  box-shadow: 0 20px 46px rgba(8, 43, 85, .12);
}
.blog-card__image {
  display: block;
  overflow: hidden;
  background: var(--ice);
}
.blog-card__image img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  transition: transform .28s ease;
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.035);
}
.blog-card__body {
  display: grid;
  gap: 12px;
  padding: 18px;
}
.blog-card__meta,
.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.blog-card__meta span {
  padding: 5px 9px;
  border-radius: 6px;
  background: var(--mint);
  color: var(--teal);
}
.blog-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.28;
}
.blog-card h3 a {
  color: inherit;
}
.blog-card h3 a:hover {
  color: var(--blue);
}
.blog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.blog-card__footer {
  margin-top: 2px;
}
.blog-card__footer span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blog-card__footer .rexab-icon {
  width: 15px;
  height: 15px;
}
.blog-card__link {
  margin-left: auto;
  color: var(--teal);
  font-weight: 900;
  white-space: nowrap;
}
.blog-card__link::after {
  content: " →";
}
.blog-pagination {
  margin-top: 28px;
}
.blog-page-help {
  background: var(--white);
  padding-top: 0;
}
.blog-single-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 48%, rgba(237,249,252,.76) 100%);
}
.blog-single-hero__grid {
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(500px, 1.05fr);
  align-items: center;
  gap: 48px;
}
.blog-single-hero__content {
  padding: 58px 0;
}
.blog-badge {
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--mint);
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}
.blog-single-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 24px;
}
.blog-single-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}
.blog-single-hero__meta .rexab-icon {
  width: 22px;
  height: 22px;
  color: var(--blue);
}
.blog-single-hero__media {
  align-self: stretch;
  min-height: 440px;
}
.blog-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
}
.blog-single-content {
  max-width: 860px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 43, 85, .06);
}
.blog-single-content h2,
.blog-single-content h3 {
  color: var(--navy);
}
.blog-single-content p,
.blog-single-content li {
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}
.blog-single-content a {
  color: var(--blue);
  font-weight: 900;
}
.blog-sidebar .lead-form {
  background: var(--white);
}
.blog-sidebar-card p {
  color: var(--muted);
  line-height: 1.55;
}
.blog-sidebar-card .icon-link {
  margin-top: 12px;
}
.blog-related {
  padding-top: 0;
}
.blog-grid--related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.prices-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 26%, rgba(184, 241, 236, .62) 0 190px, transparent 191px),
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.95) 48%, rgba(237,249,252,.86) 100%);
}
.prices-hero__grid {
  min-height: 360px;
  display: grid;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
}
.prices-hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  color: var(--navy);
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.06;
}
.prices-hero p {
  max-width: 760px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}
.prices-hero__badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 14px;
  margin-top: 28px;
}
.prices-hero__badges span {
  min-height: 92px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-content: center;
  gap: 4px 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 34px rgba(8, 43, 85, .06);
}
.prices-hero__badges .rexab-icon {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  color: var(--teal);
}
.prices-hero__badges strong {
  color: var(--navy);
  font-size: 16px;
}
.prices-hero__badges small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}
.prices-programs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.prices-programs__grid article {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 43, 85, .07);
}
.prices-programs__grid article.is-featured {
  border-color: rgba(20, 187, 178, .48);
  box-shadow: 0 20px 48px rgba(20, 167, 155, .13);
}
.prices-programs__label {
  position: absolute;
  left: 28px;
  right: 28px;
  top: -14px;
  min-height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}
.prices-programs__grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}
.prices-programs__grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.prices-programs__grid strong {
  color: var(--teal);
  font-size: 28px;
  line-height: 1.1;
}
.prices-programs__grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.prices-programs__grid li {
  display: flex;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}
.prices-programs__grid li .rexab-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--teal);
}
.prices-table-section {
  padding-top: 28px;
}
.prices-table-section .section-head p {
  max-width: 820px;
  margin: 10px 0 0;
  color: var(--muted);
}
.prices-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 43, 85, .07);
}
.prices-table {
  width: 100%;
  border-collapse: collapse;
}
.prices-table th,
.prices-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.prices-table tr:last-child td {
  border-bottom: 0;
}
.prices-table th {
  color: var(--navy);
  background: var(--ice);
  font-size: 14px;
  font-weight: 900;
}
.prices-table td {
  color: var(--text);
  line-height: 1.5;
}
.prices-table td:first-child a {
  color: var(--navy);
  font-weight: 900;
}
.prices-table td:first-child a:hover,
.prices-table__link:hover {
  color: var(--teal);
}
.prices-table td strong {
  color: var(--teal);
  white-space: nowrap;
}
.prices-table__link {
  color: var(--blue);
  font-weight: 900;
  white-space: nowrap;
}
.prices-note {
  padding-top: 20px;
}
.prices-note__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.prices-note article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--ice);
}
.prices-note .rexab-icon {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  padding: 12px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
}
.prices-note h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}
.prices-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.prices-help {
  background: var(--white);
  padding-top: 0;
}

.not-found-page {
  overflow: hidden;
  padding: 72px 0 82px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 20%, rgba(20, 187, 178, .18) 0 190px, transparent 191px),
    linear-gradient(115deg, #fff 0%, #fff 48%, rgba(235, 249, 252, .92) 100%);
}
.not-found-page__grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .78fr);
  align-items: center;
  gap: 56px;
}
.not-found-page__content {
  max-width: 720px;
}
.not-found-page__code {
  display: inline-flex;
  margin: 18px 0 14px;
  color: var(--teal);
  font-size: clamp(70px, 10vw, 132px);
  line-height: .9;
  font-weight: 900;
  letter-spacing: 0;
}
.not-found-page h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
}
.not-found-page__content > p:not(.breadcrumbs) {
  max-width: 590px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}
.not-found-page__phone {
  width: fit-content;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}
.not-found-page__phone .rexab-icon {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--blue);
}
.not-found-page__phone small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}
.not-found-page__panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 24px 70px rgba(8, 43, 85, .12);
  backdrop-filter: blur(14px);
}
.not-found-page__panel h2 {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 28px;
}
.not-found-page__links {
  display: grid;
  gap: 12px;
}
.not-found-page__links a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.not-found-page__links a:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 187, 178, .4);
  box-shadow: 0 16px 34px rgba(8, 43, 85, .1);
}
.not-found-page__links .rexab-icon {
  width: 48px;
  height: 48px;
  padding: 11px;
  border-radius: 10px;
  background: var(--mint);
  color: var(--teal);
}
.not-found-page__links strong,
.not-found-page__links small {
  display: block;
}
.not-found-page__links strong {
  margin-bottom: 4px;
  font-size: 17px;
}
.not-found-page__links small {
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 1180px) {
  .container { width: min(100% - 40px, 1120px); }
  .header-inner { grid-template-columns: auto minmax(320px, 1fr) auto; gap: 20px; }
  .primary-nav ul { gap: 16px; }
  .header-cta { padding: 0 18px; }
  .home-hero__grid { grid-template-columns: 430px minmax(0, 1fr); gap: 26px; }
  .home-hero h1 { font-size: 48px; }
  .hero-stat { width: 190px; grid-template-columns: 38px minmax(0, 1fr); column-gap: 12px; padding: 16px; }
  .hero-stat .rexab-icon { width: 34px; height: 34px; padding: 7px; }
  .hero-stat strong { font-size: 24px; }
  .home-hero__circle--main { left: 80px; }
  .doctors-page-hero__grid {
    grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
    gap: 28px;
  }
  .doctors-page-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .doctor-card { flex-basis: calc((100% - 40px) / 3); }
  .doctor-card { grid-template-columns: 1fr; }
  .doctor-card__photo img,
  .doctor-card > img { height: 250px; min-height: 250px; }
}

@media (max-width: 1024px) {
  .header-inner { grid-template-columns: auto auto; gap: 16px; }
  .primary-nav { grid-column: 1 / -1; order: 4; }
  .primary-nav ul { gap: 14px; }
  .header-actions { margin-left: auto; }
  .header-phone { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding: 50px 0; }
  .home-hero__grid,
  .about-preview__grid { grid-template-columns: 1fr; }
  .home-hero__content { padding-bottom: 8px; }
  .home-hero__badges { max-width: 620px; }
  .home-hero__visual { min-height: 500px; }
  .home-hero__doctor { width: min(560px, 76%); }
  .hero-stat { right: 70px; }
  .home-hero__circle--main { width: 430px; height: 430px; left: 50%; top: 44px; transform: translateX(-50%); }
  .feature-strip__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-strip article:nth-child(3) { border-right: 0; }
  .feature-strip article:nth-child(n+4) { border-top: 1px solid var(--line); }
  .doctors-help__inner { grid-template-columns: minmax(0, 1fr) auto; }
  .doctors-help__intro { grid-column: 1 / -1; }
  .doctor-single-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    gap: 28px;
  }
  .doctor-single-stats__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .doctor-single-stats article:nth-child(3) { border-right: 0; }
  .doctor-single-stats article:nth-child(n+4) { border-top: 1px solid var(--line); }
  .doctor-single-layout { grid-template-columns: 1fr; }
  .doctor-single-aside { position: static; }
  .service-single-hero__grid {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
  }
  .services-page-hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 46px;
    padding-bottom: 46px;
  }
  .services-page-hero__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .services-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-page-hero__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-page-hero__content {
    padding: 48px 0 28px;
  }
  .about-page-hero__media {
    min-height: 320px;
    border-radius: 8px;
  }
  .about-page-hero__media img {
    min-height: 320px;
  }
  .about-advantages__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .about-advantages__grid article:nth-child(3n) { border-right: 0; }
  .about-stats__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .about-stats article:nth-child(3) { border-right: 0; }
  .about-stats article:nth-child(n+4) { border-top: 1px solid var(--line); }
  .about-gallery__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .service-indications__grid,
  .service-advantages__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .service-indications__grid article:nth-child(3n) { border-right: 0; }
  .service-process__steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-process__steps article::after { display: none; }
  .service-prices__grid,
  .service-doctors-faq__grid,
  .service-bottom-cta__inner {
    grid-template-columns: 1fr;
  }
  .service-doctors { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-media { align-self: auto; }
  .hero-shot { max-height: 440px; }
  .services-grid, .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .media-reviews__top { grid-template-columns: 1fr; }
  .certificates-strip__row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .licenses-hero__grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 46px;
    padding-bottom: 34px;
  }
  .licenses-hero__content { padding: 0 0 28px; }
  .licenses-hero__media {
    min-height: 300px;
    overflow: hidden;
    border-radius: 8px;
  }
  .licenses-hero__media::before { display: none; }
  .licenses-hero__media img { min-height: 300px; }
  .licenses-summary__grid,
  .licenses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .licenses-summary article:nth-child(2n),
  .licenses-trust article:nth-child(3n) {
    border-right: 0;
  }
  .licenses-summary article:nth-child(n+3),
  .licenses-trust article:nth-child(n+4) {
    border-top: 1px solid var(--line);
  }
  .licenses-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .licenses-filter__search,
  .licenses-filter button {
    grid-column: auto;
  }
  .licenses-trust__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .licenses-question__inner {
    grid-template-columns: 1fr;
    background-size: auto 100%;
  }
  .recovery-card { flex-basis: calc((100% - 20px) / 2); }
  .doctor-card { flex-basis: calc((100% - 20px) / 2); }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .split, .content-layout, .cta-band { grid-template-columns: 1fr; }
  .contact-cta__bar {
    grid-template-columns: 1fr;
    padding-right: 220px;
    background-size: auto 100%;
  }
  .contact-cta__form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .contact-cta__main {
    grid-template-columns: 280px minmax(0, 1fr);
  }
  .contacts-hero__grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 46px;
    padding-bottom: 34px;
  }
  .contacts-hero__content { padding: 0 0 28px; }
  .contacts-hero__media {
    min-height: 300px;
    overflow: hidden;
    border-radius: 8px;
  }
  .contacts-hero__media::before { display: none; }
  .contacts-hero__media img { min-height: 300px; }
  .contacts-main__grid {
    grid-template-columns: 1fr;
  }
  .contacts-map-card {
    min-height: 520px;
  }
  .contacts-methods__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .contacts-methods article:nth-child(3) {
    border-right: 0;
  }
  .contacts-methods article:nth-child(n+4) {
    border-top: 1px solid var(--line);
  }
  .reviews-page-hero__grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 46px;
    padding-bottom: 34px;
  }
  .reviews-page-hero__content { padding: 0 0 28px; }
  .reviews-page-hero__media {
    min-height: 300px;
    overflow: hidden;
    border-radius: 8px;
  }
  .reviews-page-hero__media::before { display: none; }
  .reviews-page-hero__media img { min-height: 300px; }
  .reviews-page-stats__grid,
  .reviews-page-written__grid,
  .reviews-page-trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .reviews-page-stats article:nth-child(2n),
  .reviews-page-trust article:nth-child(2n) {
    border-right: 0;
  }
  .reviews-page-stats article:nth-child(n+3),
  .reviews-page-trust article:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }
  .reviews-page-video {
    flex-basis: calc((100% - 22px) / 2);
  }
  .reviews-page-cta__inner {
    grid-template-columns: 1fr;
  }
  .blog-page-hero__grid,
  .blog-single-hero__grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 46px;
    padding-bottom: 34px;
  }
  .blog-page-hero__content,
  .blog-single-hero__content {
    padding: 0 0 28px;
  }
  .blog-page-hero__media,
  .blog-single-hero__media {
    min-height: 300px;
    overflow: hidden;
    border-radius: 8px;
  }
  .blog-page-hero__media::before { display: none; }
  .blog-page-hero__media img,
  .blog-single-hero__media img {
    min-height: 300px;
  }
  .blog-page-layout,
  .blog-single-layout {
    grid-template-columns: 1fr;
  }
  .blog-page-sidebar,
  .blog-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
  .blog-grid,
  .blog-grid--related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .prices-programs__grid {
    grid-template-columns: 1fr;
  }
  .prices-programs__grid article {
    min-height: 0;
  }
  .not-found-page__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sticky-aside { position: static; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 66px; display: flex; justify-content: space-between; gap: 12px; }
  .nav-toggle { display: inline-flex; }
  .nav-toggle { align-items: center; justify-content: center; flex-direction: column; }
  .primary-nav {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 74px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 16px;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { display: grid; gap: 12px; justify-content: stretch; }
  .header-actions { gap: 8px; margin-left: 0; }
  .header-whatsapp { width: 38px; height: 38px; }
  .header-cta { display: none; }
  .site-brand__text strong { font-size: 17px; }
  .site-brand__mark { width: 38px; height: 38px; }
  .hero-grid { min-height: 0; gap: 24px; padding: 34px 0; }
  .home-hero {
    background-image:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 48%, rgba(239,249,252,.68) 100%),
      url("../img/hero-bg.webp");
    background-position: center, center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%, auto 58%;
  }
  .home-hero:after { display: none; }
  .home-hero__grid { min-height: 0; gap: 18px; }
  .home-hero__content { padding: 34px 0 0; }
  .home-hero h1 { max-width: 430px; font-size: 35px; line-height: 1.12; }
  .home-hero p { margin-bottom: 18px; font-size: 16px; line-height: 1.48; }
  .home-hero__badges { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 18px 0 20px; }
  .home-hero__badges span { min-height: 44px; padding: 9px 10px; font-size: 11px; }
  .home-hero__badges .rexab-icon { width: 20px; height: 20px; }
  .home-hero__actions { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 20px 0 14px; }
  .home-hero__actions .btn { width: 100%; justify-content: center; min-height: 50px; padding: 0 10px; font-size: 12px; white-space: nowrap; }
  .home-hero__phone { font-size: 18px; }
  .home-hero__phone .rexab-icon { width: 22px; height: 22px; }
  .home-hero__visual {
    min-height: 430px;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    padding-bottom: 92px;
  }
  .home-hero__doctor { width: min(100%, 430px); max-height: 350px; }
  .hero-stat {
    top: auto;
    bottom: 16px;
    width: calc((100% - 44px) / 3);
    min-height: 66px;
    grid-template-columns: 28px 1fr;
    column-gap: 8px;
    padding: 10px 9px;
    border-radius: 10px;
  }
  .hero-stat .rexab-icon {
    display: block;
    width: 24px;
    height: 24px;
    padding: 4px;
    border-radius: 8px;
  }
  .hero-stat strong { font-size: clamp(14px, 3.9vw, 17px); }
  .hero-stat span { font-size: 11px; margin-top: 1px; }
  .hero-stat:hover { transform: none; }
  .hero-stat--top { left: 14px; right: auto; }
  .hero-stat--middle,
  .hero-stat--middle:hover { left: 50%; right: auto; transform: translateX(-50%); }
  .hero-stat--bottom { left: auto; right: 14px; }
  .home-hero__circle--main { width: 300px; height: 300px; left: 50%; top: 38px; transform: translateX(-50%); }
  .doctors-page-hero {
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 56%, rgba(237,249,252,.78) 100%),
      url("../img/hero-bg.webp") center bottom / auto 58% no-repeat;
  }
  .doctors-page-hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .doctors-page-hero__content { padding: 34px 0 8px; }
  .doctors-page-hero h1 { font-size: 38px; }
  .doctors-page-hero p { font-size: 16px; }
  .doctors-page-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
  }
  .doctors-page-hero__stats span {
    min-height: 74px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.78);
  }
  .doctors-page-hero__stats .rexab-icon { width: 34px; height: 34px; }
  .doctors-page-hero__stats strong { font-size: 22px; }
  .doctors-page-hero__image { min-height: 230px; }
  .doctors-page-hero__image img { max-height: 260px; }
  .doctors-page-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .doctor-profile-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
  }
  .doctor-profile-card__image { height: 230px; }
  .doctor-profile-card__body { padding: 18px 16px 16px; }
  .doctor-profile-card h3 { font-size: 18px; }
  .doctor-profile-card__role,
  .doctor-profile-card__text {
    min-height: 0;
    font-size: 13px;
  }
  .doctor-profile-card .card-actions {
    align-items: center;
    gap: 8px;
  }
  .doctor-profile-card .btn-small {
    min-width: 112px;
    padding: 0 12px;
    text-align: center;
  }
  .doctors-help { padding-bottom: 42px; }
  .doctors-help__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }
  .doctors-help__intro { align-items: flex-start; }
  .doctors-help .btn {
    width: 100%;
    justify-content: center;
  }
  .doctor-single-hero {
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 56%, rgba(237,249,252,.78) 100%),
      url("../img/hero-bg.webp") center bottom / auto 58% no-repeat;
  }
  .doctor-single-hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .doctor-single-hero__content { padding: 34px 0 8px; }
  .doctor-single-hero h1 { font-size: 36px; }
  .doctor-single-hero__facts { gap: 10px; }
  .doctor-single-hero__facts span {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.78);
  }
  .doctor-single-hero__media {
    min-height: 300px;
  }
  .doctor-single-hero__circle {
    left: 50%;
    right: auto;
    width: 280px;
    height: 280px;
    transform: translateX(-50%);
  }
  .doctor-single-hero__photo {
    max-height: 300px;
  }
  .doctor-single-stats {
    margin-top: 0;
    padding-top: 14px;
    background: var(--white);
  }
  .doctor-single-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .doctor-single-stats article {
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }
  .doctor-single-stats article:nth-child(odd) { border-right: 1px solid var(--line); }
  .doctor-single-stats article:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .doctor-single-main { padding-top: 42px; }
  .doctor-single-columns,
  .doctor-service-grid,
  .doctor-review-grid {
    grid-template-columns: 1fr;
  }
  .doctor-single-block h2 { font-size: 25px; }
  .doctor-single-cta {
    width: min(100% - 28px, 1400px);
    margin-bottom: 32px;
  }
  .service-single-hero {
    min-height: 0;
    background: #f5fbfd;
  }
  .service-single-hero__image {
    width: 100%;
    opacity: .28;
  }
  .service-single-hero::before {
    background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 58%, rgba(255,255,255,.76) 100%);
  }
  .service-single-hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 34px;
    padding-bottom: 34px;
  }
  .service-single-hero__content { padding: 0; }
  .service-single-hero h1 { font-size: 36px; }
  .service-single-hero__badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .service-single-hero__badges span {
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.82);
  }
  .service-single-hero__form { box-shadow: var(--shadow); }
  .licenses-hero__grid {
    min-height: 0;
    padding-top: 34px;
    padding-bottom: 28px;
  }
  .licenses-hero__content { padding: 0; }
  .licenses-hero h1 { font-size: 34px; }
  .licenses-hero p { font-size: 16px; }
  .licenses-hero__badges {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
  .licenses-hero__badges span {
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.82);
  }
  .licenses-hero__media,
  .licenses-hero__media img {
    min-height: 230px;
  }
  .licenses-summary {
    margin-top: 0;
    padding-top: 14px;
  }
  .licenses-summary__grid,
  .licenses-filter,
  .licenses-grid,
  .licenses-trust__grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .licenses-summary article,
  .licenses-summary article:nth-child(2n),
  .licenses-summary article:nth-child(n+3),
  .licenses-trust article,
  .licenses-trust article:nth-child(3n),
  .licenses-trust article:nth-child(n+4) {
    min-width: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }
  .licenses-summary article:last-child,
  .licenses-trust article:last-child {
    border-bottom: 0;
  }
  .licenses-filter {
    gap: 12px;
    padding: 16px;
  }
  .licenses-filter__search,
  .licenses-filter button {
    grid-column: auto;
  }
  .license-card h3 {
    min-height: 0;
    font-size: 16px;
  }
  .licenses-trust article {
    min-height: 0;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 4px 14px;
    padding: 18px;
  }
  .licenses-trust .rexab-icon {
    grid-row: span 2;
  }
  .licenses-trust h3 {
    margin: 0;
    font-size: 17px;
  }
  .licenses-trust p {
    font-size: 14px;
  }
  .licenses-question__inner {
    grid-template-columns: 1fr;
    padding: 22px;
    background:
      linear-gradient(90deg, rgba(20, 167, 155, .98), rgba(8, 43, 85, .88)),
      url("../img/cta-hands.webp") right center / auto 100% no-repeat;
  }
  .licenses-question__links {
    display: grid;
    grid-template-columns: 1fr;
  }
  .contacts-hero__grid {
    min-height: 0;
    padding-top: 34px;
    padding-bottom: 28px;
  }
  .contacts-hero__content { padding: 0; }
  .contacts-hero h1 { font-size: 36px; }
  .contacts-hero p { font-size: 16px; }
  .contacts-hero__badges {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin-top: 22px;
  }
  .contacts-hero__badges span,
  .contacts-hero__badges span:last-child {
    min-height: 74px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .contacts-hero__badges span:last-child {
    border-bottom: 0;
  }
  .contacts-hero__media,
  .contacts-hero__media img {
    min-height: 230px;
  }
  .contacts-main {
    padding-top: 34px;
  }
  .contacts-main__grid {
    gap: 22px;
  }
  .contacts-map-card {
    min-height: 0;
    display: grid;
  }
  .contacts-map-card__image {
    position: relative;
    min-height: 260px;
  }
  .contacts-map-card__pin {
    width: 48px;
    height: 48px;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
  }
  .contacts-map-card__pin .rexab-icon {
    width: 24px;
    height: 24px;
  }
  .contacts-map-card__zoom {
    right: 14px;
    top: 14px;
  }
  .contacts-info-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    padding: 4px 18px;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }
  .contacts-info-card dl > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    padding: 14px 0;
  }
  .contacts-form {
    padding: 22px;
  }
  .contacts-form h2 {
    font-size: 26px;
  }
  .contacts-methods {
    padding-bottom: 36px;
  }
  .contacts-methods__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .contacts-methods article,
  .contacts-methods article:nth-child(3),
  .contacts-methods article:nth-child(n+4) {
    min-height: 0;
    grid-template-columns: 52px minmax(0, 1fr);
    justify-items: start;
    align-content: start;
    gap: 6px 14px;
    padding: 18px;
    text-align: left;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }
  .contacts-methods article:last-child {
    border-bottom: 0;
  }
  .contacts-methods .rexab-icon {
    grid-row: span 3;
    width: 46px;
    height: 46px;
  }
  .contacts-methods h3,
  .contacts-methods p,
  .contacts-methods a,
  .contacts-methods span {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .reviews-page-hero__grid {
    min-height: 0;
    padding-top: 34px;
    padding-bottom: 28px;
  }
  .reviews-page-hero__content { padding: 0; }
  .reviews-page-hero h1 { font-size: 34px; }
  .reviews-page-hero p { font-size: 16px; }
  .reviews-page-hero__media,
  .reviews-page-hero__media img {
    min-height: 230px;
  }
  .reviews-page-stats {
    margin-top: 0;
    padding-top: 14px;
  }
  .reviews-page-stats__grid,
  .reviews-page-written__grid,
  .reviews-page-trust__grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .reviews-page-stats article,
  .reviews-page-stats article:nth-child(2n),
  .reviews-page-stats article:nth-child(n+3),
  .reviews-page-trust article,
  .reviews-page-trust article:nth-child(2n),
  .reviews-page-trust article:nth-child(n+3) {
    min-width: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }
  .reviews-page-stats article:last-child,
  .reviews-page-trust article:last-child {
    border-bottom: 0;
  }
  .reviews-page-videos {
    padding-top: 34px;
  }
  .reviews-page-videos__track {
    gap: 14px;
  }
  .reviews-page-video {
    flex-basis: 86%;
  }
  .reviews-page-videos__controls {
    position: static;
    justify-content: flex-end;
    margin-top: 14px;
  }
  .reviews-page-written {
    padding-top: 24px;
  }
  .reviews-page-review {
    min-height: 0;
    padding: 20px;
  }
  .reviews-page-review__top {
    align-items: flex-start;
    flex-direction: column;
  }
  .reviews-page-trust article {
    min-height: 0;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 4px 14px;
    padding: 18px;
  }
  .reviews-page-trust .rexab-icon {
    grid-row: span 2;
  }
  .reviews-page-trust h3 {
    margin: 0;
  }
  .reviews-page-cta__inner {
    grid-template-columns: 1fr;
    padding: 22px;
    background:
      linear-gradient(90deg, rgba(20, 167, 155, .98), rgba(8, 43, 85, .88)),
      url("../img/cta-hands.webp") right center / auto 100% no-repeat;
  }
  .blog-page-hero__grid,
  .blog-single-hero__grid {
    min-height: 0;
    padding-top: 34px;
    padding-bottom: 28px;
  }
  .blog-page-hero__content,
  .blog-single-hero__content {
    padding: 0;
  }
  .blog-page-hero h1,
  .blog-single-hero h1 {
    font-size: 34px;
  }
  .blog-page-hero p,
  .blog-single-hero__content > p {
    font-size: 16px;
  }
  .blog-page-hero__media,
  .blog-page-hero__media img,
  .blog-single-hero__media,
  .blog-single-hero__media img {
    min-height: 230px;
  }
  .blog-page-hero__features {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 22px;
  }
  .blog-page-hero__features span,
  .blog-page-hero__features span:last-child {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .blog-page-hero__features span:last-child {
    border-bottom: 0;
  }
  .blog-page-main,
  .blog-single-main {
    padding-top: 34px;
  }
  .blog-page-sidebar,
  .blog-sidebar,
  .blog-grid,
  .blog-grid--related {
    grid-template-columns: minmax(0, 1fr);
  }
  .blog-page-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .blog-page-toolbar label,
  .blog-page-toolbar select {
    width: 100%;
  }
  .blog-card__meta,
  .blog-card__footer {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .blog-card__link {
    margin-left: 0;
  }
  .blog-single-content {
    padding: 22px;
  }
  .blog-single-content p,
  .blog-single-content li {
    font-size: 16px;
  }
  .blog-single-hero__meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }
  .prices-hero__grid {
    min-height: 0;
    padding-top: 34px;
    padding-bottom: 34px;
  }
  .prices-hero h1 { font-size: 36px; }
  .prices-hero p { font-size: 16px; }
  .prices-hero__badges,
  .prices-programs__grid,
  .prices-note__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .prices-hero__badges span {
    min-height: 74px;
  }
  .prices-programs__grid article {
    padding: 22px;
  }
  .prices-programs__grid h3 {
    font-size: 21px;
  }
  .prices-programs__grid strong {
    font-size: 24px;
  }
  .prices-table-wrap {
    overflow: visible;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .prices-table,
  .prices-table tbody,
  .prices-table tr,
  .prices-table td {
    display: block;
    width: 100%;
  }
  .prices-table thead {
    display: none;
  }
  .prices-table tr {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(8, 43, 85, .07);
  }
  .prices-table td {
    position: relative;
    padding: 14px 16px 14px 132px;
    border-bottom: 1px solid var(--line);
    min-height: 52px;
  }
  .prices-table td:last-child {
    border-bottom: 0;
  }
  .prices-table td::before {
    position: absolute;
    left: 16px;
    top: 14px;
    width: 100px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }
  .prices-table td:nth-child(1)::before { content: "Услуга"; }
  .prices-table td:nth-child(2)::before { content: "Что входит"; }
  .prices-table td:nth-child(3)::before { content: "Цена"; }
  .prices-table td:nth-child(4)::before { content: "Ссылка"; }
  .prices-note article {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 20px;
  }
  .prices-note .rexab-icon {
    width: 44px;
    height: 44px;
    padding: 10px;
  }
  .prices-note h2 {
    font-size: 20px;
  }
  .not-found-page {
    padding: 42px 0 52px;
    background:
      radial-gradient(circle at 95% 8%, rgba(20, 187, 178, .18) 0 140px, transparent 141px),
      linear-gradient(145deg, #fff 0%, rgba(235, 249, 252, .72) 100%);
  }
  .not-found-page__grid {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .not-found-page__code {
    margin-top: 12px;
    font-size: 76px;
  }
  .not-found-page h1 {
    font-size: 34px;
  }
  .not-found-page__content > p:not(.breadcrumbs) {
    font-size: 16px;
  }
  .not-found-page .hero-actions {
    grid-template-columns: 1fr;
  }
  .not-found-page__phone {
    grid-template-columns: 36px minmax(0, 1fr);
    font-size: 18px;
  }
  .not-found-page__phone .rexab-icon {
    width: 36px;
    height: 36px;
  }
  .not-found-page__panel {
    padding: 18px;
  }
  .not-found-page__panel h2 {
    font-size: 24px;
  }
  .not-found-page__links a {
    min-height: 78px;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 14px;
  }
  .not-found-page__links .rexab-icon {
    width: 42px;
    height: 42px;
    padding: 9px;
  }
  .services-page-hero h1 {
    font-size: clamp(30px, 8vw, 38px);
    overflow-wrap: anywhere;
  }
  .services-page-hero p,
  .services-page-list .section-head p {
    overflow-wrap: anywhere;
  }
  .services-page-hero__stats,
  .services-page-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .services-page-hero__stats {
    width: 100%;
    gap: 10px;
  }
  .services-page-hero__stats span {
    min-width: 0;
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    padding: 16px;
  }
  .services-page-hero__stats strong,
  .services-page-hero__stats small {
    grid-column: 2;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .services-page-hero__stats .rexab-icon {
    grid-row: span 2;
  }
  .services-page-card {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    padding: 20px;
  }
  .services-page-card__icon {
    grid-column: 1;
    grid-row: 1;
    width: 48px;
    height: 48px;
  }
  .services-page-card h2,
  .services-page-card p,
  .services-page-card a {
    grid-column: 1;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .services-page-card h2 { font-size: 19px; }
  .services-page-card p { font-size: 14px; }
  .services-page-card a { justify-self: start; }
  .about-page-hero__grid {
    min-height: 0;
  }
  .about-page-hero__content {
    padding: 34px 0 18px;
  }
  .about-page-hero h1 { font-size: 34px; }
  .about-page-hero p { font-size: 16px; }
  .about-page-hero__badges {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
  .about-page-hero__badges span {
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.82);
  }
  .about-page-hero__media,
  .about-page-hero__media img {
    min-height: 230px;
  }
  .about-mission {
    margin-top: 0;
    padding-top: 14px;
  }
  .about-mission__grid,
  .about-advantages__grid,
  .about-stats__grid,
  .about-gallery__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    overflow: hidden;
  }
  .about-mission article {
    min-width: 0;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-mission article > div,
  .about-advantages__grid article,
  .about-stats article {
    min-width: 0;
  }
  .about-mission h2,
  .about-mission p,
  .about-advantages__grid h3,
  .about-advantages__grid p,
  .about-stats strong,
  .about-stats span {
    overflow-wrap: anywhere;
  }
  .about-mission article:last-child { border-bottom: 0; }
  .about-mission .rexab-icon {
    width: 58px;
    height: 58px;
    padding: 14px;
  }
  .about-advantages__grid {
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }
  .about-advantages__grid article {
    min-height: 0;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 4px 16px;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-advantages__grid article:last-child { border-bottom: 0; }
  .about-advantages__grid .rexab-icon {
    grid-row: span 2;
    width: 38px;
    height: 38px;
  }
  .about-advantages__grid h3 {
    margin: 0;
    font-size: 18px;
  }
  .about-advantages__grid p {
    font-size: 14px;
  }
  .about-stats article,
  .about-stats article:nth-child(3),
  .about-stats article:nth-child(n+4) {
    min-height: 0;
    grid-template-columns: 46px minmax(0, 1fr);
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-stats article:last-child { border-bottom: 0; }
  .about-gallery__row img,
  .about-gallery__row img.is-wide {
    height: 220px;
  }
  .service-indications,
  .service-process,
  .service-advantages,
  .service-prices,
  .service-doctors-faq {
    padding-top: 34px;
    padding-bottom: 34px;
  }
  .service-indications__grid,
  .service-advantages__grid,
  .service-process__steps,
  .service-prices__grid,
  .service-doctors,
  .service-bottom-cta .lead-form {
    grid-template-columns: 1fr;
  }
  .service-indications__grid article {
    min-height: 92px;
    grid-template-columns: 44px minmax(0, 1fr);
    place-items: center start;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .service-indications__grid article:last-child { border-bottom: 0; }
  .service-process__steps article {
    display: grid;
    grid-template-columns: 42px 34px minmax(0, 1fr);
    gap: 10px;
    min-height: 0;
    text-align: left;
    align-items: center;
  }
  .service-process__steps .rexab-icon { margin: 0; }
  .service-process__steps h3,
  .service-process__steps p { grid-column: 3; }
  .service-prices__grid article { min-height: 0; }
  .service-content {
    padding: 22px;
  }
  .service-doctors img { height: 220px; }
  .service-bottom-cta__inner {
    padding: 24px;
    background:
      linear-gradient(90deg, rgba(8, 151, 148, .96), rgba(6, 65, 132, .92));
  }
  .feature-strip { margin-top: 0; padding: 14px 0 0; background: var(--white); }
  .feature-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-strip article {
    min-height: 138px;
    padding: 20px 14px;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }
  .feature-strip article:nth-child(odd) { border-right: 1px solid var(--line); }
  .feature-strip article:nth-last-child(-n+2) { border-bottom: 0; }
  .hero h1 { font-size: 36px; }
  .lead { font-size: 16px; }
  .trust-row, .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section { padding: 48px 0; }
  .section-head { align-items: start; flex-direction: column; }
  .services-grid, .reviews-grid, .faq { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .doctors-section .section-head { align-items: stretch; }
  .doctors-section__actions {
    width: 100%;
    justify-content: space-between;
  }
  .doctor-card { flex-basis: min(86vw, 420px); }
  .recovery-stories { padding: 28px 0; }
  .recovery-stories__head { align-items: flex-start; }
  .recovery-card {
    flex-basis: min(88vw, 420px);
    grid-template-columns: 112px minmax(0, 1fr);
  }
  .recovery-card__photo { min-height: 150px; }
  .recovery-card__body { padding: 16px; }
  .video-reviews__grid { grid-template-columns: 1fr; }
  .text-review__card { padding: 24px 20px; }
  .text-review__quote { left: 18px; top: 8px; font-size: 70px; }
  .text-review__card p,
  .text-review__footer { padding-left: 34px; }
  .text-review__footer { align-items: start; flex-direction: column; }
  .certificates-strip__row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }
  .certificate-card {
    flex: 0 0 210px;
    scroll-snap-align: start;
  }
  .service-card {
    min-height: 132px;
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-rows: auto 1fr auto;
    align-items: start;
    gap: 6px 12px;
    padding: 18px;
  }
  .service-card .icon { grid-column: 1; grid-row: 1; width: 38px; height: 38px; }
  .service-card .icon .rexab-icon { width: 34px; height: 34px; }
  .service-card h2,
  .service-card h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 18px;
    line-height: 1.2;
  }
  .service-card p {
    grid-column: 2;
    grid-row: 2;
    font-size: 13px;
  }
  .service-card a {
    grid-column: 2;
    grid-row: 3;
    margin-top: 8px;
    justify-self: end;
  }
  .doctor-card { grid-template-columns: 118px minmax(0, 1fr); min-height: 190px; }
  .doctor-card__photo img,
  .doctor-card > img { height: 100%; min-height: 190px; }
  .doctor-card div { padding: 16px 14px; }
  .doctor-card h3 { font-size: 16px; }
  .contact-cta { padding-top: 24px; }
  .contact-cta__bar {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 22px;
    background:
      linear-gradient(90deg, rgba(20, 167, 155, .98) 0%, rgba(26, 167, 176, .94) 100%);
  }
  .contact-cta__form {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .contact-cta__form p {
    justify-content: flex-start;
    text-align: left;
  }
  .contact-cta__main {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 0 28px;
  }
  .contact-cta__map,
  .contact-cta__map img {
    min-height: 210px;
  }
  .cta-band { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom nav { gap: 12px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 31px; }
  .hero-actions .btn { width: 100%; }
  .home-hero__actions { grid-template-columns: 1fr; }
  .home-hero__actions .btn { font-size: 14px; }
  .doctor-card { grid-template-columns: 1fr; }
  .doctor-card__photo img,
  .doctor-card > img { height: 260px; min-height: 260px; }
  .home-hero__visual { margin-left: -14px; margin-right: -14px; padding-left: 14px; padding-right: 14px; }
  .hero-stat {
    width: calc((100% - 36px) / 3);
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    row-gap: 2px;
    padding: 9px 6px;
  }
  .hero-stat .rexab-icon {
    grid-column: 1;
    grid-row: 1;
  }
  .hero-stat strong,
  .hero-stat span {
    grid-column: 1;
  }
  .hero-stat strong { white-space: normal; }
  .doctors-page-hero h1 { font-size: 34px; }
  .doctors-page-hero__stats { grid-template-columns: 1fr; }
  .doctor-profile-card {
    grid-template-columns: 118px minmax(0, 1fr);
  }
  .doctor-profile-card__image {
    height: 100%;
    min-height: 232px;
  }
  .doctor-profile-card__body { padding: 16px 14px; }
  .doctor-profile-card h3 { font-size: 17px; }
  .doctors-help h2 { font-size: 21px; }
  .doctors-help__phone,
  .doctors-help__whatsapp {
    align-items: flex-start;
    white-space: normal;
  }
  .doctor-single-hero h1 { font-size: 32px; }
  .doctor-single-hero .hero-actions {
    grid-template-columns: 1fr;
  }
  .doctor-single-stats__grid { grid-template-columns: 1fr; }
  .doctor-single-stats article,
  .doctor-single-stats article:nth-child(odd),
  .doctor-single-stats article:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .doctor-single-stats article:last-child { border-bottom: 0; }
  .doctor-timeline div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .doctor-service-grid article,
  .doctor-review-grid article,
  .doctor-side-card {
    padding: 18px;
  }
  .service-single-hero h1 { font-size: 32px; }
  .service-single-hero .hero-actions { grid-template-columns: 1fr; }
  .services-page-hero__grid {
    min-height: 0;
    padding-top: 34px;
    padding-bottom: 34px;
  }
  .services-page-hero h1 {
    font-size: 32px;
    overflow-wrap: anywhere;
  }
  .services-page-hero p {
    font-size: 16px;
    overflow-wrap: anywhere;
  }
  .services-page-hero__stats,
  .services-page-grid {
    grid-template-columns: 1fr !important;
  }
  .services-page-hero__stats {
    width: 100%;
    gap: 10px;
  }
  .services-page-hero__stats span {
    min-width: 0;
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    padding: 16px;
  }
  .services-page-hero__stats strong,
  .services-page-hero__stats small {
    grid-column: 2;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .services-page-hero__stats .rexab-icon {
    grid-row: span 2;
  }
  .services-page-card {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    padding: 20px;
  }
  .services-page-card__icon {
    grid-column: 1;
    grid-row: 1;
    width: 48px;
    height: 48px;
  }
  .services-page-card h2,
  .services-page-card p,
  .services-page-card a {
    grid-column: 1;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .services-page-card h2 { font-size: 19px; }
  .services-page-card p { font-size: 14px; }
  .services-page-card a {
    justify-self: start;
  }
  .about-page-hero__grid {
    min-height: 0;
  }
  .about-page-hero__content {
    padding: 34px 0 18px;
  }
  .about-page-hero h1 { font-size: 34px; }
  .about-page-hero p { font-size: 16px; }
  .about-page-hero__badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .about-page-hero__badges span {
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.82);
  }
  .about-page-hero__media,
  .about-page-hero__media img {
    min-height: 230px;
  }
  .about-mission {
    margin-top: 0;
    padding-top: 14px;
  }
  .about-mission__grid,
  .about-stats__grid,
  .about-gallery__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    overflow: hidden;
  }
  .about-mission article {
    min-width: 0;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 16px;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-mission article > div,
  .about-advantages__grid article,
  .about-stats article {
    min-width: 0;
  }
  .about-mission h2,
  .about-mission p,
  .about-advantages__grid h3,
  .about-advantages__grid p,
  .about-stats strong,
  .about-stats span {
    overflow-wrap: anywhere;
  }
  .about-mission article:last-child { border-bottom: 0; }
  .about-mission .rexab-icon {
    width: 54px;
    height: 54px;
    padding: 13px;
  }
  .about-advantages__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    overflow: hidden;
  }
  .about-advantages__grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-advantages__grid article:last-child { border-bottom: 0; }
  .about-stats article,
  .about-stats article:nth-child(3),
  .about-stats article:nth-child(n+4) {
    min-height: 0;
    grid-template-columns: 46px minmax(0, 1fr);
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }
  .about-stats article:last-child { border-bottom: 0; }
  .about-gallery__row img,
  .about-gallery__row img.is-wide {
    height: 220px;
  }
  .service-bottom-cta h2 { font-size: 26px; }
  .service-bottom-cta__inner { padding: 22px; }
  .recovery-card { grid-template-columns: 96px minmax(0, 1fr); }
  .recovery-card__body { padding: 14px; }
  .recovery-card h3 { font-size: 15px; }
  .recovery-card p { font-size: 12px; }
}

@media (prefers-reduced-motion: no-preference) {
  .home-hero__content,
  .home-hero__visual,
  .feature-strip article,
  .service-card,
  .doctor-card,
  .review-card {
    animation: rexabFadeUp .55s ease both;
  }
  .home-hero__visual { animation-delay: .08s; }
  .feature-strip article:nth-child(2),
  .service-card:nth-child(2),
  .doctor-card:nth-child(2),
  .review-card:nth-child(2) { animation-delay: .04s; }
  .feature-strip article:nth-child(3),
  .service-card:nth-child(3),
  .doctor-card:nth-child(3),
  .review-card:nth-child(3) { animation-delay: .08s; }
  .feature-strip article:nth-child(4),
  .service-card:nth-child(4),
  .doctor-card:nth-child(4) { animation-delay: .12s; }
}

@keyframes rexabFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
