:root {
  --gray-950: #111314;
  --gray-900: #1c1f20;
  --gray-800: #2f3436;
  --gray-700: #4f5658;
  --gray-600: #687174;
  --gray-500: #889094;
  --gray-200: #d9dddf;
  --gray-100: #eef0f1;
  --white: #ffffff;
  --paper: #f7f8f8;
  --magenta: #b01773;
  --magenta-dark: #8d115d;
  --magenta-strong: #d21b87;
  --magenta-soft: #f7e8f1;
  --success: #3f7b5c;
  --shadow: 0 18px 45px rgba(17, 19, 20, 0.09);
  --shadow-soft: 0 10px 28px rgba(17, 19, 20, 0.07);
  --radius: 8px;
  --border: 1px solid rgba(104, 113, 116, 0.18);
  --font-main: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-secondary: "Inter", "Manrope", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--gray-900);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: geometricPrecision;
  overflow-x: clip;
}

main [id] {
  scroll-margin-top: 96px;
}

body.modal-open {
  overflow: hidden;
}

body.nav-open {
  position: fixed;
  inset: 0;
  width: 100%;
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(176, 23, 115, 0.35);
  outline-offset: 3px;
}

::selection {
  color: var(--white);
  background: var(--magenta);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--gray-950);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1168px, calc(100% - 48px));
  margin-inline: auto;
}

.anchor-target {
  position: relative;
  top: -96px;
  display: block;
  height: 0;
  overflow: hidden;
}

[data-component="navbar"] {
  position: sticky;
  top: 0;
  z-index: 90;
}

.site-header {
  position: relative;
  border-bottom: 1px solid rgba(104, 113, 116, 0.14);
  color: var(--gray-800);
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: linear-gradient(135deg, var(--magenta), var(--gray-800));
  box-shadow: 0 10px 28px rgba(65, 5, 42, 0.2);
}

.navbar {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
}

.brand-logo {
  width: clamp(148px, 12.5vw, 166px);
  height: 58px;
  padding: 5px 8px;
  border-radius: var(--radius);
  background: transparent;
  object-fit: contain;
  transition: background-color 300ms ease, box-shadow 300ms ease;
}

.header-brand {
  position: relative;
  width: clamp(148px, 12.5vw, 166px);
  height: 58px;
  overflow: hidden;
}

.header-brand .brand-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
  max-height: none;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.header-brand .brand-logo-color {
  width: 83.3%;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.header-brand .brand-logo-white {
  top: calc(50% + 3px);
  width: 85.5%;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.site-header.is-scrolled .brand-logo-color {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-white {
  opacity: 1;
}

.brand-fallback {
  display: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--gray-800), var(--magenta));
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 12px 24px rgba(176, 23, 115, 0.18);
}

.brand-copy {
  display: grid;
  line-height: 1.12;
}

.brand-copy strong {
  font-size: 0.96rem;
  letter-spacing: 0;
}

.brand-copy small {
  color: var(--gray-600);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
  min-width: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 7px;
  border-radius: var(--radius);
  color: var(--gray-700);
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: color 300ms ease, background-color 300ms ease;
}

.nav-links > li > a:hover,
.nav-links > li > a:focus-visible {
  color: var(--magenta);
  background: rgba(176, 23, 115, 0.07);
}

.nav-links > li > a.is-active {
  color: var(--magenta);
  font-weight: 850;
}

.nav-links > li > a.is-active::after {
  position: absolute;
  right: 8px;
  bottom: 4px;
  left: 8px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.site-header.is-scrolled .nav-links > li > a {
  color: rgba(255, 255, 255, 0.9);
}

.site-header.is-scrolled .nav-links > li > a:hover,
.site-header.is-scrolled .nav-links > li > a:focus-visible,
.site-header.is-scrolled .nav-links > li > a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  width: min(620px, calc(100vw - 48px));
  padding: 14px;
  border: var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mega-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links > li:nth-last-child(-n+3) .mega-menu {
  right: 0;
  left: auto;
}

.mega-menu a {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: var(--radius);
  transition: background 180ms ease;
}

.mega-menu a:hover,
.mega-menu a:focus-visible {
  background: var(--paper);
  outline: none;
}

.mega-menu strong {
  color: var(--gray-950);
  font-size: 0.94rem;
}

.mega-menu span {
  color: var(--gray-600);
  font-size: 0.84rem;
}

.phone-popover {
  position: fixed;
  z-index: 300;
  width: min(280px, calc(100vw - 32px));
  padding: 20px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.phone-popover.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.phone-popover-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--gray-600);
  background: var(--paper);
  transition: background 160ms ease, color 160ms ease;
}

.phone-popover-close:hover,
.phone-popover-close:focus-visible {
  color: var(--gray-950);
  background: var(--gray-100);
  outline: none;
}

.phone-popover-close .icon {
  width: 14px;
  height: 14px;
}

.phone-popover-label {
  margin: 0 24px 6px 0;
  color: var(--gray-600);
  font-size: 0.82rem;
}

.phone-number {
  margin: 0 0 16px;
  color: var(--gray-950);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.phone-popover-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.phone-popover-actions .btn {
  padding: 10px 14px;
  font-size: 0.88rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--magenta);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--magenta);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(176, 23, 115, 0.18);
  transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease, transform 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--white);
  border-color: var(--magenta-strong);
  background: var(--magenta-strong);
  box-shadow: 0 16px 30px rgba(176, 23, 115, 0.26);
}

.nav-cta:active {
  transform: translateY(1px);
}

.site-header.is-scrolled .nav-cta {
  color: var(--magenta);
  border-color: var(--white);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(65, 5, 42, 0.14);
}

.site-header.is-scrolled .nav-cta:hover,
.site-header.is-scrolled .nav-cta:focus-visible {
  color: var(--magenta-dark);
  border-color: var(--white);
  background: var(--magenta-soft);
}

.nav-toggle,
.mobile-panel {
  display: none;
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: var(--white);
  background: var(--magenta);
  box-shadow: 0 16px 34px rgba(176, 23, 115, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--magenta-strong);
}

.btn-secondary {
  color: var(--gray-950);
  background: var(--white);
  border-color: rgba(104, 113, 116, 0.22);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  color: var(--gray-950);
  background: transparent;
  border-color: rgba(104, 113, 116, 0.28);
}

.btn-ghost-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.38);
}

.hero-slider {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  color: var(--white);
  background: var(--gray-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-slide.is-active img {
  animation: kenBurns 8s ease forwards;
}

@keyframes kenBurns {
  from { transform: scale(1.04); }
  to { transform: scale(1.11); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 20, 0.88) 0%, rgba(17, 19, 20, 0.66) 40%, rgba(17, 19, 20, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 19, 20, 0.34), rgba(17, 19, 20, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 92svh;
  padding: 108px 0 126px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: var(--radius);
  color: var(--magenta);
  background: rgba(176, 23, 115, 0.1);
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-content .eyebrow,
.section-dark .eyebrow,
.cta-band .eyebrow {
  color: #ffd8ee;
  background: rgba(176, 23, 115, 0.28);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.08;
}

.hero-content h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 4vw, 4.1rem);
  font-weight: 850;
  text-wrap: balance;
}

.hero-content p {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(920px, 100%);
  margin-top: 38px;
}

.hero-metrics article {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 34px rgba(17, 19, 20, 0.16);
}

.hero-metrics strong,
.hero-metrics span,
.hero-metrics small {
  display: block;
}

.hero-metrics strong {
  margin-bottom: 8px;
  color: #ffd8ee;
  font-size: 1.6rem;
  line-height: 1;
}

.hero-metrics span {
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.24;
}

.hero-metrics small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
  line-height: 1.35;
}

.hero-controls {
  position: absolute;
  right: 0;
  bottom: 34px;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-controls [data-hero-prev] .icon {
  transform: rotate(180deg);
}

.hero-dots {
  display: flex;
  gap: 9px;
}

.hero-dots button {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.hero-dots button.is-active {
  background: var(--magenta-strong);
}

.hero-controls button:hover,
.hero-controls button:focus-visible {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.2);
}

.proof-strip {
  position: relative;
  z-index: 4;
  color: var(--white);
  background: var(--gray-950);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid article {
  display: grid;
  gap: 4px;
  min-height: 132px;
  padding: 28px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-grid strong {
  color: #ffd8ee;
  font-size: 1.7rem;
  line-height: 1.1;
}

.proof-grid span {
  font-size: 0.88rem;
  font-weight: 850;
}

.proof-grid small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.section {
  padding: 104px 0;
  background: var(--paper);
}

.section-muted {
  background: var(--gray-100);
}

.section-dark {
  color: var(--white);
  background: var(--gray-950);
}

.section-intro {
  display: grid;
  gap: 12px;
  width: 100%;
  margin-bottom: 32px;
}

.section-intro .eyebrow,
.section-intro h2,
.section-intro p {
  margin-bottom: 0;
}

.section-intro h2,
.split-copy h2,
.large-card h2,
.cta-band h2 {
  margin-bottom: 16px;
  color: inherit;
  font-size: 2.5rem;
  font-weight: 840;
}

.section-intro p,
.split-copy p,
.large-card p,
.cta-band p {
  color: var(--gray-600);
  font-size: 1.04rem;
}

.section-dark .section-intro p,
.section-dark .stat-card p,
.cta-band p {
  color: rgba(255, 255, 255, 0.74);
}

.service-grid,
.feature-grid,
.institution-grid,
.doctor-grid,
.case-grid,
.video-grid,
.news-grid,
.channel-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid,
.institution-grid,
.news-grid,
.channel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tech-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.doctor-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.feature-card,
.institution-card,
.doctor-card,
.case-card,
.video-card,
.news-card,
.channel-card,
.stat-card,
.large-card,
.quote-panel,
.contact-card,
.form-panel {
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.service-card,
.feature-card,
.doctor-card,
.case-card,
.video-card,
.news-card,
.channel-card,
.stat-card {
  min-height: 220px;
  padding: 24px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card:hover,
.feature-card:hover,
.institution-card:hover,
.doctor-card:hover,
.case-card:hover,
.video-card:hover,
.news-card:hover,
.channel-card:hover,
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(176, 23, 115, 0.28);
  box-shadow: var(--shadow-soft);
}

.section-dark .stat-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--magenta);
  background: var(--magenta-soft);
}

.service-card > span,
.news-card > span,
.case-card > span {
  display: block;
  margin-bottom: 12px;
  color: var(--magenta);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card h3,
.feature-card h3,
.doctor-card h3,
.case-card h3,
.news-card h3 {
  margin-bottom: 10px;
  color: var(--gray-950);
  font-size: 1.16rem;
}

.stat-highlight-card {
  background: var(--gray-950);
  border-color: var(--gray-950);
}

.stat-highlight-card .eyebrow {
  color: #ffd8ee;
  background: rgba(176, 23, 115, 0.28);
}

.stat-highlight-card h3 {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 850;
}

.stat-highlight-card p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card p,
.feature-card p,
.doctor-card p,
.case-card p,
.video-card p,
.news-card p,
.channel-card p,
.stat-card p {
  color: var(--gray-600);
  font-size: 0.94rem;
}

.video-card {
  overflow: hidden;
  padding: 0;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--gray-950);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-content {
  padding: 22px;
}

.video-content > span {
  display: block;
  margin-bottom: 10px;
  color: var(--magenta);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.video-content h3 {
  margin-bottom: 10px;
  color: var(--gray-950);
  font-size: 1.18rem;
}

.case-observe {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(104, 113, 116, 0.16);
}

.video-carousel {
  max-width: 980px;
  margin-inline: auto;
}

.video-stage {
  min-height: 0;
}

.video-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.75fr);
  overflow: hidden;
  border: var(--border);
  border-radius: calc(var(--radius) * 1.5);
  background: var(--white);
  box-shadow: var(--shadow);
}

.video-slide[hidden] {
  display: none;
}

.video-slide .video-frame {
  min-height: 440px;
  aspect-ratio: auto;
}

.video-slide .video-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.video-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.video-controls > button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(104, 113, 116, 0.25);
  border-radius: 50%;
  color: var(--gray-950);
  background: var(--white);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.video-controls > button:first-child .icon {
  transform: rotate(180deg);
}

.video-controls > button:hover,
.video-controls > button:focus-visible {
  color: var(--white);
  border-color: var(--magenta);
  background: var(--magenta);
}

.video-position {
  min-width: 64px;
  color: var(--gray-600);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.video-dots {
  display: flex;
  gap: 7px;
}

.video-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--gray-200);
}

.video-dots button.is-active {
  background: var(--magenta);
}

.service-card a,
.news-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--magenta);
  font-weight: 800;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.split-grid,
.media-split,
.contact-layout,
.page-hero-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.split-panel {
  padding: 10px;
}

.buyer-card {
  padding: 36px;
  border: var(--border);
  border-radius: calc(var(--radius) * 1.5);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.buyer-card-icon,
.ilo-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--magenta);
  background: var(--magenta-soft);
}

.buyer-card h3 {
  margin-bottom: 14px;
  color: var(--gray-950);
  font-size: 1.55rem;
}

.buyer-card p {
  margin-bottom: 24px;
  color: var(--gray-600);
}

.split-panel .stats-grid {
  grid-template-columns: 1fr;
}

.split-panel .stat-card {
  min-height: 150px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--gray-800);
}

.check-list .icon {
  color: var(--magenta);
  margin-top: 3px;
}

.stat-card strong {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
  color: var(--magenta);
  font-size: 2.2rem;
  line-height: 1;
}

.stat-card h3 {
  margin-bottom: 8px;
  color: inherit;
  font-size: 1rem;
}

.media-frame,
.page-hero-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-frame img,
.page-hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.reverse .media-frame {
  order: 2;
}

.technology-band {
  background: var(--white);
}

.institution-card {
  display: grid;
  grid-template-rows: 170px auto;
  min-height: 286px;
  padding: 18px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.institution-card figure {
  display: grid;
  place-items: center;
  margin: 0 0 18px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(104, 113, 116, 0.12);
}

.institution-card img {
  width: 100%;
  max-height: 128px;
  object-fit: contain;
  filter: saturate(0.86);
}

.institution-card h3 {
  margin-bottom: 6px;
  color: var(--gray-950);
  font-size: 1.06rem;
}

.institution-card p {
  margin: 0;
  color: var(--magenta);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.client-carousel {
  overflow: hidden;
  padding: 24px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.client-track {
  display: flex;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  width: max-content;
  animation: clientMarquee 42s linear infinite;
}

.client-carousel:hover .client-track,
.client-carousel:focus-within .client-track {
  animation-play-state: paused;
}

@keyframes clientMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - clamp(18px, 3vw, 42px))); }
}

.client-slide {
  display: grid;
  place-items: center;
  width: clamp(180px, 20vw, 260px);
  height: 118px;
  margin: 0;
  padding: 8px;
  background: transparent;
  transition: transform 200ms ease, opacity 200ms ease;
}

.client-slide:hover {
  opacity: 1;
  transform: scale(1.04);
}

.client-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.94) contrast(1.04);
}

.client-slide-name {
  display: none;
}

.client-slide-fallback {
  border: var(--border);
  border-radius: var(--radius);
  background: var(--paper);
}

.client-slide-fallback .client-slide-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  padding: 0 12px;
}

.client-slide-fallback .client-slide-name strong {
  font-family: var(--font-secondary);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--gray-950);
  line-height: 1.2;
}

.client-slide-fallback .client-slide-name small {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--magenta);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-hero {
  padding: 110px 0 78px;
  background: var(--gray-100);
}

.page-hero-copy h1 {
  margin-bottom: 20px;
  color: var(--gray-950);
  font-size: 3.45rem;
  font-weight: 860;
}

.page-hero-copy p {
  margin-bottom: 28px;
  color: var(--gray-600);
  font-size: 1.1rem;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.company-identity {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 44px;
  align-items: start;
}

.company-proof {
  padding: 30px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.company-proof > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--magenta);
  background: var(--magenta-soft);
}

.company-proof h3 {
  margin-bottom: 10px;
  color: var(--gray-950);
  font-size: 1.35rem;
}

.company-proof p {
  color: var(--gray-600);
}

.company-proof dl {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.company-proof dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(104, 113, 116, 0.16);
}

.company-proof dt {
  color: var(--gray-600);
  font-weight: 800;
}

.company-proof dd {
  margin: 0;
  color: var(--gray-950);
  font-weight: 850;
  text-align: right;
}

.company-accordion {
  max-width: 980px;
}

.company-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--gray-700);
}

.company-list li::marker {
  color: var(--magenta);
}

.participation-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 30px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.participation-card h2 {
  margin-bottom: 10px;
  color: var(--gray-950);
  font-size: 1.55rem;
}

.participation-card p {
  margin: 0;
  color: var(--gray-600);
}

.large-card,
.quote-panel,
.contact-card,
.form-panel {
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.quote-panel {
  color: var(--white);
  background: var(--gray-950);
}

.quote-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.55rem;
  line-height: 1.35;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  overflow: visible;
}

.timeline-item {
  position: relative;
  min-height: 246px;
  padding: 24px 20px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -21px;
  width: 22px;
  height: 2px;
  background: var(--magenta);
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: -22px;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--magenta);
  border-right: 2px solid var(--magenta);
  transform: rotate(45deg);
}

.timeline-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.timeline-number {
  color: var(--magenta);
  font-weight: 850;
}

.timeline-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--magenta);
  background: var(--magenta-soft);
}

.timeline-icon .icon {
  width: 22px;
  height: 22px;
}

.timeline-item h3 {
  margin: 32px 0 10px;
  font-size: 1.06rem;
}

.timeline-item p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.92rem;
}

.section-dark .timeline {
  background: transparent;
}

.section-dark .timeline-item {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.process-action {
  margin-top: 38px;
}

.ilo-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border: var(--border);
  border-radius: calc(var(--radius) * 1.5);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.ilo-callout .ilo-icon {
  margin: 0;
}

.ilo-callout h2 {
  margin-bottom: 10px;
  color: var(--gray-950);
  font-size: 1.75rem;
}

.ilo-callout p {
  margin: 0;
  color: var(--gray-600);
}

.feature-card {
  min-height: 184px;
}

.card-line {
  width: 42px;
  height: 3px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--magenta);
}

.doctor-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.doctor-card button {
  display: grid;
  width: 100%;
  gap: 18px;
  align-items: start;
  padding: 0;
  border: 0;
  color: inherit;
  text-align: left;
  background: transparent;
}

.doctor-card button:focus-visible {
  outline: 3px solid rgba(176, 23, 115, 0.28);
  outline-offset: 6px;
}

.doctor-portrait {
  display: grid;
  place-items: center;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(104, 113, 116, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--gray-100), var(--white));
}

.doctor-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.doctor-portrait.has-photo .doctor-avatar {
  display: none;
}

.doctor-portrait.is-fallback .doctor-avatar {
  width: 76px;
  height: 76px;
  font-size: 1.22rem;
}

.doctor-avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white);
  background: var(--gray-800);
  font-weight: 850;
}

.doctor-meta {
  display: grid;
  gap: 4px;
  min-height: 92px;
  align-content: start;
}

.doctor-meta strong {
  line-height: 1.2;
}

.doctor-meta small {
  color: var(--gray-600);
  line-height: 1.35;
}

.doctor-card > p {
  margin: 18px 0 0;
}

.doctor-card .tag-row {
  margin-top: auto;
  padding-top: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--magenta);
  background: var(--magenta-soft);
  font-size: 0.76rem;
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.data-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  font-family: var(--font-secondary);
  font-variant-ligatures: none;
}

.data-table caption {
  padding: 18px 22px;
  color: var(--gray-700);
  font-weight: 850;
  text-align: left;
}

.data-table th,
.data-table td {
  padding: 18px 22px;
  border-top: 1px solid rgba(104, 113, 116, 0.16);
  text-align: left;
  vertical-align: top;
  letter-spacing: 0;
}

.data-table thead th {
  color: var(--gray-950);
  background: var(--gray-100);
  font-weight: 750;
}

.data-table tbody th {
  color: var(--magenta);
}

.channel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 318px;
  padding: 30px;
  border-color: rgba(104, 113, 116, 0.14);
  border-radius: 16px;
  color: inherit;
  box-shadow: 0 12px 32px rgba(17, 19, 20, 0.065);
}

.channel-grid {
  gap: 24px;
  align-items: stretch;
}

.channel-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 14px;
  color: var(--magenta);
  background: var(--magenta-soft);
}

.channel-icon .icon {
  width: 30px;
  height: 30px;
  color: currentColor;
}

.channel-card h3 {
  margin: 0 0 10px;
  color: var(--gray-950);
  font-size: 1.24rem;
  font-weight: 840;
  line-height: 1.25;
}

.channel-card p {
  margin: 0 0 26px;
  line-height: 1.6;
}

.channel-card:hover {
  transform: translateY(-5px);
  border-color: rgba(176, 23, 115, 0.22);
  box-shadow: 0 20px 42px rgba(17, 19, 20, 0.11);
}

.channel-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.channel-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 820;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.channel-action-primary {
  color: var(--white);
  background: var(--magenta);
  box-shadow: 0 8px 18px rgba(176, 23, 115, 0.2);
}

.channel-action-secondary {
  color: var(--gray-800);
  background: var(--white);
  border-color: rgba(104, 113, 116, 0.24);
}

.channel-action .icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: currentColor;
}

.channel-action:hover {
  transform: translateY(-2px);
}

.channel-action-primary:hover {
  background: var(--magenta-dark);
  box-shadow: 0 12px 24px rgba(176, 23, 115, 0.26);
}

.channel-action-secondary:hover {
  color: var(--magenta);
  border-color: rgba(176, 23, 115, 0.34);
  background: var(--magenta-soft);
}

.channel-action:active {
  transform: translateY(0);
}

.channel-action:focus-visible {
  outline: 3px solid rgba(176, 23, 115, 0.28);
  outline-offset: 3px;
}

.news-card {
  min-height: 180px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-row button {
  min-height: 40px;
  padding: 0 16px;
  border: var(--border);
  border-radius: 999px;
  color: var(--gray-700);
  background: var(--white);
  font-weight: 800;
}

.filter-row button.is-active,
.filter-row button:hover,
.filter-row button:focus-visible {
  color: var(--white);
  background: var(--magenta);
  outline: none;
}

.filter-empty {
  margin: 18px 0 0;
  padding: 18px 20px;
  border: var(--border);
  border-radius: var(--radius);
  color: var(--gray-700);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.accordion-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 68px;
  padding: 0 22px;
  border: 0;
  color: var(--gray-950);
  background: transparent;
  font-weight: 850;
  text-align: left;
}

.accordion-plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.accordion-plus::before,
.accordion-plus::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--magenta);
}

.accordion-plus::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.accordion-item button[aria-expanded="true"] .accordion-plus::after {
  transform: rotate(0);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 220ms ease;
}

.accordion-panel p,
.accordion-panel .company-list {
  overflow: hidden;
  margin: 0;
}

.accordion-panel p {
  padding: 0 22px;
  color: var(--gray-600);
}

.accordion-panel .company-list {
  padding: 0 22px 0 42px;
}

.accordion-item button[aria-expanded="true"] + .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-item button[aria-expanded="true"] + .accordion-panel p,
.accordion-item button[aria-expanded="true"] + .accordion-panel .company-list {
  padding-bottom: 22px;
}

.narrow {
  width: min(840px, calc(100% - 48px));
}

.form-panel {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--gray-800);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(104, 113, 116, 0.28);
  border-radius: var(--radius);
  color: var(--gray-950);
  background: var(--white);
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--magenta);
  outline: 3px solid rgba(176, 23, 115, 0.14);
}

.was-validated input:invalid,
.was-validated select:invalid,
.was-validated textarea:invalid {
  border-color: var(--magenta);
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 650;
}

.check-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
  accent-color: var(--magenta);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.form-status {
  margin: 0;
  color: var(--success);
  font-weight: 800;
}

.form-status span {
  display: inline-flex;
  align-items: center;
}

.status-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: 10px;
}

.status-actions a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: var(--radius);
  color: var(--magenta);
  background: var(--magenta-soft);
  font-size: 0.84rem;
}

.status-actions .icon {
  width: 16px;
  height: 16px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.support-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  margin-top: 34px;
  padding: 34px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.support-card h2 {
  margin-bottom: 12px;
  font-size: 1.75rem;
}

.support-card p {
  color: var(--gray-600);
}

.support-contact {
  display: grid;
  gap: 12px;
  align-content: center;
}

.support-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--gray-800);
  background: var(--gray-100);
  overflow-wrap: anywhere;
}

.support-line .icon {
  color: var(--magenta);
}

.support-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.support-actions .btn {
  min-height: 44px;
  padding: 0 12px;
}

.contact-card {
  align-self: stretch;
}

.contact-card h2 {
  font-size: 1.4rem;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.map-frame {
  display: block;
  width: 100%;
  min-height: 250px;
  margin-top: 22px;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(1) contrast(1.04);
}

.sede-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.sede-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sede-card.no-image {
  background: linear-gradient(145deg, var(--magenta-soft), var(--gray-100));
}

.sede-card.no-image figcaption {
  padding: 32px 18px;
}

.sede-card figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  color: var(--gray-950);
  font-weight: 850;
}

.sede-card figcaption .icon {
  color: var(--magenta);
}

.legal-content {
  max-width: 880px;
  padding: 42px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.legal-content h2 {
  margin-top: 30px;
  font-size: 1.55rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.cta-band {
  padding: 78px 0;
  color: var(--gray-950);
  background: var(--gray-100);
}

.cta-grid {
  grid-template-columns: 1.35fr 0.65fr;
  padding: 34px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.cta-band .eyebrow {
  color: var(--magenta);
  background: rgba(176, 23, 115, 0.1);
}

.cta-band p {
  color: var(--gray-600);
}

.cta-actions {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.cta-actions .btn {
  width: 100%;
}

.not-found {
  display: grid;
  align-items: center;
  min-height: 72vh;
  padding: 96px 0;
  background: var(--gray-100);
}

.not-found h1 {
  font-size: 3.4rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 20, 0.64);
}

.modal-panel {
  position: relative;
  width: min(680px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  margin: 24px auto;
  overflow-y: auto;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: var(--border);
  border-radius: 50%;
  color: var(--gray-800);
  background: var(--white);
}

.modal-avatar,
.modal-doctor-portrait {
  margin-bottom: 18px;
}

.modal-doctor-portrait {
  width: 160px;
}

.modal-doctor-portrait.is-fallback .doctor-avatar {
  width: 64px;
  height: 64px;
}

.profile-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.profile-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(104, 113, 116, 0.16);
}

.profile-list dt {
  color: var(--gray-600);
  font-weight: 800;
}

.profile-list dd {
  margin: 0;
}

.floating-tools {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 86;
  display: grid;
  gap: 10px;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.float-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--magenta);
  box-shadow: var(--shadow-soft);
  font-size: 0.88rem;
  font-weight: 850;
}

.float-action span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.float-action .icon {
  width: 19px;
  height: 19px;
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 22px;
  z-index: 86;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--magenta);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, visibility 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.scroll-top:hover,
.scroll-top:focus-visible {
  background: var(--magenta-strong);
  outline: none;
}

.chatbot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 88;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

body.footer-in-view .floating-tools,
body.footer-in-view .scroll-top,
body.footer-in-view .chatbot:not(.is-open) {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  visibility: hidden;
}

body.media-in-view .floating-tools,
body.media-in-view .chatbot:not(.is-open) {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  visibility: hidden;
}

.chatbot-toggle {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--magenta), var(--gray-800));
  box-shadow: 0 18px 34px rgba(17, 19, 20, 0.22);
}

.chatbot-toggle .icon {
  width: 25px;
  height: 25px;
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  display: none;
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.chatbot.is-open .chatbot-panel {
  display: block;
}

.chatbot-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  color: var(--white);
  background: var(--gray-950);
}

.chatbot-panel header span,
.chatbot-panel header small {
  display: block;
}

.chatbot-panel header span {
  font-weight: 850;
}

.chatbot-panel header small {
  color: rgba(255, 255, 255, 0.68);
}

.chatbot-panel header button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.chatbot-body {
  display: grid;
  gap: 10px;
  max-height: 320px;
  overflow-y: auto;
  padding: 16px;
  background: var(--paper);
}

.chat-msg {
  max-width: 88%;
  padding: 11px 13px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.45;
}

.chat-msg.bot {
  justify-self: start;
  color: var(--gray-800);
  background: var(--white);
  border: var(--border);
}

.chat-msg.user {
  justify-self: end;
  color: var(--white);
  background: var(--magenta);
}

.chat-warning {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--gray-700);
  background: var(--magenta-soft);
  font-size: 0.78rem;
  font-weight: 750;
}

.quick-prompts {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 16px;
  border-top: 1px solid rgba(104, 113, 116, 0.14);
}

.quick-prompts button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  color: var(--magenta);
  background: var(--magenta-soft);
  font-size: 0.8rem;
  font-weight: 850;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 8px;
  padding: 14px 16px 16px;
}

.chatbot-form input {
  min-height: 44px;
}

.chatbot-form button {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--magenta);
}

.site-footer {
  padding: 54px 0 20px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--gray-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(180px, 0.7fr) minmax(300px, 1.15fr);
  gap: clamp(34px, 4vw, 58px);
  align-items: start;
}

.footer-logo-link {
  position: relative;
  display: block;
  width: 214px;
  height: 78px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius);
}

.footer-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: auto;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.footer-brand p {
  max-width: 370px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
  line-height: 1.65;
}

.site-footer h2 {
  margin-bottom: 17px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.footer-navigation ul,
.footer-contact-list,
.footer-socials ul,
.footer-bottom ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-navigation li + li {
  margin-top: 3px;
}

.footer-navigation a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-navigation a:hover,
.footer-navigation a:focus-visible {
  color: var(--white);
  transform: translateX(3px);
}

.footer-contact-list {
  display: grid;
  gap: 7px;
}

.footer-contact-list li,
.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.footer-contact-list a {
  overflow-wrap: anywhere;
}

.footer-contact-list .icon {
  width: 18px;
  height: 18px;
  color: #ffd8ee;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
  color: #ffd8ee;
}

.footer-channel-cta {
  margin-top: 17px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-channel-cta h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 0.96rem;
  line-height: 1.35;
}

.footer-channel-cta p {
  max-width: 410px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

.footer-channel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--magenta);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--magenta);
  font-size: 0.88rem;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-channel-button .icon {
  width: 18px;
  height: 18px;
}

.footer-channel-button:hover,
.footer-channel-button:focus-visible {
  color: var(--white);
  border-color: var(--magenta-strong);
  background: var(--magenta-strong);
  transform: translateY(-2px);
}

.footer-channel-button:active {
  transform: translateY(0);
}

.footer-socials {
  margin-top: 18px;
}

.footer-socials ul {
  display: flex;
  gap: 9px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--white);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--white);
  border-color: var(--magenta);
  background: var(--magenta);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px 28px;
  align-items: center;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.footer-bottom > span:last-child {
  text-align: right;
}

.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 821px) {
  .split-copy > p,
  .large-card > p,
  .legal-content > p,
  .buyer-card > p,
  .ilo-callout p {
    text-align: justify;
    text-justify: inter-word;
  }
}

@media (max-width: 1200px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .navbar {
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(104, 113, 116, 0.22);
    border-radius: var(--radius);
    color: var(--gray-950);
    background: var(--white);
    transition: color 300ms ease, background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    color: var(--magenta);
    border-color: rgba(176, 23, 115, 0.38);
    box-shadow: 0 8px 18px rgba(17, 19, 20, 0.08);
  }

  .site-header.is-scrolled .nav-toggle {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.12);
  }

  .site-header.is-scrolled .nav-toggle:hover,
  .site-header.is-scrolled .nav-toggle:focus-visible {
    color: var(--magenta);
    border-color: var(--white);
    background: var(--white);
  }

  .mobile-panel {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 89;
    display: none;
    align-content: start;
    gap: 2px;
    overflow: hidden auto;
    padding: 14px max(24px, calc((100vw - 640px) / 2)) 32px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 40px rgba(17, 19, 20, 0.14);
  }

  .mobile-panel.is-open {
    display: grid;
    animation: mobilePanelIn 220ms ease both;
  }

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

  .mobile-panel > a:not(.btn) {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(104, 113, 116, 0.14);
    border-radius: var(--radius);
    color: var(--gray-900);
    font-weight: 800;
  }

  .mobile-panel > a:not(.btn):hover,
  .mobile-panel > a:not(.btn):focus-visible,
  .mobile-panel > a.is-active {
    color: var(--magenta);
    background: var(--magenta-soft);
  }

  .mobile-panel > a.is-active::before,
  .mobile-group.is-current::before {
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 0;
    width: 3px;
    border-radius: 99px;
    background: var(--magenta);
    content: "";
  }

  .mobile-group {
    position: relative;
    border-bottom: 1px solid rgba(104, 113, 116, 0.14);
    border-radius: var(--radius);
  }

  .mobile-group > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding: 0 12px;
    border: 0;
    border-radius: var(--radius);
    color: var(--gray-950);
    background: transparent;
    font-weight: 850;
  }

  .mobile-group > button:hover,
  .mobile-group > button:focus-visible,
  .mobile-group > button.is-active {
    color: var(--magenta);
    background: var(--magenta-soft);
  }

  .mobile-group > button .icon {
    width: 18px;
    height: 18px;
    color: var(--magenta);
    transition: transform 180ms ease;
  }

  .mobile-group.is-open > button .icon {
    transform: rotate(90deg);
  }

  .mobile-submenu {
    display: grid;
    padding: 4px 12px 12px 26px;
  }

  .mobile-submenu[hidden] {
    display: none;
  }

  .mobile-submenu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 7px 10px;
    border-bottom: 0;
    border-radius: var(--radius);
    color: var(--gray-600);
    font-size: 0.92rem;
    font-weight: 750;
  }

  .mobile-submenu a:hover,
  .mobile-submenu a:focus-visible,
  .mobile-submenu a[aria-current="page"] {
    color: var(--magenta);
    background: var(--magenta-soft);
  }

  .mobile-panel .btn {
    margin-top: 10px;
  }

  .service-grid,
  .feature-grid,
  .tech-grid,
  .doctor-grid,
  .case-grid,
  .video-grid,
  .news-grid,
  .channel-grid,
  .stats-grid,
  .institution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(640px, 100%);
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-item::before,
  .timeline-item::after {
    display: none;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content h1 {
    font-size: 3.25rem;
  }
}

@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-connect {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(300px, 1.1fr);
    gap: 8px 40px;
  }

  .footer-connect > h2 {
    grid-column: 1 / -1;
  }

  .footer-channel-cta {
    margin-top: 0;
    padding: 0 0 0 40px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom nav {
    grid-column: 1 / -1;
    grid-row: 1;
  }
}

@media (max-width: 820px) {
  .container,
  .narrow {
    width: min(100% - 32px, 640px);
  }

  .section {
    padding: 72px 0;
  }

  .hero-slider,
  .hero-content {
    min-height: 82svh;
  }

  .hero-content {
    padding: 88px 0 108px;
  }

  .hero-content h1,
  .page-hero-copy h1,
  .not-found h1 {
    font-size: 2.45rem;
  }

  .section-intro h2,
  .split-copy h2,
  .large-card h2,
  .cta-band h2 {
    font-size: 2rem;
  }

  .split-grid,
  .media-split,
  .contact-layout,
  .page-hero-grid,
  .cta-grid,
  .two-column,
  .company-identity,
  .participation-card {
    grid-template-columns: 1fr;
  }

  .timeline,
  .ilo-callout {
    grid-template-columns: 1fr;
  }

  .ilo-callout {
    align-items: start;
  }

  .video-slide {
    grid-template-columns: 1fr;
  }

  .video-slide .video-frame {
    min-height: 360px;
    aspect-ratio: 16 / 9;
  }

  .participation-card {
    align-items: start;
  }

  .reverse .media-frame {
    order: 0;
  }

  .page-hero {
    padding: 80px 0 64px;
  }

  .page-hero-media {
    max-height: 360px;
  }

  .hero-controls {
    bottom: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    grid-template-columns: 1fr;
  }

  .client-slide {
    width: 220px;
  }

  .support-actions {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 40px;
  }

  .footer-main,
  .footer-connect {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 28px;
  }

  .footer-navigation ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }

  .footer-connect {
    grid-column: auto;
  }

  .footer-connect > h2 {
    grid-column: auto;
  }

  .footer-channel-cta {
    margin-top: 14px;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 9px;
    align-items: start;
    margin-top: 30px;
  }

  .footer-bottom nav {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-bottom ul {
    justify-content: flex-start;
  }

  .footer-bottom > span:last-child {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .header-brand {
    width: 142px;
  }

  .brand-logo {
    width: 142px;
    max-height: 48px;
  }

  .hero-slider,
  .hero-content {
    min-height: 760px;
  }

  .hero-actions,
  .form-actions {
    display: grid;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .feature-grid,
  .tech-grid,
  .doctor-grid,
  .case-grid,
  .video-grid,
  .news-grid,
  .channel-grid,
  .stats-grid,
  .institution-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero-metrics article {
    min-height: auto;
    padding: 15px;
  }

  .client-carousel {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .client-slide {
    width: 170px;
    height: 94px;
    padding: 6px;
  }

  .video-content {
    padding: 18px;
  }

  .video-slide .video-frame {
    min-height: 230px;
  }

  .video-controls {
    gap: 9px;
  }

  .video-dots {
    max-width: 92px;
    overflow-x: auto;
    padding: 5px 0;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article {
    min-height: auto;
    padding: 20px 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .proof-grid article:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .institution-card {
    grid-template-rows: 150px auto;
    min-height: 250px;
  }

  .support-actions {
    grid-template-columns: 1fr;
  }

  .channel-card {
    min-height: 318px;
    padding: 24px;
  }

  .floating-tools {
    right: 14px;
    bottom: 84px;
  }

  .scroll-top {
    bottom: 14px;
    left: 14px;
    width: 46px;
    height: 46px;
  }

  .float-action {
    width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    justify-content: center;
  }

  .float-action span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .chatbot {
    right: 14px;
    bottom: 14px;
  }

  .chatbot-panel {
    right: -2px;
    bottom: 66px;
    width: calc(100vw - 28px);
  }

  .hero-content h1,
  .page-hero-copy h1,
  .not-found h1 {
    font-size: 2.1rem;
  }

  .hero-content p,
  .page-hero-copy p {
    font-size: 1rem;
  }

  .service-card,
  .feature-card,
  .doctor-card,
  .case-card,
  .video-card,
  .news-card,
  .channel-card,
  .stat-card,
  .large-card,
  .quote-panel,
  .contact-card,
  .form-panel,
  .legal-content {
    padding: 22px;
  }

  .video-card {
    padding: 0;
  }

  .company-proof,
  .participation-card {
    padding: 22px;
  }

  .company-proof dl div {
    display: grid;
    gap: 4px;
  }

  .company-proof dd {
    text-align: left;
  }

  .location-actions {
    display: grid;
  }

  .profile-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Contenido de respaldo cuando JavaScript esta deshabilitado */
.noscript-fallback {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  color: var(--gray-900);
}

.noscript-fallback p {
  margin: 0 0 14px;
  line-height: 1.6;
}

.noscript-fallback .noscript-title {
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 0 10px;
  color: var(--magenta);
}

.noscript-fallback ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  line-height: 1.9;
}

.noscript-fallback nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  padding-top: 16px;
  border-top: var(--border);
}

.noscript-fallback a {
  color: var(--magenta-dark);
  font-weight: 650;
}

.form-status.is-error {
  color: var(--gray-700);
}

.status-note {
  display: block;
  margin-top: 6px;
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.82rem;
}
