:root {
  --navy: #0c3a47;
  --navy-dark: #082730;
  --teal: #0e4a5b;
  --cyan: #168fa5;
  --cyan-light: #55d0df;
  --ink: #13262c;
  --slate: #53686f;
  --line: #dce7ea;
  --soft: #f4f8f9;
  --white: #fff;
  --wa: #188b45;
  --shadow: 0 18px 50px -22px rgb(8 39 48 / 35%);
  --radius: 18px;
  --focus: #f6b73c;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.admin-bar .site-header { top: 32px; }
img { max-width: 100%; height: auto; }
iframe { max-width: 100%; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .16em; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 {
  margin: 0 0 .65em;
  color: var(--navy);
  font-weight: 750;
  letter-spacing: -.015em;
  line-height: 1.16;
}
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1.25em; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  position: fixed !important;
  z-index: 100000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  color: var(--navy-dark);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.wrap { width: min(1180px, calc(100% - 44px)); margin-inline: auto; }
.center { text-align: center; }
.section { padding: 80px 0; }
.section.compact { padding: 58px 0; }
.soft { background: var(--soft); }
.section-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.section-heading h2 { font-size: clamp(1.8rem, 3vw, 2.35rem); }
.section-heading p { color: var(--slate); font-size: 1.06rem; }
.eyebrow, .tag-category {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.accent, .text-link { color: var(--cyan); }
.text-link { font-weight: 750; }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: .96rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { color: var(--white); background: var(--cyan); }
.btn-solid:hover { background: #0f7c90; }
.btn-wa { color: var(--white); background: var(--wa); }
.btn-wa:hover { background: #116d35; }
.btn-ghost { color: var(--white); border-color: rgb(255 255 255 / 56%); }
.btn-ghost:hover { background: rgb(255 255 255 / 12%); }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.topbar { color: #d4e9ed; background: var(--navy-dark); font-size: .86rem; }
.topbar .wrap { display: flex; justify-content: space-between; gap: 16px; padding-block: 8px; }
.topbar a { color: var(--white); font-weight: 750; }
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 95%);
  backdrop-filter: blur(12px);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 28px -24px rgb(8 39 48 / 55%); }
.nav { display: flex; min-height: 74px; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 265px; }
.custom-logo-link { display: inline-flex; flex: 0 0 auto; }
.custom-logo { width: auto; max-width: 72px; max-height: 52px; }
.brand-text { display: flex; flex-direction: column; color: var(--navy); font-weight: 850; line-height: 1.12; text-decoration: none; }
.brand-text small { margin-top: 5px; color: var(--cyan); font-size: .6rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.site-navigation { flex: 1; }
.menu-list { display: flex; align-items: center; justify-content: center; gap: 22px; padding: 0; margin: 0; list-style: none; }
.menu-list li { position: relative; }
.menu-list a { display: block; padding: 8px 0; color: var(--teal); font-size: .91rem; font-weight: 700; text-decoration: none; }
.menu-list a:hover { color: var(--cyan); }
.menu-list .sub-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 4px);
  left: 50%;
  min-width: 250px;
  padding: 10px;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s ease;
}
.menu-list li:hover > .sub-menu, .menu-list li:focus-within > .sub-menu { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
.menu-list .sub-menu a { padding: 8px 12px; border-radius: 8px; }
.menu-list .sub-menu a:hover { background: var(--soft); }
.menu-toggle { display: none; padding: 9px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span[aria-hidden] { display: block; width: 27px; height: 3px; margin: 5px 0; border-radius: 2px; background: var(--navy); }
.header-cta { flex: 0 0 auto; font-size: .88rem; }

.hero { overflow: hidden; color: var(--white); background: radial-gradient(120% 120% at 80% 0%, #11586b 0%, var(--navy) 56%, var(--navy-dark) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center; padding-block: 72px 80px; }
.hero .eyebrow { color: var(--cyan-light); }
.hero h1 { max-width: 720px; color: var(--white); font-size: clamp(2.2rem, 5vw, 3.45rem); }
.professional-signature { display: grid; gap: 2px; margin: 18px 0; color: var(--white); font-size: .94rem; }
.professional-signature strong { color: inherit; font: inherit; font-weight: 700; }
.hero .lead { max-width: 650px; color: #d4e8ec; font-size: 1.12rem; }
.hero-badges { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 30px; }
.hero-badges div { display: flex; flex-direction: column; }
.hero-badges strong { color: var(--white); font-size: 1.2rem; }
.hero-badges span { color: #a9cad2; font-size: .79rem; }
.hero-media, .about-media { display: flex; justify-content: center; }
.portrait, .media-placeholder {
  width: min(100%, 390px);
  aspect-ratio: 4 / 5;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 24px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center top;
}
.media-placeholder {
  display: grid;
  place-items: center;
  padding: 30px;
  color: #b9d7dd;
  background: linear-gradient(150deg, var(--teal), var(--navy-dark));
  text-align: center;
}
.trust-strip { border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { display: flex; min-height: 112px; flex-direction: column; justify-content: center; padding: 22px; border-right: 1px solid var(--line); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong { color: var(--navy); }
.trust-grid span { color: var(--slate); font-size: .84rem; }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.about-grid h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); }
.check-list { padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.check-list li::before { position: absolute; top: .08em; left: 0; color: var(--cyan); content: "✓"; font-weight: 850; }
.check-list.light { color: #d8eaee; }
.check-list.light li::before { color: var(--cyan-light); }

.cards-grid, .treatments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.regions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.content-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.content-card:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-5px); }
.card-link { display: flex; height: 100%; flex-direction: column; padding: 24px; text-decoration: none; }
.card-link > img { width: calc(100% + 48px); max-width: none; height: 190px; margin: -24px -24px 20px; object-fit: cover; }
.card-icon { display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 16px; color: var(--cyan); border-radius: 12px; background: #e6f5f7; font-size: 1.35rem; font-weight: 850; }
.content-card h3 { font-size: 1.08rem; }
.content-card p { flex: 1; color: var(--slate); font-size: .9rem; }
.content-card .more { color: var(--cyan); font-size: .86rem; font-weight: 750; }
.regions-grid .content-card { border-top: 4px solid var(--cyan); }

.tabs { margin-top: 20px; }
.tab-list { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.tab-list button { padding: 11px 20px; color: var(--teal); border: 2px solid var(--line); border-radius: 999px; background: var(--white); cursor: pointer; font-weight: 750; }
.tab-list button[aria-selected="true"] { color: var(--white); border-color: var(--teal); background: var(--teal); }
.tab-panel[hidden] { display: none; }

.feature-dark { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center; padding: 46px; color: var(--white); border-radius: 26px; background: linear-gradient(135deg, var(--navy), var(--navy-dark)); box-shadow: var(--shadow); }
.feature-dark h2 { color: var(--white); font-size: 2rem; }
.feature-dark p { color: #c9e0e5; }
.feature-dark .eyebrow { color: var(--cyan-light); }
.clinic-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: stretch; }
.info-card, .contact-panel { display: flex; flex-direction: column; padding: 18px 20px; margin-bottom: 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.info-card strong { color: var(--navy); }
.info-card span, .info-card a { color: var(--slate); }
.map-frame { min-height: 390px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.map-frame iframe { width: 100%; height: 100%; min-height: 390px; border: 0; }

.subhero { padding: 54px 0 48px; color: var(--white); background: radial-gradient(120% 120% at 85% 0%, #11586b, var(--navy) 60%, var(--navy-dark)); }
.subhero h1 { max-width: 860px; color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.subhero p { max-width: 820px; color: #cde3e8; font-size: 1.08rem; }
.subhero .tag-category { color: var(--cyan-light); }
.breadcrumbs { display: flex; gap: 8px; align-items: center; margin-bottom: 18px; color: #bcd6dc; font-size: .86rem; }
.breadcrumbs a { color: var(--white); }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 48px; padding-block: 58px 72px; }
.article-body, .prose { min-width: 0; }
.article-body h2, .prose h2 { margin-top: 1.8em; font-size: 1.55rem; }
.article-body h2:first-child, .prose h2:first-child { margin-top: 0; }
.article-body h3, .prose h3 { margin-top: 1.5em; font-size: 1.17rem; }
.article-body p, .article-body li, .prose p, .prose li { color: #34474d; }
.article-body li, .prose li { margin-bottom: 7px; }
.featured-media { margin: 0 0 30px; }
.featured-media img { width: 100%; border-radius: var(--radius); }
.article-aside { align-self: start; position: sticky; top: 100px; display: grid; gap: 18px; }
.aside-box { padding: 23px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 10px 30px -26px rgb(8 39 48 / 45%); }
.aside-box h2 { font-size: 1.06rem; }
.aside-box p { font-size: .9rem; }
.aside-box.dark { color: var(--white); border: 0; background: linear-gradient(150deg, var(--teal), var(--navy-dark)); }
.aside-box.dark h2 { color: var(--white); }
.aside-box.dark p { color: #c6dce1; }
.aside-box .btn { width: 100%; }
.related-list { padding: 0; margin: 0; list-style: none; }
.related-list li + li { border-top: 1px solid var(--line); }
.related-list a { display: block; padding: 9px 0; color: var(--teal); font-size: .92rem; font-weight: 650; text-decoration: none; }
.medical-notice, .privacy-note { padding: 18px 20px; margin-top: 30px; border-left: 4px solid var(--cyan); border-radius: 0 12px 12px 0; background: var(--soft); color: #34474d; font-size: .92rem; }
.steps-list { display: grid; gap: 14px; margin: 20px 0 30px; }
.step-item { display: flex; gap: 16px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--soft); }
.step-number { display: grid; width: 38px; height: 38px; flex: 0 0 38px; place-items: center; color: var(--white); border-radius: 50%; background: var(--teal); font-weight: 850; }
.step-item h3 { margin: 0 0 4px; font-size: 1rem; }
.step-item p { margin: 0; font-size: .92rem; }
.page-about { align-items: start; }
.contact-panel { align-self: start; padding: 28px; box-shadow: var(--shadow); }

.final-cta { padding: 78px 0; color: var(--white); background: radial-gradient(120% 140% at 20% 0%, var(--cyan) 0%, var(--teal) 60%, var(--navy) 100%); }
.final-cta .eyebrow { color: #c9f3f8; }
.final-cta h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.35rem); }
.final-cta p { max-width: 640px; margin-inline: auto; color: #d6e9ed; }
.final-cta .cta-row { justify-content: center; margin-top: 24px; }

.site-footer { padding: 54px 0 24px; color: #a7c5cc; background: var(--navy-dark); font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 42px; padding-bottom: 32px; border-bottom: 1px solid rgb(255 255 255 / 9%); }
.footer-grid h2 { color: var(--white); font-size: .96rem; }
.footer-grid a { display: block; padding: 4px 0; color: #b6d0d6; text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-logo, .site-footer .professional-id { margin: 0 0 4px; color: var(--white); font-size: .92rem; font-weight: 700; line-height: 1.5; }
.social-links { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; }
.social-links a { color: var(--white); font-weight: 700; }
.disclaimer { max-width: 820px; margin: 28px auto 0; color: #82a7b0; text-align: center; font-size: .8rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 20px; color: #82a7b0; font-size: .8rem; }
.wa-float { position: fixed; z-index: 110; right: 22px; bottom: 22px; display: grid; width: 58px; height: 58px; place-items: center; color: var(--white); border-radius: 50%; background: var(--wa); box-shadow: 0 14px 30px -10px rgb(24 139 69 / 75%); }
.wa-float svg { width: 31px; height: 31px; }
.notice-inline { padding: 18px; border: 1px solid #e3bd56; border-radius: 12px; background: #fff9e9; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.navigation.pagination { margin-top: 36px; }
.nav-links { display: flex; gap: 8px; justify-content: center; }
.page-numbers { display: grid; min-width: 42px; min-height: 42px; place-items: center; padding: 6px; border: 1px solid var(--line); border-radius: 8px; text-decoration: none; }
.page-numbers.current { color: var(--white); border-color: var(--teal); background: var(--teal); }

@media (max-width: 1080px) {
  .header-cta { display: none; }
  .menu-list { gap: 16px; }
  .brand { min-width: 240px; }
}

@media (max-width: 900px) {
  body.admin-bar .site-header { top: 46px; }
  .topbar .wrap { justify-content: center; text-align: center; flex-wrap: wrap; }
  .nav { justify-content: space-between; }
  .menu-toggle { display: block; margin-left: auto; }
  .site-navigation { position: fixed; z-index: 90; top: var(--menu-top, 74px); right: 0; left: 0; max-height: calc(100vh - var(--menu-top, 74px)); overflow: auto; visibility: hidden; opacity: 0; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); transform: translateY(-14px); transition: opacity .2s ease, transform .2s ease; }
  .site-navigation.is-open { visibility: visible; opacity: 1; transform: none; }
  .menu-list { display: block; width: min(100% - 36px, 820px); padding: 12px 0 20px; margin-inline: auto; }
  .menu-list a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .menu-list .sub-menu { position: static; min-width: 0; padding: 0 0 6px 16px; visibility: visible; opacity: 1; border: 0; box-shadow: none; transform: none; }
  .hero-grid, .about-grid, .clinic-grid, .contact-grid, .feature-dark, .article-layout { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media .portrait, .hero-media .media-placeholder { width: min(100%, 310px); }
  .trust-grid, .regions-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .trust-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cards-grid, .treatments-grid { grid-template-columns: 1fr 1fr; }
  .article-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .wrap { width: min(100% - 32px, 1180px); }
  .section { padding: 58px 0; }
  .brand-text span { font-size: .9rem; }
  .custom-logo { max-width: 58px; max-height: 44px; }
  .hero-grid { gap: 32px; padding-block: 44px 58px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-badges { gap: 18px; }
  .trust-grid, .regions-grid, .cards-grid, .treatments-grid { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid div:last-child { border-bottom: 0; }
  .feature-dark { padding: 30px 24px; }
  .article-layout { padding-block: 42px 58px; }
  .tab-list { align-items: stretch; flex-direction: column; }
  .tab-list button { width: 100%; }
  .wa-float { right: 15px; bottom: 15px; width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

