:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-alt: #eef4f8;
  --surface-strong: #10253f;
  --ink: #102239;
  --ink-soft: #46566a;
  --line: rgba(16, 34, 57, 0.14);
  --brand-blue: #2e78bf;
  --brand-teal: #1ea9c8;
  --brand-green: #43b794;
  --accent-warm: #d48a58;
  --success: #2a8c5b;
  --danger: #b14444;
  --max-width: 1180px;
  --shadow-soft: 0 18px 40px rgba(16, 34, 57, 0.08);
  --shadow-strong: 0 24px 64px rgba(16, 34, 57, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --font-body: "Aptos", "Segoe UI Variable", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", "URW Palladio L", "Book Antiqua", Georgia, serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(248, 251, 254, 0.94);
  border-bottom: 1px solid rgba(16, 34, 57, 0.06);
}

.site-header__inner,
.footer__inner,
.section__inner,
.hero__inner,
.page-hero__inner {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.site-header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 196px;
  height: auto;
}

.brand__text {
  display: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(30, 169, 200, 0.1);
  color: var(--ink);
}

.top-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  font-weight: 700;
}

.language-switcher {
  position: relative;
}

.language-switcher::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(16, 34, 57, 0.56);
  border-bottom: 2px solid rgba(16, 34, 57, 0.56);
  transform: translateY(-62%) rotate(45deg);
  pointer-events: none;
}

.language-switcher__select {
  min-height: 46px;
  padding: 0 38px 0 14px;
  border: 1px solid rgba(16, 34, 57, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  appearance: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.language-switcher__select:focus {
  outline: none;
  border-color: rgba(30, 169, 200, 0.6);
  box-shadow: 0 0 0 4px rgba(30, 169, 200, 0.12);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.main-content {
  flex: 1;
}

.hero,
.page-hero {
  position: relative;
  overflow: clip;
  color: #ffffff;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(9, 21, 36, 0.84) 0%, rgba(12, 38, 61, 0.72) 48%, rgba(20, 38, 57, 0.4) 100%),
    linear-gradient(135deg, rgba(212, 138, 88, 0.18), rgba(67, 183, 148, 0.22));
}

.hero--home {
  background:
    linear-gradient(100deg, rgba(9, 21, 36, 0.86) 0%, rgba(12, 38, 61, 0.74) 48%, rgba(20, 38, 57, 0.5) 100%),
    url("./assets/site/doctor-home-contact.jpg") center/cover no-repeat;
}

.hero--about {
  background:
    linear-gradient(100deg, rgba(9, 21, 36, 0.84) 0%, rgba(12, 38, 61, 0.68) 48%, rgba(20, 38, 57, 0.48) 100%),
    url("./assets/site/istanbul-skyline.jpg") center/cover no-repeat;
}

.hero--services {
  background:
    linear-gradient(100deg, rgba(9, 21, 36, 0.84) 0%, rgba(12, 38, 61, 0.68) 48%, rgba(20, 38, 57, 0.48) 100%),
    url("./assets/site/medical-travel.jpg") center/cover no-repeat;
}

.hero--partners {
  background:
    linear-gradient(100deg, rgba(9, 21, 36, 0.84) 0%, rgba(12, 38, 61, 0.68) 48%, rgba(20, 38, 57, 0.48) 100%),
    url("./assets/hospitals/medicana-atakoy-optimized.jpg") center/cover no-repeat;
}

.hero--contact {
  background:
    linear-gradient(100deg, rgba(9, 21, 36, 0.84) 0%, rgba(12, 38, 61, 0.68) 48%, rgba(20, 38, 57, 0.48) 100%),
    url("./assets/site/doctor-turkish-stethoscope.jpg") center/cover no-repeat;
}

.hero--privacy {
  background:
    linear-gradient(100deg, rgba(9, 21, 36, 0.86) 0%, rgba(12, 38, 61, 0.74) 48%, rgba(20, 38, 57, 0.52) 100%),
    url("./assets/site/doctor-medical-cross.jpg") center/cover no-repeat;
}

.hero__inner,
.page-hero__inner {
  position: relative;
  z-index: 1;
  padding: 128px 0 112px;
}

.hero__copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
  font-weight: 600;
}

.hero h1,
.page-hero h1 {
  margin: 20px 0 18px;
  font-family: var(--font-display);
  font-size: 76px;
  line-height: 1.02;
  font-weight: 600;
}

.hero p,
.page-hero p {
  max-width: 680px;
  margin: 0;
  font-size: 21px;
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.88);
}

.hero__actions,
.section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.button--dark {
  background: var(--surface-strong);
  color: #ffffff;
}

.hero-trust {
  position: relative;
  z-index: 2;
  margin-top: -32px;
}

.trust-band {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 34, 57, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.trust-item strong,
.mini-stat strong {
  display: block;
  font-size: 18px;
}

.trust-item span,
.mini-stat span {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.section {
  padding: 112px 0;
}

.section--tight {
  padding: 88px 0;
}

.section--contact-overview {
  position: relative;
  z-index: 2;
  margin-top: -54px;
  padding-top: 0;
}

.section--muted {
  background: var(--surface-alt);
}

.section--dark {
  background: var(--surface-strong);
  color: #ffffff;
}

.section--dark .section-title,
.section--dark .section-copy,
.section--dark .subtle-label,
.section--dark p,
.section--dark li {
  color: rgba(255, 255, 255, 0.88);
}

.section-header {
  max-width: 680px;
  margin-bottom: 44px;
}

.subtle-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 700;
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.14;
  font-weight: 600;
}

.section-copy {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.82;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: center;
}

.split__content {
  display: grid;
  gap: 28px;
  align-content: center;
}

.split__content .section-header {
  margin-bottom: 0;
}

.split--contact {
  align-items: stretch;
}

.split__content p,
.stack p,
.timeline__item p,
.hospital-card p,
.service-card p,
.feature-card p,
.contact-card p,
.note-panel p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

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

.visual-panel {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: #dfe8f0;
}

.visual-panel--home {
  background:
    linear-gradient(180deg, rgba(16, 37, 63, 0.16), rgba(16, 37, 63, 0.6)),
    url("./assets/site/istanbul-waterfront.jpg") center/cover no-repeat;
}

.visual-panel--concierge {
  background:
    linear-gradient(180deg, rgba(16, 37, 63, 0.16), rgba(16, 37, 63, 0.58)),
    url("./assets/site/doctor-home-contact.jpg") center/cover no-repeat;
}

.visual-panel--hospital {
  background: #d8e3ed;
}

.visual-panel--contact {
  background:
    linear-gradient(180deg, rgba(16, 37, 63, 0.16), rgba(16, 37, 63, 0.58)),
    url("./assets/site/doctor-turkish-stethoscope.jpg") center/cover no-repeat;
}

.visual-panel__image,
.visual-panel__veil,
.visual-panel__flag {
  position: absolute;
  z-index: 0;
}

.visual-panel__image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-panel__veil {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 21, 35, 0.08) 0%, rgba(8, 21, 35, 0.3) 42%, rgba(8, 21, 35, 0.72) 100%),
    linear-gradient(120deg, rgba(16, 37, 63, 0.12), rgba(46, 120, 191, 0.14));
}

.visual-panel__flag {
  top: 24px;
  left: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.panel-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: 320px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  z-index: 1;
}

.panel-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
}

.panel-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.panel-card__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.84;
}

.panel-card--glass {
  max-width: 376px;
  background: rgba(9, 21, 36, 0.72);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(9, 21, 36, 0.28);
}

.panel-card--glass h3,
.panel-card--glass p {
  color: #ffffff;
}

.panel-card--glass p {
  color: rgba(255, 255, 255, 0.82);
}

.feature-grid,
.service-grid,
.hospital-grid,
.contact-grid,
.mini-stat-grid,
.note-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

.contact-grid--contactpage {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

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

.feature-card,
.service-card,
.hospital-card,
.contact-card,
.mini-stat,
.note-panel {
  padding: 32px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(16, 34, 57, 0.08);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  min-height: 100%;
}

.feature-card__number,
.service-card__number,
.timeline__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(30, 169, 200, 0.12);
  color: var(--brand-blue);
  font-size: 15px;
  font-weight: 700;
}

.feature-card h3,
.service-card h3,
.hospital-card h3,
.contact-card h3,
.timeline__item h3,
.note-panel h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
}

.feature-card p + p,
.stack p + p,
.section-copy + .stack,
.note-panel p + p {
  margin-top: 12px;
}

.feature-card--highlight,
.note-panel--accent {
  background:
    linear-gradient(180deg, rgba(67, 183, 148, 0.14), rgba(255, 255, 255, 0.98)),
    var(--surface);
}

.feature-card--highlight {
  grid-column: 1 / -1;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card__media {
  aspect-ratio: 16 / 10;
  margin-bottom: 4px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16, 37, 63, 0.06), rgba(16, 37, 63, 0.18));
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.service-card__tag,
.hospital-card__tag,
.contact-card__tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 34, 57, 0.06);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

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

.timeline__item {
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.bullet-list,
.contact-list,
.footer-links,
.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullet-list {
  display: grid;
  gap: 12px;
}

.bullet-list li,
.detail-list li {
  display: flex;
  gap: 12px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.bullet-list li::before,
.detail-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
}

.hospital-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hospital-card__media {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16, 37, 63, 0.06), rgba(16, 37, 63, 0.18));
}

.hospital-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.contact-surface {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(16, 34, 57, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-overview {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 34, 57, 0.08);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}

.contact-overview__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.contact-overview__header .section-header {
  margin-bottom: 0;
}

.contact-overview__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(16, 37, 63, 0.94), rgba(29, 86, 146, 0.92));
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 18px 40px rgba(16, 37, 63, 0.18);
}

.contact-card--premium {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 34px 34px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.98)),
    var(--surface);
  border: 1px solid rgba(16, 34, 57, 0.08);
  box-shadow: 0 24px 56px rgba(16, 34, 57, 0.1);
  overflow: hidden;
}

.contact-card--premium::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(30, 169, 200, 0.84), rgba(67, 183, 148, 0.84));
}

.contact-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-card__index {
  color: rgba(16, 34, 57, 0.34);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-card__value {
  margin: 2px 0 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.18;
  color: var(--ink);
}

.contact-card__value a {
  color: inherit;
}

.contact-card__value--direct {
  font-size: clamp(24px, 2.05vw, 31px);
  letter-spacing: 0.01em;
}

.contact-card__value--email {
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 1.24;
}

.contact-card__value--address {
  max-width: 30ch;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.46;
}

.contact-card__support {
  max-width: 34ch;
  margin-top: 4px;
}

.contact-card--wide {
  grid-column: 1 / -1;
}

.contact-card--wide .contact-card__support {
  max-width: 48ch;
}

.contact-card__action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.contact-card__action::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.contact-card__action:hover {
  color: var(--brand-blue);
}

.contact-surface--primary {
  padding: 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.98)),
    var(--surface);
  box-shadow: 0 26px 60px rgba(16, 34, 57, 0.1);
}

.contact-surface--primary .section-header {
  margin-bottom: 34px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 40px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.field-group {
  display: grid;
  gap: 20px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 14px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(16, 34, 57, 0.12);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field select {
  min-height: 54px;
  appearance: none;
}

.field textarea {
  min-height: 164px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(30, 169, 200, 0.6);
  box-shadow: 0 0 0 4px rgba(30, 169, 200, 0.12);
}

.form-guidance,
.form-warning {
  margin: 0;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.7;
}

.form-guidance {
  background: rgba(46, 120, 191, 0.08);
  color: var(--ink-soft);
}

.form-warning {
  background: rgba(212, 138, 88, 0.12);
  color: var(--ink);
  border: 1px solid rgba(212, 138, 88, 0.22);
}

.form-guidance a,
.form-warning a,
.legal-card a {
  color: var(--brand-blue);
  font-weight: 700;
}

.checkbox {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.checkbox input {
  margin-top: 4px;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-note,
.form-status {
  font-size: 14px;
  line-height: 1.6;
}

.form-note {
  color: var(--ink-soft);
}

.form-status {
  min-height: 24px;
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.form-status[data-state="success"] {
  color: var(--success);
}

.panel-card--contact {
  left: 28px;
  right: 28px;
  bottom: 28px;
  max-width: 420px;
}

.panel-card--contact .bullet-list {
  margin-top: 18px;
  gap: 14px;
}

.panel-card--glass .bullet-list li {
  color: rgba(255, 255, 255, 0.84);
}

.panel-card--glass .bullet-list li::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(175, 233, 215, 0.88));
}

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

.contact-list li {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(16, 34, 57, 0.08);
}

.contact-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.contact-list a {
  display: block;
  line-height: 1.8;
}

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

.legal-card {
  padding: 34px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(16, 34, 57, 0.08);
  box-shadow: var(--shadow-soft);
}

.legal-card--wide {
  grid-column: 1 / -1;
}

.legal-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
}

.legal-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.legal-card p + p,
.legal-card .detail-list,
.legal-card .bullet-list {
  margin-top: 16px;
}

.legal-card .detail-list,
.legal-card .bullet-list {
  display: grid;
  gap: 12px;
}

.cta-band {
  padding: 48px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(46, 120, 191, 0.96), rgba(67, 183, 148, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.cta-band h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.05;
  font-weight: 600;
}

.cta-band p {
  max-width: 720px;
  margin: 0;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.footer {
  background: linear-gradient(180deg, #f8fbfd 0%, #edf4f8 100%);
  color: var(--ink-soft);
  border-top: 1px solid rgba(16, 34, 57, 0.08);
}

.footer__inner {
  padding: 42px 0;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.7fr) minmax(0, 1.05fr);
  align-items: start;
}

.footer-brand img {
  width: 242px;
  height: auto;
}

.footer p {
  margin: 14px 0 0;
  line-height: 1.75;
}

.footer strong {
  color: var(--ink);
}

.footer-links {
  display: grid;
  gap: 14px;
}

.footer-links a {
  display: block;
  line-height: 1.75;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-meta {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(16, 34, 57, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #26d366, #169c4f);
  color: #ffffff;
  box-shadow: 0 20px 48px rgba(22, 156, 79, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 56px rgba(22, 156, 79, 0.34);
}

.whatsapp-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  flex: 0 0 auto;
}

.whatsapp-float__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.whatsapp-float__copy {
  display: grid;
  gap: 0;
  min-width: 0;
}

.whatsapp-float__copy strong {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

.page-spacer {
  padding-top: 22px;
}

@media (max-width: 1100px) {
  .hero h1,
  .page-hero h1 {
    font-size: 60px;
    line-height: 1.04;
  }

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

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

  .contact-overview__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    min-height: 74px;
    gap: 12px;
  }

  .brand img {
    width: 148px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 34, 57, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .top-cta {
    display: none;
  }

  .nav-wrap {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .language-switcher__select {
    min-height: 44px;
    padding: 0 34px 0 12px;
    font-size: 13px;
  }

  .hero__inner,
  .page-hero__inner {
    padding: 108px 0 88px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 48px;
    line-height: 1.06;
  }

  .hero p,
  .page-hero p {
    font-size: 18px;
  }

  .split,
  .contact-layout,
  .feature-grid,
  .service-grid,
  .hospital-grid,
  .timeline,
  .contact-grid,
  .field-row,
  .mini-stat-grid,
  .note-grid,
  .legal-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-band {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .section {
    padding: 92px 0;
  }

  .section-title {
    font-size: 40px;
  }

  .visual-panel {
    min-height: 440px;
  }

  .section--contact-overview {
    margin-top: -34px;
  }

  .contact-overview,
  .contact-surface--primary {
    padding: 28px;
  }

  .contact-card__value {
    font-size: 24px;
  }

  .contact-grid--contactpage {
    grid-template-columns: 1fr;
  }

  .panel-card {
    left: 20px;
    right: 20px;
    max-width: none;
  }

  .legal-card--wide {
    grid-column: auto;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 640px) {
  .site-header__inner,
  .footer__inner,
  .section__inner,
  .hero__inner,
  .page-hero__inner,
  .trust-band {
    width: min(100% - 28px, var(--max-width));
  }

  .site-header__inner {
    min-height: 68px;
    gap: 10px;
  }

  .brand img {
    width: 130px;
  }

  .nav-wrap {
    gap: 8px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .language-switcher__select {
    min-height: 40px;
    padding: 0 30px 0 10px;
    font-size: 12px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .section-title {
    font-size: 32px;
    line-height: 1.16;
  }

  .cta-band {
    padding: 28px;
  }

  .cta-band h2 {
    font-size: 30px;
  }

  .contact-surface,
  .feature-card,
  .service-card,
  .hospital-card,
  .contact-card,
  .timeline__item,
  .note-panel,
  .legal-card {
    padding: 24px;
  }

  .form-footer {
    align-items: flex-start;
  }

  .section--contact-overview {
    margin-top: -22px;
  }

  .contact-overview {
    padding: 24px;
  }

  .contact-card--premium,
  .contact-surface--primary {
    padding: 24px;
  }

  .contact-card__value {
    font-size: 21px;
    line-height: 1.24;
  }

  .contact-card__value--email,
  .contact-card__value--address {
    font-size: 19px;
    line-height: 1.36;
  }

  .contact-overview__badge {
    width: 100%;
    justify-content: center;
  }

  .visual-panel--contact {
    display: flex;
    align-items: flex-end;
    min-height: 560px;
    padding: 18px;
    background-position: center top;
  }

  .panel-card--contact {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin-top: 124px;
    padding: 22px;
  }

  .panel-card--contact h3 {
    font-size: 22px;
    line-height: 1.24;
  }

  .panel-card--contact p,
  .panel-card--contact .bullet-list li {
    font-size: 14px;
    line-height: 1.65;
  }

  .panel-card--contact .panel-card__eyebrow {
    margin-bottom: 10px;
  }

  .panel-card--contact .bullet-list {
    margin-top: 14px;
    gap: 12px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 10px;
  }

  .whatsapp-float__copy {
    display: none;
  }

}

/* Premium refinement system */
:root {
  --bg: #f7f3ec;
  --surface: #fffdfa;
  --surface-alt: #f1ebe2;
  --surface-strong: #132439;
  --ink: #172337;
  --ink-soft: #5d6876;
  --line: rgba(19, 36, 57, 0.12);
  --brand-blue: #2f678f;
  --brand-teal: #5f9eb0;
  --brand-green: #6da58f;
  --accent-warm: #b88760;
  --shadow-soft: 0 18px 40px rgba(17, 27, 43, 0.08);
  --shadow-strong: 0 28px 84px rgba(17, 27, 43, 0.12);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --max-width: 1200px;
  --font-body: "Inter", "Segoe UI Variable", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", "URW Palladio L", "Book Antiqua", Georgia, serif;
}

html {
  background: #f7f3ec;
}

body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 18%),
    linear-gradient(180deg, #f7f3ec 0%, #f4eee4 100%);
  color: var(--ink);
}

.site-header {
  background: rgba(249, 246, 240, 0.86);
  border-bottom: 1px solid rgba(19, 36, 57, 0.08);
  backdrop-filter: blur(20px);
}

.site-header__inner {
  min-height: 94px;
}

.brand img {
  width: 206px;
}

.nav-wrap {
  gap: 16px;
}

.site-nav {
  gap: 22px;
}

.site-nav a {
  padding: 8px 0;
  background: transparent;
  border-radius: 0;
  color: rgba(23, 35, 55, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 135, 96, 0.8), rgba(184, 135, 96, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: transparent;
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.language-switcher__select {
  min-height: 44px;
  border-color: rgba(19, 36, 57, 0.1);
  background: rgba(255, 253, 248, 0.94);
  font-size: 13px;
  font-weight: 700;
}

.top-cta {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(19, 36, 57, 0.08);
  border-radius: 999px;
  background: var(--surface-strong);
  box-shadow: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero::before,
.page-hero::before {
  background:
    linear-gradient(92deg, rgba(8, 17, 29, 0.9) 0%, rgba(12, 26, 43, 0.76) 42%, rgba(14, 28, 43, 0.28) 100%),
    linear-gradient(180deg, rgba(184, 135, 96, 0.16), rgba(95, 158, 176, 0.06));
}

.hero__inner,
.page-hero__inner {
  padding: 152px 0 126px;
}

.hero__copy {
  display: grid;
  gap: 22px;
  max-width: 720px;
}

.eyebrow {
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.hero h1,
.page-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(68px, 7vw, 92px);
  line-height: 0.96;
  font-weight: 600;
}

.hero p,
.page-hero p {
  max-width: 35rem;
  font-size: 20px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.84);
}

.hero__actions,
.section__actions {
  margin-top: 12px;
}

.button {
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button--primary,
.button--dark {
  background: var(--surface-strong);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(12, 26, 43, 0.18);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(19, 36, 57, 0.12);
  color: var(--ink);
}

.hero-trust {
  margin-top: -40px;
}

.trust-band {
  padding: 0;
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid rgba(19, 36, 57, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.trust-item {
  position: relative;
  padding: 28px 30px 30px;
}

.trust-item::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 24px;
  width: 1px;
  background: rgba(19, 36, 57, 0.08);
}

.trust-item:last-child::after {
  display: none;
}

.trust-item strong,
.mini-stat strong {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
}

.trust-item span,
.mini-stat span {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.section {
  padding: 126px 0;
}

.section--tight {
  padding: 100px 0;
}

.section--muted {
  background: linear-gradient(180deg, #f3ece2 0%, #efe7dc 100%);
}

.section-header {
  max-width: 760px;
  margin-bottom: 52px;
  display: grid;
  gap: 16px;
}

.subtle-label {
  gap: 12px;
  margin-bottom: 0;
  color: var(--accent-warm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.subtle-label::after {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(184, 135, 96, 0.46);
}

.section-title {
  max-width: 14ch;
  font-size: clamp(46px, 4.4vw, 62px);
  line-height: 1.02;
  font-weight: 600;
}

.section-copy {
  margin: 0;
  max-width: 39rem;
  font-size: 18px;
  line-height: 1.9;
}

.split {
  gap: 76px;
  align-items: center;
}

.split__content {
  gap: 32px;
}

.split__content p,
.stack p,
.timeline__item p,
.hospital-card p,
.service-card p,
.feature-card p,
.contact-card p,
.note-panel p,
.legal-card p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.82;
}

.stack {
  gap: 20px;
}

.visual-panel {
  min-height: 620px;
  border: 1px solid rgba(19, 36, 57, 0.08);
  border-radius: 34px;
  box-shadow: var(--shadow-strong);
}

.visual-panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.visual-panel__veil {
  background:
    linear-gradient(180deg, rgba(8, 21, 35, 0.08) 0%, rgba(8, 21, 35, 0.24) 42%, rgba(8, 21, 35, 0.7) 100%),
    linear-gradient(120deg, rgba(18, 36, 57, 0.14), rgba(95, 158, 176, 0.12));
}

.panel-card {
  right: 36px;
  bottom: 36px;
  max-width: 340px;
  padding: 32px;
  border-radius: 22px;
  background: rgba(255, 251, 245, 0.94);
  border: 1px solid rgba(19, 36, 57, 0.08);
  box-shadow: 0 24px 50px rgba(17, 27, 43, 0.12);
}

.panel-card h3 {
  margin: 0 0 14px;
  font-size: 31px;
  line-height: 1.02;
}

.panel-card p {
  font-size: 15px;
}

.panel-card__eyebrow {
  margin-bottom: 16px;
  color: var(--accent-warm);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.panel-card--glass {
  background: rgba(9, 20, 32, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 60px rgba(9, 21, 36, 0.24);
}

.feature-grid,
.service-grid,
.hospital-grid,
.contact-grid,
.mini-stat-grid,
.note-grid,
.footer-grid,
.timeline {
  gap: 28px;
}

.feature-card,
.service-card,
.hospital-card,
.contact-card,
.mini-stat,
.note-panel,
.contact-surface,
.contact-overview,
.legal-card {
  border: 1px solid rgba(19, 36, 57, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 242, 0.98)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.service-card,
.hospital-card,
.contact-card,
.mini-stat,
.note-panel {
  padding: 36px;
  border-radius: 24px;
}

.feature-card__number,
.service-card__number,
.timeline__count {
  width: auto;
  height: auto;
  margin-bottom: 18px;
  padding-top: 12px;
  border-radius: 0;
  border-top: 1px solid rgba(184, 135, 96, 0.32);
  background: none;
  color: var(--accent-warm);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.feature-card h3,
.service-card h3,
.hospital-card h3,
.contact-card h3,
.timeline__item h3,
.note-panel h3,
.legal-card h3 {
  margin: 0 0 16px;
  font-size: 33px;
  line-height: 1.02;
  font-weight: 600;
}

.feature-card--highlight,
.note-panel--accent {
  background:
    linear-gradient(180deg, rgba(184, 135, 96, 0.12), rgba(255, 255, 255, 0.98)),
    var(--surface);
  border-color: rgba(184, 135, 96, 0.22);
}

.service-card,
.hospital-card {
  gap: 14px;
}

.service-card__media,
.hospital-card__media {
  margin-bottom: 8px;
  border-radius: 16px;
}

.service-card__tag,
.hospital-card__tag,
.contact-card__tag {
  padding: 8px 12px;
  background: rgba(184, 135, 96, 0.1);
  color: var(--accent-warm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline__item {
  padding: 36px;
  border-radius: 24px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.bullet-list li,
.detail-list li {
  gap: 14px;
}

.bullet-list li::before,
.detail-list li::before {
  margin-top: 9px;
  background: linear-gradient(135deg, rgba(184, 135, 96, 0.95), rgba(95, 158, 176, 0.95));
}

.contact-surface {
  padding: 46px;
  border-radius: 30px;
}

.contact-layout {
  gap: 54px;
}

.contact-overview {
  padding: 40px;
  border-radius: 30px;
  backdrop-filter: blur(18px);
}

.contact-overview__badge {
  background: var(--surface-strong);
  box-shadow: none;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card--premium {
  padding: 36px 36px 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 239, 0.98)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.contact-card--premium::before {
  height: 2px;
  background: linear-gradient(90deg, rgba(184, 135, 96, 0.92), rgba(95, 158, 176, 0.72));
}

.contact-card__index {
  color: rgba(23, 35, 55, 0.28);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.feature-card__number,
.service-card__number,
.timeline__count {
  display: block;
  width: 46px;
  height: 1px;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(184, 135, 96, 0.7), rgba(184, 135, 96, 0));
  color: transparent;
  font-size: 0;
  letter-spacing: 0;
}

/* Layout discipline pass: flatter alignment and calmer typography across pages. */
.site-shell,
.site-shell * {
  letter-spacing: 0 !important;
}

.section-title {
  max-width: 18ch;
  line-height: 1.08;
}

.hero h1,
.page-hero h1 {
  line-height: 1.02;
}

.feature-grid,
.service-grid,
.hospital-grid,
.contact-grid,
.note-grid,
.timeline {
  align-items: stretch;
}

.feature-card,
.service-card,
.hospital-card,
.contact-card,
.note-panel,
.timeline__item,
.legal-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card h3,
.service-card h3,
.hospital-card h3,
.contact-card h3,
.timeline__item h3,
.note-panel h3,
.legal-card h3 {
  font-size: 29px;
  line-height: 1.14;
}

.hospital-grid--featured .hospital-card {
  transform: none !important;
}

.hospital-grid--featured {
  align-items: stretch;
}

.hospital-card__media {
  width: 100%;
}

.hospital-card__tag,
.service-card__tag,
.contact-card__tag {
  line-height: 1.2;
}

.hospital-card p,
.service-card p,
.feature-card p,
.contact-card p,
.note-panel p,
.timeline__item p {
  font-size: 16px;
  line-height: 1.74;
}

@media (max-width: 900px) {
  .feature-card h3,
  .service-card h3,
  .hospital-card h3,
  .contact-card h3,
  .timeline__item h3,
  .note-panel h3,
  .legal-card h3 {
    font-size: 25px;
    line-height: 1.16;
  }
}

@media (max-width: 640px) {
  .section-title {
    max-width: 100%;
    line-height: 1.12;
  }

  .feature-card h3,
  .service-card h3,
  .hospital-card h3,
  .contact-card h3,
  .timeline__item h3,
  .note-panel h3,
  .legal-card h3,
  .panel-card h3,
  .panel-card--contact h3 {
    font-size: 23px;
    line-height: 1.16;
  }
}

.section--dark .timeline__count {
  background: linear-gradient(90deg, rgba(184, 135, 96, 0.82), rgba(184, 135, 96, 0));
}

.contact-card__index {
  width: 34px;
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(184, 135, 96, 0.64), rgba(184, 135, 96, 0));
  color: transparent;
  font-size: 0;
  letter-spacing: 0;
}

.contact-card__value {
  font-family: var(--font-display);
  font-size: clamp(32px, 2.5vw, 42px);
  line-height: 1.02;
}

.contact-card__value--direct {
  font-size: clamp(30px, 2.4vw, 40px);
}

.contact-card__value--email {
  font-size: clamp(25px, 1.95vw, 33px);
  line-height: 1.12;
}

.contact-card__value--address {
  font-size: clamp(22px, 1.7vw, 29px);
  line-height: 1.28;
}

.contact-card__support {
  max-width: 34ch;
  font-size: 15px;
}

.contact-card__action {
  padding-top: 18px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-surface--primary {
  padding: 48px;
  box-shadow: var(--shadow-strong);
}

.field label {
  color: rgba(23, 35, 55, 0.74);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(19, 36, 57, 0.12);
}

.form-guidance,
.form-warning {
  border-radius: 16px;
  font-size: 13px;
}

.form-guidance {
  background: rgba(95, 158, 176, 0.1);
}

.form-warning {
  background: rgba(184, 135, 96, 0.11);
  border-color: rgba(184, 135, 96, 0.18);
}

.contact-list li {
  padding: 18px 0 20px;
}

.contact-list strong {
  margin-bottom: 10px;
  color: var(--accent-warm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-list a {
  max-width: 22ch;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.2;
}

.legal-card {
  padding: 38px;
  border-radius: 24px;
}

.cta-band {
  padding: 54px;
  border-radius: 30px;
  background:
    linear-gradient(120deg, rgba(12, 27, 43, 0.98), rgba(24, 47, 73, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow-strong);
}

.cta-band h2 {
  font-size: 48px;
  line-height: 0.98;
}

.cta-band p {
  font-size: 17px;
}

.footer {
  background: linear-gradient(180deg, #eee4d6 0%, #e6d9c9 100%);
  border-top: 1px solid rgba(19, 36, 57, 0.08);
}

.footer__inner {
  padding: 56px 0 36px;
}

.footer-brand {
  max-width: 260px;
}

.footer-brand img {
  width: 196px;
}

.footer strong {
  color: var(--accent-warm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer p,
.footer-links a {
  font-size: 15px;
}

.footer-links {
  gap: 12px;
}

.footer-meta {
  margin-top: 34px;
  padding-top: 24px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whatsapp-float {
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  padding: 0;
  justify-content: center;
  border-radius: 999px;
  box-shadow: 0 22px 44px rgba(22, 156, 79, 0.24);
}

.whatsapp-float__icon {
  width: 64px;
  height: 64px;
  background: transparent;
}

.whatsapp-float__copy {
  display: none;
}

.page-home .feature-grid--choose {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.page-home .feature-grid--choose .feature-card:nth-child(1) {
  grid-column: span 7;
}

.page-home .feature-grid--choose .feature-card:nth-child(2) {
  grid-column: span 5;
}

.page-home .feature-grid--choose .feature-card:nth-child(3),
.page-home .feature-grid--choose .feature-card:nth-child(4),
.page-home .feature-grid--choose .feature-card:nth-child(5) {
  grid-column: span 4;
}

.page-home .feature-grid--about .feature-card:nth-child(odd),
.page-about .note-grid--mission .note-panel:nth-child(odd) {
  background:
    linear-gradient(180deg, rgba(95, 158, 176, 0.08), rgba(255, 255, 255, 0.98)),
    var(--surface);
}

.page-services .service-grid--portfolio {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.page-services .service-grid--portfolio .service-card:nth-child(1),
.page-services .service-grid--portfolio .service-card:nth-child(4),
.page-services .service-grid--portfolio .service-card:nth-child(5) {
  grid-column: span 7;
}

.page-services .service-grid--portfolio .service-card:nth-child(2),
.page-services .service-grid--portfolio .service-card:nth-child(3),
.page-services .service-grid--portfolio .service-card:nth-child(6) {
  grid-column: span 5;
}

.page-services .timeline--service .timeline__item:nth-child(odd) {
  background: rgba(255, 255, 255, 0.07);
}

.page-partners .hospital-grid--featured .hospital-card:nth-child(2) {
  transform: translateY(26px);
}

.page-home .hero__copy h1,
.page-contact .page-hero h1 {
  max-width: 10ch;
}

@media (max-width: 1100px) {
  .trust-item::after {
    display: none;
  }

  .page-home .feature-grid--choose,
  .page-services .service-grid--portfolio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-home .feature-grid--choose .feature-card,
  .page-services .service-grid--portfolio .service-card {
    grid-column: auto;
  }

  .page-partners .hospital-grid--featured .hospital-card:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    min-height: 78px;
  }

  .brand img {
    width: 156px;
  }

  .site-nav {
    gap: 6px;
  }

  .site-nav a {
    padding: 12px 6px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .hero__inner,
  .page-hero__inner {
    padding: 124px 0 100px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(54px, 12vw, 72px);
  }

  .section {
    padding: 96px 0;
  }

  .section-title {
    font-size: 42px;
  }

  .panel-card,
  .panel-card--contact {
    right: 24px;
    left: 24px;
    bottom: 24px;
    max-width: none;
  }

  .feature-card h3,
  .service-card h3,
  .hospital-card h3,
  .contact-card h3,
  .timeline__item h3,
  .note-panel h3,
  .legal-card h3,
  .panel-card h3 {
    font-size: 28px;
  }

  .contact-list a {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .site-header {
    background: rgba(249, 246, 240, 0.94);
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand img {
    width: 110px;
  }

  .nav-wrap {
    gap: 8px;
  }

  .language-switcher {
    max-width: 112px;
  }

  .language-switcher__select {
    min-height: 42px;
    padding: 0 26px 0 10px;
    font-size: 12px;
  }

  .hero__inner,
  .page-hero__inner {
    padding: 104px 0 86px;
  }

  .eyebrow {
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .eyebrow::before {
    width: 28px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 9ch;
    font-size: 42px;
    line-height: 0.98;
  }

  .hero p,
  .page-hero p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.76;
  }

  .hero__actions,
  .page-hero .hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero__actions .button,
  .page-hero .hero__actions .button {
    width: 100%;
  }

  .button,
  .top-cta {
    min-height: 48px;
    padding: 0 18px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .trust-band {
    border-radius: 24px;
  }

  .trust-item {
    padding: 22px 22px 24px;
  }

  .trust-item strong,
  .mini-stat strong {
    font-size: 21px;
    line-height: 1.02;
  }

  .section {
    padding: 84px 0;
  }

  .section-title {
    font-size: 36px;
  }

  .section-copy,
  .split__content p,
  .stack p,
  .timeline__item p,
  .hospital-card p,
  .service-card p,
  .feature-card p,
  .contact-card p,
  .note-panel p,
  .legal-card p {
    font-size: 15px;
    line-height: 1.74;
  }

  .visual-panel {
    min-height: 520px;
    border-radius: 28px;
  }

  .visual-panel::after {
    inset: 12px;
    border-radius: 20px;
  }

  .contact-surface,
  .contact-overview,
  .feature-card,
  .service-card,
  .hospital-card,
  .contact-card,
  .timeline__item,
  .note-panel,
  .legal-card,
  .contact-card--premium,
  .contact-surface--primary {
    padding: 22px;
    border-radius: 22px;
  }

  .feature-card,
  .service-card,
  .hospital-card {
    gap: 10px;
  }

  .feature-card__number,
  .service-card__number,
  .timeline__count {
    padding-top: 8px;
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .feature-card h3,
  .service-card h3,
  .hospital-card h3,
  .contact-card h3,
  .timeline__item h3,
  .note-panel h3,
  .legal-card h3,
  .panel-card h3,
  .panel-card--contact h3 {
    font-size: 21px;
    line-height: 1.12;
    margin-bottom: 12px;
  }

  .panel-card {
    padding: 24px;
  }

  .service-card__media,
  .hospital-card__media {
    margin-bottom: 2px;
    border-radius: 14px;
    aspect-ratio: 16 / 10;
  }

  .service-card__tag,
  .hospital-card__tag,
  .contact-card__tag {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .contact-card__value {
    font-size: 26px;
  }

  .contact-card__value--email,
  .contact-card__value--address {
    font-size: 22px;
    line-height: 1.22;
  }

  .contact-list a {
    font-size: 22px;
    max-width: none;
  }

  .cta-band {
    padding: 30px;
    border-radius: 24px;
  }

  .cta-band h2 {
    font-size: 34px;
  }

  .footer__inner {
    padding: 34px 0 24px;
  }

  .footer-grid {
    gap: 26px;
  }

  .footer-brand img {
    width: 148px;
  }

  .footer-brand p {
    margin-top: 10px;
    max-width: 19rem;
    font-size: 14px;
    line-height: 1.65;
  }

  .footer strong {
    display: inline-block;
    margin-bottom: 10px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links a {
    font-size: 14px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .footer-meta {
    display: grid;
    justify-content: start;
    gap: 8px;
    margin-top: 24px;
    padding-top: 18px;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: none;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
  }

  .whatsapp-float__icon {
    width: 58px;
    height: 58px;
  }
}

.feature-card__number,
.service-card__number,
.timeline__count {
  display: block;
  width: 46px;
  height: 1px;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(184, 135, 96, 0.72), rgba(184, 135, 96, 0));
  color: transparent;
  font-size: 0;
  letter-spacing: 0;
}

.section--dark .timeline__count {
  background: linear-gradient(90deg, rgba(184, 135, 96, 0.84), rgba(184, 135, 96, 0));
}

.contact-card__index {
  display: block;
  width: 34px;
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(184, 135, 96, 0.64), rgba(184, 135, 96, 0));
  color: transparent;
  font-size: 0;
  letter-spacing: 0;
}

/* Final alignment and typography polish. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-shell,
.site-shell * {
  letter-spacing: 0 !important;
}

.feature-card__number,
.service-card__number,
.timeline__count,
.contact-card__index {
  display: none !important;
}

.section__inner,
.hero__inner,
.page-hero__inner,
.site-header__inner,
.footer__inner,
.hero__copy,
.section-header,
.feature-grid,
.service-grid,
.hospital-grid,
.contact-grid,
.note-grid,
.timeline,
.feature-card,
.service-card,
.hospital-card,
.contact-card,
.note-panel,
.timeline__item,
.legal-card {
  min-width: 0;
}

.section-header {
  max-width: min(760px, 100%);
}

.section-title {
  max-width: min(18ch, 100%);
  font-size: 54px;
  line-height: 1.08;
  text-wrap: balance;
}

.hero h1,
.page-hero h1 {
  max-width: min(12ch, 100%);
  font-size: 82px;
  line-height: 1;
  text-wrap: balance;
}

.hero p,
.page-hero p,
.section-copy {
  overflow-wrap: break-word;
}

.feature-grid,
.service-grid,
.hospital-grid,
.contact-grid,
.note-grid,
.timeline {
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.feature-card,
.service-card,
.hospital-card,
.contact-card,
.note-panel,
.timeline__item,
.legal-card {
  justify-content: flex-start;
  overflow: hidden;
}

.feature-card h3,
.service-card h3,
.hospital-card h3,
.contact-card h3,
.timeline__item h3,
.note-panel h3,
.legal-card h3 {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.24;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.hospital-grid--featured .hospital-card,
.page-partners .hospital-grid--featured .hospital-card:nth-child(2) {
  transform: none !important;
}

.hospital-card__media,
.service-card__media {
  width: 100%;
}

.hospital-card p,
.service-card p,
.feature-card p,
.contact-card p,
.note-panel p,
.timeline__item p,
.legal-card p {
  overflow-wrap: break-word;
}

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

.footer-authority {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(19, 36, 57, 0.08);
}

.footer-authority img {
  width: 118px;
  max-width: 100%;
  height: auto;
  opacity: 0.9;
}

.section--authority {
  padding: 88px 0;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.58), rgba(244, 238, 228, 0.72));
}

.authority-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: 54px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(19, 36, 57, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 248, 242, 0.96)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.authority-copy {
  min-width: 0;
}

.authority-copy .section-title {
  max-width: 16ch;
  font-size: 46px;
  line-height: 1.08;
}

.authority-note {
  display: inline-flex;
  align-items: center;
  margin: 22px 0 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(184, 135, 96, 0.11);
  color: var(--accent-warm);
  font-size: 13px;
  font-weight: 800;
}

.authority-certificate {
  margin: 0;
  justify-self: end;
  width: min(100%, 520px);
  padding: 12px;
  border-radius: 20px;
  background: #fffdfa;
  border: 1px solid rgba(19, 36, 57, 0.1);
  box-shadow: 0 20px 48px rgba(17, 27, 43, 0.1);
}

.authority-certificate img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (min-width: 901px) {
  .page-partners .hospital-grid--featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .authority-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px;
  }

  .authority-certificate {
    justify-self: start;
    width: min(100%, 520px);
  }

  .hero h1,
  .page-hero h1 {
    font-size: 54px;
    line-height: 1.04;
  }

  .section-title {
    font-size: 42px;
    line-height: 1.12;
  }

  .authority-copy .section-title {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .site-header__inner,
  .footer__inner,
  .section__inner,
  .hero__inner,
  .page-hero__inner,
  .trust-band {
    width: min(100% - 32px, var(--max-width));
  }

  .site-header__inner {
    gap: 8px;
  }

  .brand img {
    width: 118px;
  }

  .nav-wrap {
    flex: 0 0 auto;
    gap: 8px;
  }

  .language-switcher {
    max-width: 94px;
  }

  .language-switcher__select {
    width: 100%;
    min-width: 0;
  }

  .hero__inner,
  .page-hero__inner {
    padding: 98px 0 78px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 1.04;
  }

  .hero p,
  .page-hero p {
    font-size: 15px;
    line-height: 1.72;
  }

  .section {
    padding: 78px 0;
  }

  .section--authority {
    padding: 64px 0;
  }

  .authority-panel {
    padding: 22px 22px 72px;
    border-radius: 24px;
  }

  .authority-copy .section-title {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.12;
  }

  .authority-note {
    margin-top: 16px;
    font-size: 12px;
  }

  .authority-certificate {
    justify-self: center;
    width: min(100%, 300px);
    padding: 8px;
    border-radius: 16px;
  }

  .authority-certificate img {
    border-radius: 10px;
  }

  .footer-authority img {
    width: 102px;
  }

  .section-title {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.14;
  }

  .feature-card h3,
  .service-card h3,
  .hospital-card h3,
  .contact-card h3,
  .timeline__item h3,
  .note-panel h3,
  .legal-card h3,
  .panel-card h3,
  .panel-card--contact h3 {
    font-size: 22px;
    line-height: 1.22;
  }

  .feature-card,
  .service-card,
  .hospital-card,
  .contact-card,
  .timeline__item,
  .note-panel,
  .legal-card,
  .contact-card--premium,
  .contact-surface--primary {
    padding: 24px;
  }
}

/* Home trust band refinement: separated, calmer, and more premium. */
.page-home .hero-trust {
  margin-top: -58px;
  padding-bottom: 18px;
}

.page-home .trust-band--home {
  width: min(100% - 64px, 1240px);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.page-home .trust-band--home .trust-item {
  position: relative;
  display: flex;
  min-height: 188px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 28px 30px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(250, 246, 239, 0.98)),
    var(--surface);
  border: 1px solid rgba(19, 36, 57, 0.08);
  box-shadow: 0 24px 54px rgba(17, 27, 43, 0.1);
}

.page-home .trust-band--home .trust-item::after {
  display: none !important;
}

.page-home .trust-band--home .trust-item::before {
  content: "";
  width: 34px;
  height: 2px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184, 135, 96, 0.9), rgba(95, 158, 176, 0.62));
}

.page-home .trust-band--home .trust-item strong {
  max-width: 12rem;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.22;
  font-weight: 800;
  color: var(--ink);
  text-wrap: balance;
}

.page-home .trust-band--home .trust-item span {
  max-width: 16rem;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.72;
}

@media (max-width: 1100px) {
  .page-home .trust-band--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 48px, var(--max-width));
  }

  .page-home .trust-band--home .trust-item {
    min-height: 168px;
  }
}

@media (max-width: 640px) {
  .page-home .hero-trust {
    margin-top: -34px;
    padding-bottom: 0;
  }

  .page-home .trust-band--home {
    width: min(100% - 32px, var(--max-width));
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .page-home .trust-band--home .trust-item {
    min-height: 0;
    padding: 24px;
    border-radius: 22px;
  }

  .page-home .trust-band--home .trust-item::before {
    margin-bottom: 14px;
  }

  .page-home .trust-band--home .trust-item strong {
    max-width: 100%;
    font-size: 19px;
  }

  .page-home .trust-band--home .trust-item span {
    max-width: 100%;
    font-size: 14px;
  }
}

/* Partner page: four featured institutions with balanced spacing. */
@media (min-width: 1181px) {
  .page-partners .hospital-grid--featured {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .page-partners .hospital-grid--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Partner network panel without hospital photography. */
.page-partners .visual-panel--hospital {
  isolation: isolate;
  background:
    linear-gradient(145deg, #102033 0%, #152a40 48%, #1d3a48 100%);
}

.page-partners .visual-panel--hospital::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.16;
}

.page-partners .visual-panel--hospital::after {
  border-color: rgba(255, 255, 255, 0.18);
}

.page-partners .visual-panel--hospital .visual-panel__flag {
  background: rgba(255, 253, 248, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.page-partners .visual-panel--hospital .panel-card--glass {
  max-width: 390px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(249, 244, 237, 0.98)),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(5, 13, 23, 0.28);
}

.page-partners .visual-panel--hospital .panel-card--glass h3,
.page-partners .visual-panel--hospital .panel-card--glass p {
  color: var(--ink);
}

.page-partners .visual-panel--hospital .panel-card--glass p {
  color: var(--ink-soft);
}

.page-partners .visual-panel--hospital .panel-card__eyebrow {
  color: var(--accent-warm);
}

@media (max-width: 640px) {
  .page-partners .visual-panel--hospital {
    min-height: 500px;
  }
}
