:root {
  --primary-blue: #06466b;
  --primary-green: #009b72;
  --dark-green: #00785c;
  --accent-red: #d91f2a;
  --light-bg: #f6fafb;
  --soft-green-bg: #eaf8f4;
  --soft-blue-bg: #eaf4fa;
  --heading-color: #17324d;
  --body-color: #4e5f6b;
  --muted-color: #6d7d87;
  --border-color: #dde9ed;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-color: var(--primary-green) var(--soft-blue-bg);
  scrollbar-width: thin;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--soft-blue-bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-blue), var(--primary-green));
  border-radius: 999px;
  border: 2px solid var(--soft-blue-bg);
}
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--body-color);
  background: var(--white);
  padding-top: 0;
  overflow-x: hidden;
}
body.mobile-bar-space { padding-bottom: 0; }
body.mobile-menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: var(--primary-blue); text-decoration: none; }
a:hover { color: var(--primary-green); }
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--heading-color);
  font-weight: 700;
  letter-spacing: 0;
}

.container { max-width: 1180px; }
.section { padding: 84px 0; }
.section-sm { padding: 58px 0; }
.section-muted { background: var(--light-bg); }
.section-blue { background: linear-gradient(135deg, var(--soft-blue-bg), #fff); }
.eyebrow {
  color: var(--primary-green);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.lead { color: var(--body-color); line-height: 1.8; }
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 700;
  border-width: 0;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -75%;
  width: 55%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  transition: left .55s ease;
  z-index: 0;
  pointer-events: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(6,70,107,.16);
}
.btn:hover::before { left: 120%; }
.btn-success {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  box-shadow: 0 14px 28px rgba(0,155,114,.18);
}
.btn-success:hover { background: linear-gradient(135deg, var(--dark-green), var(--primary-green)); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), #043650);
  box-shadow: 0 14px 28px rgba(6,70,107,.16);
}
.btn-primary:hover { background: linear-gradient(135deg, #043650, var(--primary-blue)); }
.btn-outline-primary {
  border: 1px solid var(--primary-blue);
  color: var(--primary-blue);
  background: rgba(255,255,255,.92);
}
.btn-outline-primary:hover { background: var(--primary-blue); color: #fff; }

.site-header {
  padding: 10px 0;
  background: transparent;
  border-bottom: 0;
  transition: padding .2s ease, background .2s ease, box-shadow .2s ease;
}
.site-header .brand {
  padding: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}
.site-header.is-scrolled {
  padding: 8px 0;
  background: rgba(246,250,251,.52);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(6,70,107,.1);
}
.navbar { min-height: 64px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--heading-color);
}
.brand:hover { color: var(--heading-color); }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 800;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  padding: 0;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}
.brand strong { display: block; font-size: 1.05rem; line-height: 1.05; color: currentColor; }
.brand small { display: block; font-size: .68rem; color: var(--muted-color); line-height: 1.1; }
.main-nav {
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(6,70,107,.88), rgba(0,155,114,.78));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 16px 40px rgba(6,70,107,.2);
  backdrop-filter: blur(14px);
}
.nav-link {
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 8px 13px !important;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,.18);
  transform: translateY(-1px);
}
.navbar-toggler {
  border: 0;
  padding: 8px;
  color: #fff;
  filter: none;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.menu-line {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-menu-toggle.is-open .menu-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.is-open .menu-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.is-open .menu-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.navbar-toggler:focus { box-shadow: none; }
.mobile-menu-panel {
  position: fixed;
  top: 96px;
  left: 14px;
  right: 14px;
  z-index: 1020;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px) scale(.98);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.mobile-menu-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.mobile-menu-panel-inner {
  min-height: min(560px, calc(100vh - 122px));
  border-radius: 8px;
  padding: 62px 24px 26px;
  background: linear-gradient(145deg, rgba(6,70,107,.96), rgba(0,155,114,.92));
  box-shadow: 0 30px 90px rgba(8,22,39,.28);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
  position: relative;
}
.mobile-panel-nav {
  align-items: center;
  gap: 10px;
  text-align: center;
}
.mobile-panel-nav .nav-link {
  min-width: 220px;
  color: rgba(255,255,255,.86);
  background: transparent;
  border: 1px solid transparent;
}
.mobile-panel-nav .nav-link:hover,
.mobile-panel-nav .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.28);
}
.mobile-panel-nav .nav-link.active {
  background: var(--primary-green);
  box-shadow: 0 14px 30px rgba(0,155,114,.22);
}
.mobile-panel-cta {
  display: flex;
  justify-content: center;
  width: min(240px, 100%);
  margin: 26px auto 0;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--soft-blue-bg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246,250,251,.96) 0%, rgba(246,250,251,.89) 43%, rgba(246,250,251,.18) 74%);
  z-index: 1;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 150px 0 170px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero p { font-size: 1.08rem; max-width: 650px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

.page-hero {
  background: linear-gradient(135deg, var(--soft-blue-bg), var(--soft-green-bg));
  padding: 136px 0 58px;
  border-bottom: 1px solid var(--border-color);
}
.page-hero h1 { max-width: 820px; font-size: clamp(2rem, 4vw, 3.4rem); }
.page-hero p { max-width: 780px; font-size: 1.06rem; }
.breadcrumb-wrap {
  font-size: .94rem;
  color: var(--muted-color);
  margin-bottom: 16px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-card, .service-card, .treatment-card, .contact-card, .step-card, .form-panel {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(6,70,107,.07);
}
.info-card, .service-card, .treatment-card, .contact-card, .step-card { padding: 24px; }
.info-card > i, .service-card > i, .contact-card > i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 16px;
  color: var(--primary-green);
  background: var(--soft-green-bg);
  font-size: 1.25rem;
}
.service-card h3, .treatment-card h3, .info-card h3, .contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.service-card p, .info-card p, .contact-card p { margin: 0; line-height: 1.7; }
.treatment-card {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.treatment-card i { color: var(--primary-blue); }
.treatment-card h3 { margin: 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}
.visual-panel {
  min-height: 420px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: #fff;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 20px 50px rgba(6,70,107,.16);
}
.visual-panel h3, .visual-panel p { color: #fff; }

.step-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}
.step-card { position: relative; min-height: 150px; }
.step-number {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}
.step-card h3 { font-size: .98rem; margin: 0; }

.cta-band {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-green));
  color: #fff;
  border-radius: 8px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { margin: 0; opacity: .9; }

.accordion-item {
  border: 1px solid var(--border-color) !important;
  border-radius: 8px !important;
  overflow: hidden;
  margin-bottom: 12px;
}
.accordion-button { font-weight: 700; color: var(--heading-color); }
.accordion-button:not(.collapsed) {
  background: var(--soft-green-bg);
  color: var(--primary-blue);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; }

.form-panel { padding: 28px; margin-bottom: 24px; }
.form-panel h2 { font-size: 1.35rem; margin-bottom: 20px; }
.form-label { font-weight: 700; color: var(--heading-color); }
.form-control, .form-select {
  border-color: var(--border-color);
  border-radius: 8px;
  min-height: 48px;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 .2rem rgba(0,155,114,.14);
}
.form-check-input {
  border-color: rgba(0,155,114,.42);
}
.form-check-input:checked {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}
.form-check-input:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 .2rem rgba(0,155,114,.16);
}
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.form-message { display: none; border-radius: 8px; padding: 14px 16px; margin-bottom: 18px; }
.form-message.is-success { display: block; color: #075b43; background: var(--soft-green-bg); }
.form-message.is-error { display: block; color: #9a1820; background: #fdecef; }
.invalid-feedback { font-weight: 600; }

.disclaimer-box {
  background: #fff8e6;
  border: 1px solid #f1ddb2;
  border-radius: 8px;
  color: #69511a;
  padding: 18px;
  line-height: 1.7;
}
.site-footer {
  background: #082f47;
  color: rgba(255,255,255,.78);
  padding: 50px 0 10px;
}
.site-footer h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.site-footer a {
  display: block;
  color: rgba(255,255,255,.78);
  margin-bottom: 10px;
  transition: color .2s ease, transform .2s ease;
}
.site-footer a:hover { color: #fff; }
.site-footer .footer-grid > div:nth-child(2) > a {
  position: relative;
  padding-left: 0;
}
.site-footer .footer-grid > div:nth-child(2) > a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  opacity: 0;
  margin-right: 0;
  color: var(--primary-green);
  transition: opacity .2s ease, margin-right .2s ease;
}
.site-footer .footer-grid > div:nth-child(2) > a:hover {
  transform: translateX(6px);
}
.site-footer .footer-grid > div:nth-child(2) > a:hover::before {
  opacity: 1;
  margin-right: 8px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1fr;
  gap: 34px;
}
.footer-brand {
  display: inline-flex !important;
  align-items: center;
  color: #fff;
  margin-bottom: 18px;
  flex-wrap: nowrap;
  padding: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}
.footer-brand .brand-mark {
  width: 58px;
  height: 58px;
}
.footer-brand small { display: block; color: rgba(255,255,255,.68); }
.footer-brand strong {
  font-size: 1.28rem;
  white-space: nowrap;
}
.footer-contact span { display: block; margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 10px 0 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(.62rem, 1.45vw, .82rem);
}
.footer-bottom .copyright-line {
  white-space: nowrap;
}
.developer-note {
  display: inline;
}
.site-footer .developer-link {
  display: inline;
  margin: 0;
  color: #fff;
  font-weight: 800;
}
.site-footer .developer-link:hover {
  color: var(--primary-green);
  transform: none;
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 26px;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}
.float-btn, .back-to-top {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 0;
  box-shadow: 0 12px 26px rgba(6,70,107,.18);
}
.float-btn:hover { color: #fff; transform: translateY(-2px); }
.float-btn.whatsapp { background: #25d366; }
.float-btn.call, .back-to-top { background: var(--primary-blue); }
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 138px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 1000;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.mobile-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-top: 1px solid var(--border-color);
  z-index: 1000;
  box-shadow: 0 -10px 30px rgba(6,70,107,.12);
}
.mobile-bottom-bar a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  color: var(--heading-color);
  font-size: .78rem;
  font-weight: 800;
}
.mobile-bottom-bar i { color: var(--primary-green); font-size: 1.15rem; }

.reveal-card {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease, box-shadow .25s ease, border-color .25s ease;
}
.section-reveal {
  opacity: 1;
  transform: none;
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-group .reveal-card:nth-child(2) { transition-delay: .06s; }
.reveal-group .reveal-card:nth-child(3) { transition-delay: .12s; }
.reveal-group .reveal-card:nth-child(4) { transition-delay: .18s; }
.reveal-group .reveal-card:nth-child(5) { transition-delay: .24s; }
.reveal-group .reveal-card:nth-child(6) { transition-delay: .3s; }

.animated-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--primary-green);
  background: var(--soft-green-bg);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.animated-icon::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.72), transparent);
  transform: translateX(-120%) rotate(18deg);
  transition: transform .65s ease;
}
.animated-icon i {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
}
.interactive-card:hover .animated-icon::after,
.media-card:hover .animated-icon::after,
.media-service-card:hover .animated-icon::after,
.video-service-card:hover .animated-icon::after,
.process-card:hover .animated-icon::after,
.story-card:hover .animated-icon::after {
  transform: translateX(120%) rotate(18deg);
}

.placeholder-media,
.video-placeholder {
  min-height: 210px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(6,70,107,.86), rgba(0,155,114,.74)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.14) 0 2px, transparent 2px 16px);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
}
.placeholder-media::before,
.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.26), transparent 26%),
    linear-gradient(180deg, transparent 36%, rgba(6,70,107,.72));
  z-index: -1;
}
.placeholder-media span,
.video-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .82rem;
  font-weight: 800;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}
.placeholder-media span::before,
.video-label::before {
  content: "\f03e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.placeholder-media.tall { min-height: 460px; }

.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.media-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(6,70,107,.07);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.media-card:hover,
.interactive-card:hover,
.media-service-card:hover,
.video-service-card:hover,
.team-card:hover,
.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,155,114,.34);
  box-shadow: 0 22px 48px rgba(6,70,107,.13);
}
.media-card.compact .placeholder-media { min-height: 175px; }
.media-card-body { padding: 22px; }
.media-card h3 { font-size: 1rem; margin-bottom: 8px; }
.media-card p {
  margin: 0;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-panel {
  position: relative;
  min-height: 460px;
}
.story-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 24px 48px rgba(6,70,107,.14);
  backdrop-filter: blur(14px);
}
.story-card p { margin: 0; }

.media-service-card {
  padding: 0;
  overflow: hidden;
  height: 100%;
}
.media-service-card .placeholder-media {
  border-radius: 0;
  min-height: 185px;
}
.service-card-content { padding: 24px; }
.card-kicker {
  display: block;
  color: var(--primary-green);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.media-service-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--primary-blue);
  font-weight: 800;
}
.text-link i {
  transition: transform .2s ease;
}
.text-link:hover i {
  transform: translateX(4px);
}
.slick-prev,
.slick-next {
  width: 42px;
  height: 42px;
  z-index: 2;
  border-radius: 50%;
  background: transparent !important;
  border: 1px solid rgba(6,70,107,.28);
  box-shadow: none;
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.slick-prev:hover,
.slick-next:hover {
  background: var(--primary-blue) !important;
  border-color: var(--primary-blue);
  box-shadow: 0 14px 30px rgba(6,70,107,.16);
}
.slick-prev { left: -4px; }
.slick-next { right: -4px; }
.slick-prev:before,
.slick-next:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-blue);
  font-size: 16px;
  opacity: 1;
}
.slick-prev:hover:before,
.slick-next:hover:before {
  color: #fff;
}
.slick-prev:before { content: "\f053"; }
.slick-next:before { content: "\f054"; }
.slick-dots li button:before { color: var(--primary-green); }

.journey-board {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 18px 42px rgba(6,70,107,.08);
}
.journey-rail {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  position: relative;
}
.journey-step {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--light-bg);
  color: var(--heading-color);
  padding: 16px 10px;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  font-weight: 800;
  line-height: 1.25;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.journey-step:hover,
.journey-step.is-active {
  background: var(--soft-green-bg);
  border-color: rgba(0,155,114,.45);
  transform: translateY(-3px);
}
.journey-detail {
  margin-top: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-green));
  color: #fff;
  padding: 30px;
}
.journey-panel { display: none; max-width: 720px; }
.journey-panel.is-active { display: block; animation: panelIn .28s ease; }
.journey-panel h3,
.journey-panel p { color: #fff; }
.journey-panel p {
  margin: 0;
  line-height: 1.75;
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.video-service-card,
.process-card,
.team-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(6,70,107,.07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.video-placeholder {
  min-height: 260px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
}
.play-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  background: #fff;
  box-shadow: 0 16px 34px rgba(6,70,107,.18);
}
.video-service-card:hover .play-badge {
  animation: pulsePlay 1.1s ease infinite;
}
@keyframes pulsePlay {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.video-service-content { padding: 26px; }
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
.service-card-top .animated-icon { margin-bottom: 0; }
.video-service-card p { margin-bottom: 0; line-height: 1.72; }

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.process-card {
  padding: 24px;
  position: relative;
}
.process-index {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(6,70,107,.08);
}
.process-card strong {
  display: block;
  color: var(--primary-blue);
  margin-top: 14px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.team-card { position: relative; }
.team-photo {
  min-height: auto;
  aspect-ratio: 4 / 5;
  border-radius: 0;
}
.team-content {
  padding: 24px;
  background: #fff;
}
.team-content h3 {
  font-size: 1.12rem;
  margin-bottom: 4px;
}
.team-content span {
  display: block;
  color: var(--primary-green);
  font-weight: 800;
  margin-bottom: 12px;
}
.team-content p { margin: 0; line-height: 1.7; }

.footer-grid {
  grid-template-columns: 1.4fr .85fr 1.15fr;
}
.footer-newsletter p { margin-bottom: 16px; }
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.newsletter-form .form-control {
  min-height: 46px;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.58); }
.newsletter-form .btn {
  min-width: 50px;
  padding-left: 14px;
  padding-right: 14px;
}
.newsletter-message {
  min-height: 20px;
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  margin-bottom: 14px;
}
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.site-footer .social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .2s ease, background .2s ease;
}
.site-footer .social-links a:hover {
  transform: translateY(-3px);
  background: var(--primary-green);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer .legal-links a {
  display: inline-flex;
  margin: 0;
  font-size: .92rem;
}

.photo-slider,
.photo-service-slider,
.card-slider {
  --slider-gap: 15px;
  margin: 0;
}
.photo-slider .slick-list,
.photo-service-slider .slick-list,
.card-slider .slick-list {
  margin: 0 calc(var(--slider-gap) * -1);
  overflow: hidden;
}
.photo-slider .slider-slide,
.photo-service-slider .slider-slide,
.card-slider .slider-slide {
  padding: 0 var(--slider-gap) !important;
  height: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.photo-slider .slick-track,
.photo-service-slider .slick-track,
.card-slider .slick-track {
  display: flex;
}
.photo-slider .slider-slide > div,
.photo-service-slider .slider-slide > div,
.card-slider .slider-slide > div {
  height: 100%;
}
.photo-slider .slick-slide,
.photo-service-slider .slick-slide,
.card-slider .slick-slide {
  height: auto;
}
.photo-overlay-card,
.service-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 360px;
  background: var(--primary-blue);
  box-shadow: 0 18px 44px rgba(6,70,107,.12);
  height: 100%;
}
.photo-slider .slick-dots,
.photo-service-slider .slick-dots,
.card-slider .slick-dots {
  bottom: -36px;
}
.photo-overlay-card .placeholder-media,
.service-photo-card .placeholder-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border-radius: 0;
  transform: scale(1.01);
  transition: transform .45s ease;
}
.photo-overlay-card::after,
.service-photo-card::after,
.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,22,39,0) 34%, rgba(8,22,39,.9) 100%);
  pointer-events: none;
}
.photo-overlay-card:hover .placeholder-media,
.service-photo-card:hover .placeholder-media {
  transform: scale(1.07);
}
.photo-card-caption,
.service-photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 2;
  padding: 0 30px;
  text-align: center;
}
.photo-card-caption h3,
.photo-card-caption p,
.service-photo-caption h3 {
  color: #fff;
}
.photo-card-caption h3,
.service-photo-caption h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.photo-card-caption p {
  margin: 0;
  line-height: 1.65;
  color: rgba(255,255,255,.82);
}
.service-photo-card {
  aspect-ratio: 4 / 5;
  min-height: auto;
  border: 0;
  box-shadow: none;
}
.service-photo-caption h3 {
  margin: 0;
  font-size: 1rem;
}
.clean-poster {
  align-items: stretch;
  padding: 0;
}

.process-heading .lead {
  max-width: 720px;
}
.simple-process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  position: relative;
}
.simple-process-line::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 38px;
  border-top: 2px dashed rgba(0,155,114,.48);
}
.simple-process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.simple-process-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border: 7px solid var(--primary-blue);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
  color: var(--primary-green);
  box-shadow: 0 18px 36px rgba(6,70,107,.12);
}
.simple-process-icon i {
  font-size: 1.55rem;
}
.simple-process-icon span {
  position: absolute;
  right: -10px;
  top: -11px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--primary-green);
  border: 4px solid #fff;
  font-size: .8rem;
  font-weight: 900;
}
.simple-process-step h3 {
  font-size: 1.04rem;
  margin-bottom: 12px;
}
.simple-process-step p {
  margin: 0;
  line-height: 1.68;
}
.video-wide-placeholder {
  min-height: 460px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6,70,107,.9), rgba(0,155,114,.72)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.12) 0 2px, transparent 2px 18px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: #fff;
  box-shadow: 0 24px 60px rgba(6,70,107,.14);
}

.about-poster-card {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(6,70,107,.14);
}
.about-poster-card .placeholder-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border-radius: 0;
}
.poster-glass-copy {
  position: absolute;
  left: 36px;
  bottom: 36px;
  width: min(560px, calc(100% - 72px));
  padding: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 50px rgba(6,70,107,.14);
}
.poster-glass-copy p:last-child {
  margin-bottom: 0;
}
.about-split-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 38px;
  align-items: center;
}
.about-split-media {
  min-height: 540px;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(6,70,107,.14);
}
.about-split-copy {
  padding: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(221,233,237,.88);
  box-shadow: 0 22px 52px rgba(6,70,107,.1);
}
.about-split-copy p:last-child {
  margin-bottom: 0;
}

.team-card {
  min-height: auto;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  border: 1px solid rgba(8,22,39,.58);
  overflow: hidden;
  background: #09111f;
  box-shadow: 0 24px 60px rgba(6,70,107,.12);
}
.team-photo {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border-radius: 0;
  transition: transform .45s ease;
}
.team-card:hover .team-photo {
  transform: scale(1.05);
}
.team-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  text-align: center;
  padding: 28px 20px 34px;
  background: transparent;
  transition: padding-bottom .25s ease;
}
.team-card:hover .team-overlay {
  padding-bottom: 112px;
}
.team-overlay h3 {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 7px;
}
.team-overlay span {
  color: rgba(255,255,255,.78);
  margin: 0;
}
.team-actions {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transform: translate(-50%, 18px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.team-card:hover .team-actions {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.team-actions a {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e8f6f3;
  background: rgba(6,70,107,.72);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0,0,0,.22);
  transition: transform .2s ease, background .2s ease;
}
.team-actions a:hover {
  transform: translateY(-4px);
  background: rgba(0,155,114,.86);
}
.team-actions i {
  color: currentColor;
  font-size: 1.25rem;
}
.team-actions span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.treatment-hero {
  overflow: hidden;
}
.treatment-hero-copy {
  max-width: 860px;
}
.treatment-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 34px;
  align-items: center;
}
.cost-note-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: 28px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(221,233,237,.92);
  box-shadow: 0 22px 55px rgba(6,70,107,.12);
}
.cost-note-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -58px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(0,155,114,.12);
}
.cost-note-card h2 {
  font-size: 1.28rem;
  margin: 18px 0 12px;
}
.cost-note-card p {
  line-height: 1.72;
}
.cost-note-card small {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--heading-color);
  font-weight: 700;
}
.treatment-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.stat-card {
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border-color);
  padding: 24px;
  box-shadow: 0 16px 38px rgba(6,70,107,.07);
  text-align: center;
}
.stat-card strong {
  display: block;
  color: var(--primary-blue);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  margin-bottom: 6px;
}
.stat-card span {
  color: var(--body-color);
  font-weight: 700;
}
.treatment-catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.treatment-search-wrap {
  position: relative;
  flex: 0 1 360px;
}
.treatment-search-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-green);
  z-index: 1;
}
.treatment-search-wrap .form-control {
  min-height: 52px;
  border-radius: 8px;
  padding-left: 44px;
  border-color: var(--border-color);
  box-shadow: 0 14px 34px rgba(6,70,107,.06);
}
.treatment-result-note {
  min-height: 24px;
  margin-bottom: 18px;
  color: var(--muted-color);
  font-weight: 700;
}
.treatment-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.treatment-category-card {
  position: relative;
  min-height: 330px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--primary-blue);
  box-shadow: 0 20px 46px rgba(6,70,107,.12);
  text-align: left;
  cursor: pointer;
  transition: transform .28s ease, box-shadow .28s ease;
}
.treatment-category-card .placeholder-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border-radius: 0;
  padding: 0;
  transform: scale(1.01);
  transition: transform .45s ease;
}
.treatment-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,22,39,0) 34%, rgba(8,22,39,.92) 100%);
  pointer-events: none;
}
.treatment-category-card:hover,
.treatment-category-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(6,70,107,.18);
}
.treatment-category-card:hover .placeholder-media,
.treatment-category-card:focus-visible .placeholder-media {
  transform: scale(1.08);
}
.treatment-category-card:focus-visible {
  outline: 3px solid rgba(0,155,114,.38);
  outline-offset: 4px;
}
.treatment-category-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px;
  text-align: center;
}
.treatment-category-overlay span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.78);
  font-size: .84rem;
  font-weight: 800;
}
.treatment-category-overlay h3 {
  color: #fff;
  margin: 0;
  font-size: 1.12rem;
}
.treatment-category-card.is-hidden {
  display: none;
}
.treatment-cost-modal .modal-content {
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(8,22,39,.24);
}
.treatment-cost-modal .modal-header {
  align-items: flex-start;
  padding: 28px 30px 20px;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(135deg, #fff, var(--light-bg));
}
.treatment-cost-modal .modal-title {
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  margin-bottom: 8px;
}
.treatment-cost-modal .modal-header p {
  max-width: 820px;
  margin: 0;
  line-height: 1.68;
}
.treatment-cost-modal .modal-body {
  padding: 26px 30px;
}
.cost-table-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.cost-table-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--heading-color);
  background: var(--soft-green-bg);
  font-size: .86rem;
  font-weight: 800;
}
.cost-table-meta i {
  color: var(--primary-green);
}
.currency-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: var(--soft-blue-bg);
  border: 1px solid var(--border-color);
}
.currency-tab {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--heading-color);
  background: transparent;
  font-size: .82rem;
  font-weight: 900;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.currency-tab i {
  color: currentColor;
}
.currency-tab:hover,
.currency-tab.is-active {
  color: #fff;
  background: var(--primary-blue);
  transform: translateY(-1px);
}
.currency-switch-row {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -6px 0 18px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--border-color);
  box-shadow: 0 14px 34px rgba(6,70,107,.08);
  backdrop-filter: blur(12px);
}
.currency-switch-row > span {
  color: var(--heading-color);
  font-size: .86rem;
  font-weight: 900;
}
.procedure-card-list {
  display: grid;
  gap: 18px;
}
.procedure-cost-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(6,70,107,.07);
}
.procedure-cost-card h3 {
  text-align: center;
  font-size: 1.08rem;
  margin-bottom: 18px;
}
.procedure-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.procedure-metric {
  min-height: 126px;
  border-radius: 8px;
  border: 1px solid rgba(221,233,237,.92);
  background: linear-gradient(135deg, var(--light-bg), #fff);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
}
.procedure-metric i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--primary-green);
  box-shadow: 0 12px 24px rgba(0,155,114,.18);
}
.procedure-metric span {
  color: var(--muted-color);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.procedure-metric strong {
  color: var(--heading-color);
  font-size: .9rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.currency-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.currency-value[hidden] {
  display: none;
}
.modal-cost-disclaimer {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 8px;
  background: var(--soft-blue-bg);
}
.modal-cost-disclaimer i {
  color: var(--primary-blue);
  margin-top: 4px;
}
.modal-cost-disclaimer p {
  margin: 0;
  line-height: 1.65;
}
.treatment-cost-modal .modal-footer {
  padding: 18px 30px 26px;
  border-top: 1px solid var(--border-color);
}

.section-mobile-action {
  display: none;
}
.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.hero-stats {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  transform: none;
  gap: 0;
  border-radius: 0;
  overflow: hidden;
  background: rgba(6,70,107,.82);
  border: 1px solid rgba(255,255,255,.16);
  border-bottom: 0;
  backdrop-filter: blur(14px);
  box-shadow: 0 -18px 48px rgba(6,70,107,.14);
}
.hero-stats .stat-card {
  border: 0;
  border-right: 1px solid rgba(255,255,255,.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 14px 12px;
}
.hero-stats .stat-card:last-child {
  border-right: 0;
}
.hero-stats .stat-card strong,
.hero-stats .stat-card span {
  color: #fff;
}
.hero-stats .stat-card strong {
  color: #bff4e4;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  margin-bottom: 2px;
  line-height: 1;
}
.hero-stats .stat-card strong span {
  color: inherit;
  font-size: 1em;
  letter-spacing: 0;
  text-transform: none;
  font-weight: inherit;
}
.hero-stats .stat-card span {
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.contact-card {
  text-align: center;
}
.contact-card > i {
  margin-left: auto;
  margin-right: auto;
}
.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 42px;
}
.contact-intro {
  position: sticky;
  top: 118px;
}
.contact-map-card {
  margin-top: 20px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 42px rgba(6,70,107,.08);
}
.contact-map-card iframe {
  display: block;
  width: 100%;
  min-height: 300px;
  border: 0;
}
.contact-map-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: var(--heading-color);
  font-weight: 800;
}
.contact-map-caption i {
  color: var(--primary-green);
}

.service-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.service-title-row .animated-icon {
  flex: 0 0 auto;
  margin: 0;
}
.service-title-row h3 {
  margin: 0;
  font-size: 1.12rem;
}
.process-flow-heading {
  max-width: 820px;
}
.service-flow-timeline {
  position: relative;
  display: grid;
  gap: 32px;
}
.service-flow-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, rgba(6,70,107,.25), var(--primary-green), rgba(6,70,107,.25));
}
.flow-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  position: relative;
}
.flow-step.is-reverse .flow-copy {
  grid-column: 3;
}
.flow-step.is-reverse .flow-marker {
  grid-column: 2;
  grid-row: 1;
}
.flow-step.is-reverse .flow-media {
  grid-column: 1;
  grid-row: 1;
}
.flow-copy h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}
.flow-copy p {
  line-height: 1.72;
}
.flow-copy ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.flow-copy li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #30445a;
  margin-bottom: 10px;
  line-height: 1.5;
}
.flow-copy li i {
  color: var(--primary-green);
  margin-top: 4px;
}
.flow-marker {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.flow-marker span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-green);
  color: #fff;
  border: 8px solid rgba(0,155,114,.22);
  box-shadow: 0 16px 34px rgba(0,155,114,.24);
  font-weight: 900;
  background-clip: padding-box;
}
.flow-media {
  min-height: 300px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, #071121, #0a1426),
    repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 2px, transparent 2px 18px);
  box-shadow: 0 22px 44px rgba(6,70,107,.12);
}

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

@media (max-width: 1199px) {
  .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .step-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .feature-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .treatment-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .journey-rail { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 991px) {
  body { padding-top: 0; }
  .site-header {
    padding: 12px 0;
  }
  .site-header .navbar > .container {
    width: calc(100% - 28px);
    max-width: none;
    min-height: 72px;
    padding: 10px 18px;
    border-radius: 8px;
    background: rgba(6,70,107,.88);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 18px 44px rgba(6,70,107,.18);
    backdrop-filter: blur(14px);
  }
  .site-header .navbar > .container .brand {
    color: #fff;
  }
  .site-header .navbar > .container .brand small {
    color: rgba(255,255,255,.72);
  }
  .site-header.is-scrolled {
    padding: 9px 0;
  }
  .navbar { min-height: 72px; }
  .hero { min-height: auto; }
  .hero::before { background: linear-gradient(90deg, rgba(246,250,251,.96), rgba(246,250,251,.82)); }
  .hero-content { padding: 136px 0 150px; }
  .page-hero { padding-top: 126px; }
  .split, .footer-grid, .about-split-card, .contact-form-layout { grid-template-columns: 1fr; }
  .card-grid, .card-grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-strip, .service-video-grid, .service-process-grid, .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .treatment-hero-grid { grid-template-columns: 1fr; }
  .treatment-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .procedure-metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-band { align-items: flex-start; flex-direction: column; }
  .contact-intro {
    position: static;
  }
  .reveal-card,
  .section-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .mobile-menu-panel {
    top: 108px;
    left: 14px;
    right: 14px;
    max-width: calc(100vw - 28px);
  }
}
@media (max-width: 767px) {
  body.mobile-bar-space { padding-bottom: 74px; }
  .section { padding: 58px 0; }
  .section-sm { padding: 42px 0; }
  .brand-mark { width: 40px; height: 40px; }
  .brand strong { font-size: .96rem; }
  .brand small { font-size: .62rem; }
  .footer-brand .brand-mark {
    width: 52px;
    height: 52px;
  }
  .footer-brand strong {
    font-size: 1.14rem;
  }
  .footer-brand small {
    font-size: .7rem;
  }
  .page-hero { padding: 52px 0 38px; }
  .page-hero { padding-top: 124px; }
  .hero h1 { font-size: clamp(2.15rem, 12vw, 3.2rem); }
  .hero p { font-size: 1rem; }
  .card-grid, .card-grid.three, .step-list, .feature-strip, .service-video-grid, .service-process-grid, .team-grid, .journey-rail { grid-template-columns: 1fr; }
  .treatment-stats, .treatment-category-grid { grid-template-columns: 1fr; }
  .home-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-stats {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-stats .stat-card {
    padding: 11px 8px;
    border-right: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .hero-stats .stat-card:nth-child(2n) {
    border-right: 0;
  }
  .hero-stats .stat-card:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  .hero-stats .stat-card strong {
    font-size: 1rem;
  }
  .hero-stats .stat-card span {
    font-size: .64rem;
  }
  .treatment-catalog-head {
    align-items: stretch;
    flex-direction: column;
  }
  .section-action-head > .btn {
    display: none;
  }
  .section-mobile-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
  }
  .section-mobile-action .btn {
    min-width: 190px;
    justify-content: center;
  }
  .treatment-search-wrap {
    flex-basis: auto;
  }
  .treatment-category-card {
    min-height: 300px;
  }
  .treatment-cost-modal .modal-header,
  .treatment-cost-modal .modal-body,
  .treatment-cost-modal .modal-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  .cost-table-meta {
    display: grid;
  }
  .currency-tabs {
    justify-content: center;
    width: 100%;
  }
  .currency-switch-row {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }
  .currency-tab {
    flex: 1;
    justify-content: center;
  }
  .procedure-cost-card {
    padding: 16px;
  }
  .procedure-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .photo-slider .slick-list,
  .photo-service-slider .slick-list,
  .card-slider .slick-list {
    margin-left: 0;
    margin-right: 0;
  }
  .procedure-metric {
    min-height: 112px;
    padding: 14px 10px;
  }
  .info-card, .service-card, .treatment-card, .contact-card, .step-card, .form-panel { padding: 20px; }
  .visual-panel { min-height: 320px; }
  .media-service-card { padding: 0; }
  .story-panel, .placeholder-media.tall { min-height: 380px; }
  .story-card { left: 14px; right: 14px; bottom: 14px; padding: 20px; }
  .journey-board { padding: 16px; }
  .journey-detail { padding: 22px; }
  .video-placeholder { min-height: 220px; }
  .cta-band { padding: 28px; }
  .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .footer-bottom .legal-links {
    order: 1;
  }
  .footer-bottom .copyright-line {
    order: 2;
    white-space: nowrap;
    line-height: 1.55;
  }
  .developer-note {
    display: block;
  }
  .developer-note .footer-divider {
    display: none;
  }
  .legal-links {
    justify-content: center;
    gap: 10px;
  }
  .site-footer .legal-links a {
    font-size: .76rem;
  }
  .contact-map-card iframe {
    min-height: 260px;
  }
}
@media (max-width: 767px) {
  .reveal-card,
  .section-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (max-width: 991px) {
  .simple-process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .simple-process-line::before {
    display: none;
  }
  .about-poster-card {
    min-height: 620px;
  }
  .service-flow-timeline::before {
    left: 23px;
  }
  .flow-step,
  .flow-step.is-reverse {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
  }
  .flow-step .flow-marker,
  .flow-step.is-reverse .flow-marker {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-content: flex-start;
  }
  .flow-step .flow-copy,
  .flow-step.is-reverse .flow-copy {
    grid-column: 2;
    grid-row: 2;
  }
  .flow-step .flow-media,
  .flow-step.is-reverse .flow-media {
    grid-column: 2;
    grid-row: 1;
  }
}
@media (max-width: 767px) {
  .photo-overlay-card {
    min-height: 330px;
  }
  .photo-card-caption,
  .service-photo-caption {
    padding: 20px;
  }
  .simple-process-line {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .simple-process-step {
    text-align: left;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    column-gap: 16px;
    align-items: start;
  }
  .simple-process-icon {
    grid-row: span 2;
    margin: 0;
  }
  .simple-process-step h3 {
    margin-top: 8px;
  }
  .video-wide-placeholder {
    min-height: 300px;
  }
  .about-poster-card {
    min-height: 680px;
  }
  .poster-glass-copy {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding: 22px;
  }
  .team-actions { bottom: 22px; }
  .team-actions a {
    width: 56px;
    height: 56px;
  }
  .flow-media {
    min-height: 220px;
    border-radius: 8px;
  }
}
@media (max-width: 420px) {
  .hero-actions .btn, .cta-band .btn { width: 100%; }
}
