:root {
  --bg: #f3f8ff;
  --surface: #ffffff;
  --surface-strong: #edf4ff;
  --border: rgba(16, 76, 146, 0.12);
  --border-strong: rgba(16, 76, 146, 0.2);
  --text: #183356;
  --muted: #6781a4;
  --primary: #0a5bb5;
  --primary-deep: #0b4384;
  --secondary: #0d9aa0;
  --gold: #c7a34a;
  --success: #1ca05d;
  --shadow-soft: 0 18px 46px rgba(13, 74, 141, 0.12);
  --shadow-card: 0 12px 32px rgba(16, 76, 146, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(13, 154, 160, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(10, 91, 181, 0.12), transparent 28%),
    linear-gradient(180deg, #f5f9ff 0%, #eef5ff 32%, #f8fbff 100%);
}

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

button,
input,
textarea {
  font: inherit;
}

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.page-shell {
  padding-bottom: 36px;
}

.utility-bar {
  background: linear-gradient(90deg, var(--primary-deep), var(--primary));
  color: #f5fbff;
}

.utility-bar__inner,
.site-header__inner,
.hero__grid,
.split-grid,
.advantages-grid,
.contact-layout,
.team-layout {
  display: flex;
}

.utility-bar__inner {
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 46px;
}

.utility-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  opacity: 0.96;
}

.utility-item img {
  width: 16px;
  height: 16px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.language-switcher__button {
  min-width: 38px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: 0.2s ease;
}

.language-switcher__button.is-active,
.language-switcher__button:hover {
  background: #ffffff;
  color: var(--primary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(16, 76, 146, 0.08);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 86px;
}

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

.brand__logo {
  width: 74px;
  height: auto;
  flex-shrink: 0;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.05;
}

.brand__copy strong {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: #0f7d89;
}

.brand__copy span {
  max-width: 210px;
  font-size: 13px;
  color: #4f6685;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: #244d82;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: transform 0.2s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta {
  min-height: 46px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--primary), #0a72cc);
  color: #fff;
  box-shadow: 0 12px 28px rgba(10, 91, 181, 0.24);
  font-size: 14px;
  white-space: nowrap;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(16, 76, 146, 0.14);
  border-radius: 14px;
  background: #fff;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--primary);
  border-radius: 999px;
}

.hero {
  padding: 34px 0 26px;
}

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

.hero__copy,
.hero__visual-shell {
  min-width: 0;
}

.hero__copy {
  flex: 0 0 42%;
  padding: 28px 0 18px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
}

.hero h1,
.section-heading h2,
.content-card h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.05;
  color: #143865;
}

.hero__lead,
.hero__text {
  margin: 18px 0 0;
  max-width: 520px;
  color: #456586;
  font-size: 18px;
  line-height: 1.7;
}

.hero__text {
  font-size: 16px;
  color: #627d9a;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  font-size: 15px;
}

.button--primary {
  background: linear-gradient(135deg, var(--primary), #0670d5);
  color: #fff;
  box-shadow: 0 14px 28px rgba(10, 91, 181, 0.24);
}

.button--secondary {
  background: #fff;
  color: #1f4e84;
  border: 1px solid rgba(16, 76, 146, 0.14);
  box-shadow: var(--shadow-card);
}

.button--compact {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.button--full {
  width: 100%;
}

.hero__visual-shell {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 18px;
}

.hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 34px;
  background:
    linear-gradient(108deg, rgba(245, 250, 255, 0.98) 0%, rgba(225, 238, 255, 0.95) 42%, rgba(205, 227, 255, 0.9) 100%),
    linear-gradient(180deg, #edf6ff, #f8fbff);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16, 76, 146, 0.1);
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0 35%, rgba(255, 255, 255, 0.12) 58%, rgba(255, 255, 255, 0.45) 100%),
    radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.7), transparent 30%),
    linear-gradient(180deg, rgba(10, 91, 181, 0.04), transparent 24%);
}

.hero__glass {
  position: absolute;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(234, 244, 255, 0.84));
  box-shadow: 0 18px 44px rgba(18, 71, 132, 0.12);
}

.hero__glass--left {
  inset: 42px auto 42px 42px;
  width: 38%;
}

.hero__glass--right {
  inset: 28px 26px 42px auto;
  width: 34%;
}

.hero__desk-card {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(410px, calc(100% - 68px));
  padding: 24px;
  border-radius: 26px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 50px rgba(16, 76, 146, 0.18);
  z-index: 1;
}

.hero__desk-card img {
  width: 94px;
  flex-shrink: 0;
}

.hero__desk-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
  line-height: 1.15;
  color: #124b7b;
}

.hero__desk-card span {
  color: #56738f;
  font-size: 14px;
  line-height: 1.5;
}

.hero-benefits {
  display: grid;
  gap: 14px;
}

.benefit-card,
.metric-card,
.service-card,
.doctor-card,
.contact-fact,
.review-card,
.content-card,
.contact-form,
.section-banner {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.benefit-card {
  display: flex;
  gap: 14px;
  padding: 18px 16px;
  border-radius: 18px;
}

.benefit-card__icon,
.service-card__icon,
.reason-item__icon,
.doctor-card__badge,
.contact-fact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(10, 91, 181, 0.12), rgba(13, 154, 160, 0.18));
  flex-shrink: 0;
}

.benefit-card__icon img,
.service-card__icon img,
.reason-item__icon img,
.contact-fact__icon img {
  width: 22px;
  height: 22px;
}

.benefit-card strong,
.service-card h3,
.content-card h2,
.review-card strong,
.doctor-card strong,
.contact-form h3 {
  color: #143d6b;
}

.benefit-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}

.benefit-card span {
  color: #637e9b;
  font-size: 14px;
  line-height: 1.5;
}

.metrics {
  margin-top: -10px;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(90deg, #0c4f94, #0b65b6 48%, #0d979f 100%);
  box-shadow: 0 18px 42px rgba(12, 79, 148, 0.18);
}

.metric-card {
  min-height: 110px;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #fff;
}

.metric-card strong {
  display: block;
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
}

.metric-card span {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.86);
}

.section {
  padding: 44px 0 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-heading h2,
.content-card h2 {
  max-width: 760px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.14;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 262px;
  border-radius: 20px;
  overflow: hidden;
}

.service-card__media {
  position: relative;
  min-height: 108px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(10, 91, 181, 0.88), rgba(13, 154, 160, 0.68)),
    linear-gradient(180deg, #dbeeff, #b8d8ff);
}

.service-card__media::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -28px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.service-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
}

.service-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: #64809c;
  font-size: 14px;
  line-height: 1.55;
}

.section-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: 18px;
}

.section-banner strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.section-banner span {
  color: #667f99;
  font-size: 14px;
}

.split-grid,
.advantages-grid,
.contact-layout {
  gap: 20px;
}

.split-grid > *,
.advantages-grid > * {
  flex: 1 1 0;
}

.content-card,
.contact-form,
.review-card {
  border-radius: 24px;
  padding: 28px;
}

.content-card p,
.contact-fact p,
.review-card p,
.doctor-card p,
.form-note {
  margin: 0;
  color: #64809c;
  font-size: 15px;
  line-height: 1.65;
}

.content-card--mission,
.content-card--accent {
  background: linear-gradient(180deg, #f8fbff, #edf5ff);
}

.mission-mark {
  display: inline-flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(13, 154, 160, 0.16), rgba(199, 163, 74, 0.22));
  margin-bottom: 18px;
}

.mission-mark img {
  width: 32px;
  height: 32px;
}

.mission-line {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 76, 146, 0.1);
}

.mission-line span {
  display: block;
  margin-bottom: 4px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mission-line strong {
  font-size: 20px;
}

.reason-list,
.partner-points,
.doctor-grid,
.contact-facts {
  display: grid;
  gap: 14px;
}

.reason-item,
.partner-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid rgba(16, 76, 146, 0.09);
}

.reason-item:first-child,
.partner-point:first-child {
  padding-top: 4px;
  border-top: 0;
}

.reason-item strong,
.partner-point strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}

.reason-item span,
.partner-point span {
  color: #63819e;
  font-size: 14px;
  line-height: 1.55;
}

.section-heading--team {
  align-items: center;
}

.section-link {
  color: var(--primary);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.team-layout {
  gap: 20px;
  align-items: stretch;
}

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

.doctor-card {
  border-radius: 20px;
  padding: 18px;
}

.doctor-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.doctor-card__badge {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}

.doctor-card__meta span {
  display: block;
  margin-top: 5px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.doctor-card strong {
  font-size: 18px;
}

.doctor-card p {
  margin-top: 12px;
}

.review-card {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, #ffffff, #f1f7ff);
}

.review-card__quote {
  font-size: 16px;
}

.review-card__author {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 76, 146, 0.1);
}

.review-card__author strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}

.review-card__author span,
.review-card__rating {
  color: #69829d;
  font-size: 14px;
}

.review-card__rating {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(199, 163, 74, 0.12);
  color: #8b6c1f;
  font-weight: 800;
}

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

.contact-facts {
  flex: 1 1 48%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-fact {
  border-radius: 20px;
  padding: 20px;
}

.contact-fact strong {
  display: block;
  margin: 12px 0 6px;
  font-size: 18px;
}

.contact-fact p,
.contact-fact a {
  color: #68819d;
  font-size: 14px;
  line-height: 1.6;
}

.contact-form {
  flex: 1 1 42%;
}

.contact-form h3 {
  margin: 0 0 18px;
  font-size: 26px;
  font-family: "Montserrat", sans-serif;
}

.contact-form label {
  display: block;
  margin-bottom: 14px;
}

.contact-form span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #33547d;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 76, 146, 0.14);
  border-radius: 14px;
  background: #f7fbff;
  padding: 14px 16px;
  color: #173355;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(10, 91, 181, 0.32);
  box-shadow: 0 0 0 4px rgba(10, 91, 181, 0.08);
}

.form-note {
  margin-top: 14px;
}

body.menu-open .site-nav {
  display: flex;
}

@media (max-width: 1140px) {
  .hero__grid {
    flex-direction: column;
  }

  .hero__visual-shell {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

  .team-layout,
  .split-grid,
  .advantages-grid,
  .contact-layout {
    flex-direction: column;
  }

  .review-card {
    flex-basis: auto;
  }
}

@media (max-width: 860px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 76, 146, 0.12);
    box-shadow: 0 18px 38px rgba(16, 76, 146, 0.14);
  }

  .site-nav a {
    padding: 12px 6px;
  }

  .site-nav a::after {
    display: none;
  }

  .utility-bar__inner,
  .section-banner,
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .utility-list {
    gap: 12px;
  }

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

  .hero__desk-card {
    width: calc(100% - 48px);
    padding: 20px;
  }

  .hero__desk-card strong {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

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

  .brand__logo {
    width: 60px;
  }

  .brand__copy strong {
    font-size: 18px;
  }

  .brand__copy span {
    font-size: 12px;
  }

  .hero {
    padding-top: 20px;
  }

  .hero__copy {
    padding-top: 8px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero__lead,
  .hero__text {
    font-size: 15px;
  }

  .hero__visual {
    min-height: 340px;
  }

  .hero__glass--left {
    left: 20px;
    bottom: 24px;
    width: 38%;
  }

  .hero__glass--right {
    top: 16px;
    right: 16px;
    bottom: 24px;
    width: 38%;
  }

  .hero__desk-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero__desk-card img {
    width: 78px;
  }

  .metrics-band,
  .services-grid,
  .doctor-grid,
  .contact-facts {
    grid-template-columns: 1fr;
  }

  .content-card,
  .contact-form,
  .review-card {
    padding: 22px 18px;
  }

  .section-heading h2,
  .content-card h2 {
    font-size: 28px;
  }

  .section-link {
    white-space: normal;
  }
}
