/*
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* ── Google Fonts: DM Sans + Barlow Condensed ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Barlow+Condensed:wght@600;700;800&display=swap');

/* ── Brand Tokens ─────────────────────────────────────────────────────────── */
:root {
  --teal:          #4DC8D4;
  --teal-dark:     #008081;
  --teal-deep:     #005e5f;
  --teal-light:    #AADCD5;
  --teal-pale:     #EAF7F7;
  --coral:         #D55655;
  --black:         #0A0A0A;
  --dark:          #111111;
  --dark-2:        #1A1A1A;
  --gray:          #6B7280;
  --gray-light:    #9CA3AF;
  --bg-light:      #F6F8F8;
  --white:         #FFFFFF;
  --font:          'DM Sans', sans-serif;
  --radius:        14px;
  --radius-lg:     20px;
  --shadow:        0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:     0 16px 60px rgba(0,0,0,.14);

  /* Legacy aliases */
  --hero-bg:       #071c1c;
  --dark-bg:       #0d0f0f;
  --bright-teal:   #4FC5D3;
  --light-teal-bg: #EAF7F7;
  --teal-accent:   #055655;
}

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: var(--font); }

/* ── Elementor overrides ──────────────────────────────────────────────────── */
.e-con { margin: 0 !important; }
.elementor-widget-html .elementor-widget-container { padding: 0 !important; }
.site-header, .site-footer { display: none !important; }

/* ── Force DM Sans everywhere Elementor might override it ─────────────────── */
.elementor, .elementor *,
.elementor-widget-container, .elementor-widget-container *,
.e-con, .e-con * { font-family: var(--font) !important; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
}

/* ── Container ────────────────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.mm-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--hero-bg);
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
  transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}
.mm-nav.scrolled {
  background: rgba(7,28,28,.85) !important;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(77,200,212,.1), 0 8px 32px rgba(0,0,0,.3);
}
.mm-nav__logo img { height: 42px; width: auto; opacity: .9; display: block; }
.mm-nav__links {
  display: none;
  gap: 2rem;
  align-items: center;
}
.mm-nav__links a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .15s;
}
.mm-nav__links a:hover { color: #fff; }
.mm-nav__cta {
  display: none;
  background: var(--teal);
  color: #fff !important;
  font-weight: 600;
  font-size: .85rem;
  border-radius: 9999px;
  padding: .6rem 1.4rem;
  text-decoration: none;
  transition: background .18s;
}
.mm-nav__cta:hover { background: var(--teal-dark); }
.mm-nav__hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  line-height: 0;
}
@media (min-width: 900px) {
  .mm-nav__links { display: flex; }
  .mm-nav__cta { display: inline-flex; }
  .mm-nav__hamburger { display: none; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   MEGA MENU — .mm-mega namespace
   ══════════════════════════════════════════════════════════════════════════════ */

/* Trigger wrapper — inline with nav links */
.mm-mega-trigger {
  position: relative;
  display: flex;
  align-items: center;
}
.mm-mega-trigger__link {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .15s;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.mm-mega-trigger__link:hover,
.mm-mega-trigger__link[aria-expanded="true"] { color: #fff; }
.mm-mega-trigger__link svg {
  transition: transform .2s ease;
}
.mm-mega-trigger__link[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* Mega panel — full viewport width */
.mm-mega {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: rgba(7,20,20,.97);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-bottom: 1px solid rgba(77,200,212,.1);
  box-shadow: 0 12px 48px rgba(0,0,0,.5), 0 0 80px rgba(77,200,212,.04);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  z-index: 998;
  pointer-events: none;
}
.mm-mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mm-mega__inner {
  display: flex;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 320px;
}

/* ── Left: Specialty Programs Slider ── */
.mm-mega__programs {
  width: 36%;
  flex-shrink: 0;
  padding: 32px 28px;
  border-right: 1px solid rgba(77,200,212,.08);
}
.mm-mega__heading {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(77,200,212,.7);
  margin: 0 0 14px;
  font-family: 'DM Sans', sans-serif;
}

/* Slider */
.mm-mega__slider {
  overflow: hidden;
  border-radius: 12px;
}
.mm-mega__track {
  display: flex;
  gap: 12px;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mm-mega__card {
  min-width: calc(50% - 6px);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(77,200,212,.1);
  border-radius: 12px;
  padding: 20px 16px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.mm-mega__card:hover {
  border-color: rgba(77,200,212,.3);
  background: rgba(77,200,212,.06);
  transform: translateY(-2px);
}
.mm-mega__card-icon {
  color: #4FC5D3;
  width: 36px;
  height: 36px;
  background: rgba(77,200,212,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mm-mega__card-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -.01em;
}
.mm-mega__card-desc {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

/* Slider nav */
.mm-mega__slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.mm-mega__slider-btn {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(77,200,212,.12);
  border-radius: 8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,.5);
  transition: background .2s ease, color .2s ease;
}
.mm-mega__slider-btn:hover {
  background: rgba(77,200,212,.12);
  color: #4FC5D3;
}
.mm-mega__slider-dots {
  display: flex;
  gap: 6px;
}
.mm-mega__slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease;
}
.mm-mega__slider-dot.is-active {
  background: #4FC5D3;
}

/* ── Right: Indications Grid ── */
.mm-mega__indications {
  flex: 1;
  padding: 32px 28px;
  border-right: 1px solid rgba(77,200,212,.08);
}

/* ── Far right: Brand image ── */
.mm-mega__brand {
  width: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.mm-mega__brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  opacity: .85;
  transition: opacity .3s ease;
}
.mm-mega__brand:hover img {
  opacity: 1;
}
.mm-mega__brand::after {
  content: '';
  position: absolute;
  inset: 28px;
  border-radius: 12px;
  border: 1px solid rgba(77,200,212,.12);
  pointer-events: none;
}
.mm-mega__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.mm-mega__grid a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
  display: block;
}
.mm-mega__grid a:hover {
  background: rgba(77,200,212,.08);
  color: #4FC5D3;
}
.mm-mega__grid a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(77,200,212,.4) inset;
}

/* ── Mobile services accordion ── */
.mm-mobile-menu__accordion {
  display: flex;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1.2rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  padding: 12px 24px;
  cursor: pointer;
  text-align: left;
}
.mm-mobile-menu__accordion svg {
  transition: transform .2s ease;
}
.mm-mobile-menu__accordion.is-open svg {
  transform: rotate(180deg);
}
.mm-mobile-menu__sub {
  display: none;
  padding: 0 24px 8px 36px;
}
.mm-mobile-menu__sub.is-open {
  display: block;
}
.mm-mobile-menu__sublink {
  display: block;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: .95rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .15s;
}
.mm-mobile-menu__sublink:hover {
  color: #4FC5D3;
}

/* Hide mega on mobile */
@media (max-width: 899px) {
  .mm-mega { display: none !important; }
  .mm-mega-trigger__link svg { display: none; }
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.mm-footer {
  background: #021e1e;
  padding: 3.5rem 2rem 2rem;
}
.mm-footer__inner { max-width: 1200px; margin: 0 auto; }
.mm-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.mm-footer__logo { height: 46px; width: auto; opacity: .8; display: block; margin-bottom: 1rem; }
.mm-footer__desc {
  color: rgba(255,255,255,.38);
  font-size: .82rem;
  line-height: 1.7;
  margin-bottom: .75rem;
}
.mm-footer__address {
  color: rgba(255,255,255,.3);
  font-size: .78rem;
  line-height: 1.6;
}
.mm-footer__heading {
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.mm-footer__nav {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.mm-footer__nav a {
  color: rgba(255,255,255,.38);
  text-decoration: none;
  font-size: .82rem;
  transition: color .15s;
}
.mm-footer__nav a:hover { color: rgba(255,255,255,.75); }
.mm-footer__contact {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: .82rem;
}
.mm-footer__contact a {
  color: rgba(255,255,255,.38);
  text-decoration: none;
  transition: color .15s;
}
.mm-footer__contact a:hover { color: rgba(255,255,255,.75); }
.mm-footer__contact span { color: rgba(255,255,255,.3); }
.mm-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.25rem;
  font-size: .72rem;
  color: rgba(255,255,255,.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mm-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.35);
  font-size: .72rem;
}
@media (max-width: 767px) {
  .mm-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .mm-footer__bottom { flex-direction: column; gap: .5rem; text-align: center; }
}

/* ── Mobile Menu ─────────────────────────────────────────────────────────── */
.mm-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(7,28,28,.97);
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease;
}
.mm-mobile-menu.is-open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.mm-mobile-menu__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.mm-mobile-menu__close:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(77,200,212,.4); border-radius: 4px; }
.mm-mobile-menu__link {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  text-decoration: none;
  transition: color .15s;
}
.mm-mobile-menu__link:hover { color: #fff; }
.mm-mobile-menu__link:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(77,200,212,.4) inset; border-radius: 4px; }
.mm-mobile-menu__link--home { color: #fff; font-size: 1.3rem; font-weight: 600; }
.mm-mobile-menu__cta { margin-top: 1rem; align-self: flex-start; }

/* ── Section Title ────────────────────────────────────────────────────────── */
.section-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--dark);
  margin-bottom: 18px;
}
.section-title span { color: var(--teal-dark); }
.benefits .section-title { color: #fff; }
.technology .section-title { color: #fff; }

/* Glow blobs for benefits */
.benefits-glow-1 {
  position: absolute;
  top: -150px; right: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(77,200,212,.07) 0%, transparent 65%);
  pointer-events: none;
}
.benefits-glow-2 {
  position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,128,129,.08) 0%, transparent 65%);
  pointer-events: none;
}

/* Trust badges in CTA */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: 8px 16px;
}
.trust-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* FAQ search */
.faq-search-wrap { position: relative; margin-bottom: 8px; }
.faq-search {
  width: 100%;
  padding: 13px 44px 13px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(0,0,0,.12);
  background: #fff;
  font-family: var(--font);
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.faq-search::placeholder { color: var(--gray-light); }
.faq-search:focus { border-color: var(--teal-dark); box-shadow: 0 0 0 3px rgba(77,200,212,.12); }
.faq-search-icon {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray-light);
  pointer-events: none;
}

/* Conditions search */
.conditions-search-wrap { position: relative; margin-bottom: 24px; }
.conditions-search {
  width: 100%;
  padding: 13px 44px 13px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(0,128,129,.22);
  background: #fff;
  font-family: var(--font);
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.conditions-search::placeholder { color: var(--gray-light); }
.conditions-search:focus { border-color: var(--teal-dark); box-shadow: 0 0 0 3px rgba(77,200,212,.12); }
.conditions-search-icon {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray-light);
  pointer-events: none;
}
.conditions-no-results { display: none; font-size: 14px; color: var(--gray); padding: 12px 0; font-style: italic; }
.conditions-no-results.visible { display: block; }

/* Pressure gauge */
.pressure-gauge-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 36px;
  padding: 22px 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
}
.pressure-gauge-info strong { display: block; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.pressure-gauge-info p { font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.55; }
.gauge-bg-arc { fill: none; stroke: rgba(255,255,255,.07); stroke-width: 8; stroke-linecap: round; }
.gauge-fill-arc { fill: none; stroke: url(#gaugeGrad); stroke-width: 8; stroke-linecap: round; stroke-dasharray: 220; stroke-dashoffset: 220; transition: stroke-dashoffset 2s cubic-bezier(.16,1,.3,1); }
.gauge-value-text { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 700; fill: var(--teal); text-anchor: middle; }
.gauge-unit-text { font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 600; fill: rgba(255,255,255,.38); text-anchor: middle; letter-spacing: .1em; }
.gauge-ticks { fill: none; stroke: rgba(255,255,255,.15); stroke-width: 1.5; stroke-linecap: round; }

/* ── Section Label & Sub ──────────────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 18px;
}
.section-label::before {
  display: none;
}
.section-label.light { color: var(--teal); }
.section-label.light::before { display: none; }

/* Native Elementor text-editor widget used as section-label pill */
.elementor-element.section-label .elementor-widget-container {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.elementor-element.section-label .elementor-widget-container::before {
  display: none;
}
.elementor-element.section-label .elementor-widget-container p { margin: 0; }
.elementor-element.section-label-light .elementor-widget-container::before { display: none; }

.section-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.72;
  font-weight: 400;
  max-width: 580px;
}

.heading-teal { color: var(--teal); }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
  font-family: var(--font);
  white-space: nowrap;
}

/* Teal pill — used on dark backgrounds */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--black);
  font-family: var(--font);
  font-weight: 600;
  font-size: .95rem;
  border-radius: 9999px;
  padding: .85rem 2rem;
  text-decoration: none;
  transition: background .18s, transform .15s, box-shadow .18s;
  box-shadow: 0 4px 20px rgba(77,200,212,.25);
  border: 2px solid var(--teal);
  cursor: pointer;
}
.btn-primary:hover {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--teal);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

/* White button — used inside hero (dark bg) */
.btn-white {
  background: #fff;
  color: var(--teal-dark);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--teal);
  color: var(--black);
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0,0,0,.2);
}

/* Ghost outline on dark */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.65);
  font-family: var(--font);
  font-weight: 500;
  font-size: .95rem;
  text-decoration: none;
  transition: color .15s;
  border: none;
  cursor: pointer;
}
.btn-ghost:hover { color: #fff; }

/* Transparent + white border — used in hero & CTA */
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.38);
}
.btn-outline-white:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(77,200,212,.08);
}

/* Outline dark — on light bg */
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(0,0,0,.18);
  color: #374151;
  font-family: var(--font);
  font-weight: 600;
  font-size: .9rem;
  border-radius: 9999px;
  padding: .75rem 1.75rem;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.btn-outline-dark:hover { background: var(--teal-pale); border-color: var(--teal-dark); }

/* ── Focus-visible states (accessibility) ─────────────────────────────────── */
.btn:focus-visible,
.btn-primary:focus-visible,
.btn-white:focus-visible,
.btn-outline-dark:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(0,128,129,.4); }
.btn-ghost:focus-visible,
.btn-outline-white:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(77,200,212,.5); }
.mm-nav__links a:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(77,200,212,.4) inset; border-radius: 4px; }
.mm-nav__cta:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(77,200,212,.5); }
.condition-guide-link:focus-visible,
.cgl-card:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(0,128,129,.3); }
.cond-tag:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(0,128,129,.3); }
.e-con.benefit-card:focus-visible,
.e-con.process-card:focus-visible,
.tech-spec-card:focus-visible,
.sci-mechanism:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(77,200,212,.4); }
.mm-footer a:focus-visible { outline: none; box-shadow: 0 0 0 2px rgba(77,200,212,.4) inset; border-radius: 2px; }
/* Elementor button widgets on dark backgrounds */
.elementor-element .elementor-button:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(77,200,212,.5); }

/* ── Animations ───────────────────────────────────────────────────────────── */
@keyframes ecg-draw {
  0%   { stroke-dashoffset: 900; opacity: 0; }
  10%  { opacity: .6; }
  100% { stroke-dashoffset: 0; opacity: .45; }
}
.ecg-path {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: ecg-draw 4s cubic-bezier(.22,1,.36,1) .5s forwards;
}

@keyframes atom-pulse {
  0%,100% { opacity: .85; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.04); }
}
.atom-icon { animation: atom-pulse 3s ease-in-out infinite; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up .7s ease forwards; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
/* Elementor hero section — clip overflowing backgrounds */
.e-con.hero-section {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #060606;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center center !important;
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg,
    rgba(6,6,6,.82) 0%,
    rgba(0,80,81,.45) 55%,
    rgba(6,6,6,.60) 100%
  );
}
.hero-glow {
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(77,200,212,.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 60px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(77,200,212,.12);
  border: 1px solid rgba(77,200,212,.35);
  color: var(--teal);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: blink 2.2s ease infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(1.4); }
}
.hero-heading-row {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(46px, 6.5vw, 86px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,.55), 0 0 60px rgba(0,0,0,.3);
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero-icon {
  height: clamp(97px, 13.65vw, 181px);
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 18px rgba(77,200,212,.45));
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,.72);
  max-width: 500px;
  line-height: 1.68;
  margin-bottom: 48px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-text {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(77,200,212,.9), transparent);
  animation: scrollAnim 2s ease infinite;
  transform-origin: top;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ── STATS BAR ────────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(77,200,212,.12);
  border-bottom: 1px solid rgba(77,200,212,.12);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
}
.stat-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background .3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(77,200,212,.04); }
.stat-number {
  font-size: 46px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.stat-number sup { font-size: 22px; vertical-align: super; }
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-weight: 400;
  letter-spacing: .02em;
}

/* ── ABOUT / SCIENCE ──────────────────────────────────────────────────────── */
.about { padding: 108px 0; background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-main {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.about-image-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--dark);
  border: 1px solid rgba(77,200,212,.22);
  border-radius: var(--radius);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-image-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(77,200,212,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.about-image-card-text strong {
  display: block;
  font-size: 18px;
  color: var(--teal);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.about-image-card-text span {
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.about-text p {
  color: var(--gray);
  font-size: 16.5px;
  line-height: 1.78;
  margin-bottom: 18px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 38px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px;
  background: var(--teal-pale);
  border-radius: 10px;
  transition: background .2s;
}
.about-feature:hover { background: #d8f0ef; }
.about-feature-icon { font-size: 22px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.about-feature-text { font-size: 14px; font-weight: 600; color: var(--teal-dark); line-height: 1.4; }

/* O2 comparison bar */
.o2-compare {
  margin-top: 36px;
  padding: 22px 24px;
  background: var(--teal-pale);
  border-radius: 12px;
  border: 1px solid rgba(0,128,129,.14);
}
.o2-compare-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.o2-compare-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.o2-compare-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.o2-compare-row:last-of-type { margin-bottom: 0; }
.o2-compare-tag { font-size: 12px; font-weight: 500; color: var(--gray); width: 140px; flex-shrink: 0; }
.o2-tag-hbot { color: var(--teal-dark); font-weight: 600; }
.o2-bar-wrap { flex: 1; height: 8px; background: rgba(0,0,0,.07); border-radius: 4px; overflow: hidden; }
.o2-bar { height: 100%; border-radius: 4px; transition: width 1.6s cubic-bezier(.16,1,.3,1); }
.o2-bar-low { background: #9CA3AF; width: 5%; }
.o2-bar-high { background: linear-gradient(90deg, var(--teal-dark), var(--teal)); width: 100%; box-shadow: 0 0 12px rgba(77,200,212,.4); }
.o2-compare-val { font-size: 12px; font-weight: 600; color: var(--gray); width: 58px; text-align: right; flex-shrink: 0; }
.o2-val-hbot { color: var(--teal-dark); }
.o2-compare-source { font-size: 10px; color: var(--gray-light); margin-top: 12px; font-style: italic; }

/* ── BENEFITS ─────────────────────────────────────────────────────────────── */
/* ── Benefits section — unified with chambers background ──────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.benefit-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(77,200,212,.14);
  border-radius: 16px;
  padding: 36px 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .3s, border-color .3s, box-shadow .3s, transform .3s;
}
.benefit-card:hover {
  background: rgba(77,200,212,.07);
  border-color: rgba(77,200,212,.35);
  box-shadow: 0 0 40px rgba(77,200,212,.08), 0 8px 32px rgba(0,0,0,.25);
  transform: translateY(-3px);
}
.benefit-card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #4DC8D4;
  margin: 0 0 14px;
  text-shadow: 0 0 20px rgba(77,200,212,.3);
}
.benefit-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.3;
}
.benefit-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,.48);
  line-height: 1.7;
  margin: 0;
}

/* Stats inline row */
.benefits-stats-inline {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 36px 0 8px;
  position: relative;
}
.benefits-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  position: relative;
}
.benefits-stat + .benefits-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(77,200,212,.20);
}
.benefits-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #4DC8D4;
  margin: 0 0 6px;
}
.benefits-stat-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.40);
  line-height: 1.4;
}

/* Evidence ticker */
.evidence-ticker-wrap {
  margin-top: 40px;
  padding: 28px 0;
  border-top: 1px solid rgba(77,200,212,.10);
}
.evidence-ticker-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.26);
  text-align: center;
  margin-bottom: 16px;
}
.evidence-ticker {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.evidence-ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 32s linear infinite;
}
.evidence-ticker-inner span {
  font-size: 12.5px;
  color: rgba(255,255,255,.36);
  font-weight: 500;
  letter-spacing: .02em;
  flex-shrink: 0;
  padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.evidence-ticker-inner span:hover { color: var(--teal); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Mobile responsive */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-stats-inline { flex-wrap: wrap; gap: 20px 0; }
  .benefits-stat { padding: 0 28px; }
}
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; gap: 14px; }
  .benefit-card { padding: 28px 20px; }
  .benefits-stats-inline { flex-direction: column; align-items: center; gap: 20px; }
  .benefits-stat + .benefits-stat::before { display: none; }
}

/* ── CONDITIONS ───────────────────────────────────────────────────────────── */
.conditions { padding: 108px 0; background: var(--teal-pale); }
.conditions-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 88px;
  align-items: start;
}
.conditions-sticky { position: sticky; top: 100px; }
/* Native Elementor container sticky — conditions sidebar */
.e-con.conditions-sidebar { position: sticky; top: 88px; }

/* ── Native Elementor container/widget overrides ──────────────────────────── */

/* Hero: content container above canvas z-index:2 */
.e-con.hero-col { position: relative; z-index: 5; }

/* Benefit cards as Elementor containers */
.e-con.benefit-card {
  padding: 38px 32px !important;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.e-con.benefit-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity .3s ease;
}
.e-con.benefit-card:hover {
  background: rgba(255,255,255,.055);
  border-color: rgba(77,200,212,.25);
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0,0,0,.3);
}
.e-con.benefit-card:hover::after { opacity: 1; }

/* Condition guide cards as Elementor containers */
.e-con.condition-guide-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid rgba(0,0,0,.07);
  border-radius: 12px;
  padding: 14px 16px !important;
  transition: border-color .2s, box-shadow .2s;
}
.e-con.condition-guide-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(77,200,212,.15);
}

/* Trust badges as Elementor text widgets */
.elementor-element.trust-badge .elementor-widget-container {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.elementor-element.trust-badge .elementor-widget-container p { margin: 0; }
.conditions-sticky h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--dark);
  margin-bottom: 18px;
}
.conditions-sticky h2 em { font-style: normal; color: var(--teal-dark); }
.conditions-sticky p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}
.conditions-tags { display: flex; flex-wrap: wrap; gap: 11px; }
.tag {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 500;
  border: 1.5px solid rgba(0,128,129,.18);
  background: #fff;
  color: var(--teal-dark);
  transition: opacity .2s ease;
  cursor: default;
  text-decoration: none;
  display: inline-block;
}
.tag:hover, .tag.featured {
  background: var(--teal-dark);
  color: #fff;
  border-color: var(--teal-dark);
  transform: translateY(-1px);
}
a.tag {
  cursor: pointer;
}
a.tag.link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border-color: rgba(0,128,129,.3);
}
a.tag.link::after {
  content: '→';
  font-size: 12px;
  opacity: .6;
  transition: transform .2s, opacity .2s;
}
a.tag.link:hover::after { transform: translateX(3px); opacity: 1; }

/* Condition guides */
.condition-guides { margin-top: 28px; }
.condition-guides-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.condition-guides-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.condition-guides-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.condition-guide-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid rgba(0,128,129,.15);
  border-radius: 10px;
  padding: 12px 14px;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.condition-guide-link:hover {
  border-color: var(--teal-dark);
  background: var(--teal-pale);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,128,129,.10);
}
.condition-guide-icon { font-size: 18px; flex-shrink: 0; }
.condition-guide-name { font-size: 12px; font-weight: 600; color: var(--teal-dark); line-height: 1.3; flex: 1; }
.condition-guide-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  background: rgba(77,200,212,.15);
  color: var(--teal-deep);
  padding: 3px 8px;
  border-radius: 50px;
  flex-shrink: 0;
  white-space: nowrap;
}

.referral-cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--teal-pale);
  border: 1.5px solid rgba(0,128,129,.2);
  border-radius: 10px;
  padding: 13px 18px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
  transition: color .22s ease, transform .22s ease;
  margin-top: 14px;
}
.referral-cta-link:hover {
  background: var(--teal-dark);
  color: #fff;
  border-color: var(--teal-dark);
  transform: translateY(-2px);
}

/* Old condition card (used on non-homepage pages) */
.cond-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  border: 1.5px solid rgba(0,0,0,.07);
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
  color: inherit;
}
.cond-card:hover {
  box-shadow: 0 8px 24px rgba(5,86,85,.14);
  transform: translateY(-2px);
}
.cond-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ohip-badge {
  display: inline-block;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--teal);
  color: #fff;
  border-radius: 4px;
  padding: 2px 5px;
  margin-left: 4px;
  vertical-align: middle;
}

/* ── FACILITY / GALLERY ───────────────────────────────────────────────────── */
.facility { padding: 108px 0 0; background: #fff; }
.facility-header { margin-bottom: 52px; }
.facility-header h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--dark);
  margin-bottom: 18px;
}
.facility-header h2 em { font-style: normal; color: var(--teal-dark); }
.facility-header p { font-size: 17px; color: var(--gray); line-height: 1.7; max-width: 580px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px 280px;
  gap: 14px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,94,95,.72) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-caption-text { font-size: 15px; font-weight: 600; color: #fff; }

.accreditation-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 0;
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 32px 0;
  flex-wrap: wrap;
}
.accred-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 36px;
  border-right: 1px solid rgba(0,0,0,.08);
  flex-shrink: 0;
}
.accred-item:last-child { border-right: none; }
.accred-icon-wrap {
  width: 42px;
  height: 42px;
  background: var(--teal-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.accred-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--dark); line-height: 1.3; }
.accred-text span { font-size: 11.5px; color: var(--gray); display: block; }

/* ── PROCESS ──────────────────────────────────────────────────────────────── */
.process { padding: 108px 0; background: #fff; }
.process-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 72px;
}
.process-header .section-label { justify-content: center; }
.process-header h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--dark);
  margin-bottom: 18px;
}
.process-header h2 em { font-style: normal; color: var(--teal-dark); }
.process-header p { font-size: 17px; color: var(--gray); line-height: 1.7; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(12.5% + 15px);
  right: calc(12.5% + 15px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-dark) 100%);
  opacity: .25;
}
.process-step { text-align: center; padding: 0 24px; }
.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--black);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(77,200,212,.12);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.process-step:hover .step-circle {
  background: var(--teal-dark);
  color: #fff;
  box-shadow: 0 0 0 12px rgba(0,128,129,.12);
}
.step-duration {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--teal-dark);
  background: rgba(77,200,212,.1);
  border: 1px solid rgba(77,200,212,.2);
  border-radius: 50px;
  padding: 4px 12px;
  margin-bottom: 20px;
}
.step-duration::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.process-step h3 { font-size: 16.5px; font-weight: 600; color: var(--dark); margin-bottom: 12px; }
.process-step p { font-size: 14px; color: var(--gray); line-height: 1.65; }
.process-cta { text-align: center; margin-top: 56px; }

/* ── TECHNOLOGY ───────────────────────────────────────────────────────────── */
.technology {
  padding: 108px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.technology::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(77,200,212,.06) 0%, transparent 65%);
  pointer-events: none;
}
.technology .section-label { color: var(--teal); }
.technology .section-label::before { display: none; }

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.tech-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.tech-text h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 18px;
}
.tech-text h2 em { font-style: normal; color: var(--teal); }
.tech-text > p {
  font-size: 16.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
}
.tech-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px;
}
.tech-spec {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 20px 22px;
  transition: background .2s;
}
.tech-spec:hover { background: rgba(77,200,212,.06); }
.tech-spec-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.38);
  margin-bottom: 7px;
}
.tech-spec-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -.01em;
}
.tech-list { list-style: none; margin-top: 36px; }
.tech-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 14.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.tech-list li:last-child { border-bottom: none; }
.tech-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq { padding: 108px 0; background: var(--bg-light); }
.faq-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 88px;
  align-items: start;
}
.faq-aside { position: sticky; top: 100px; }
.faq-aside h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--dark);
  margin-bottom: 18px;
}
.faq-aside h2 em { font-style: normal; color: var(--teal-dark); }
.faq-aside p { font-size: 16px; color: var(--gray); line-height: 1.72; margin-bottom: 32px; }

.faq-item { border-bottom: 1px solid rgba(0,0,0,.08); }
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,.08); }
.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color .2s;
  font-family: var(--font);
}
.faq-btn:hover { color: var(--teal-dark); }
.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .25s ease;
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--teal-dark);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  padding-bottom: 22px;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ── CTA SECTION (base) ──────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section .section-label { color: rgba(255,255,255,.7); }
.cta-section .section-label::before { display: none; }

/* Contact bar at bottom of CTA */
.contact-bar {
  background: rgba(0,0,0,.25);
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 72px;
  padding: 40px 0;
}
.contact-bar-inner {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  text-decoration: none;
  transition: color .2s;
}
.contact-item:hover { color: var(--teal); }
.contact-item-icon {
  width: 42px;
  height: 42px;
  background: rgba(77,200,212,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.contact-item-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.40);
  display: block;
  margin-bottom: 2px;
}
.contact-item-value {
  font-weight: 600;
  color: #fff;
  font-size: 15px;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ELEMENTOR NATIVE WIDGET POLISH
   Targets Elementor's generated structure for all non-hero sections
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Stats Bar ────────────────────────────────────────────────────────────── */
.e-con.stats-section {
  border-top: 1px solid rgba(77,200,212,.12) !important;
  border-bottom: 1px solid rgba(77,200,212,.12) !important;
}
/* Divider between stat columns */
.e-con.stats-section .e-con.stat-col:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.06);
}
/* Hover glow per stat */
.e-con.stats-section .e-con.stat-col {
  transition: background .3s;
}
.e-con.stats-section .e-con.stat-col:hover {
  background: rgba(77,200,212,.04) !important;
}

/* ── Science Section: heading widget margin fix ───────────────────────────── */
.elementor-widget-heading .elementor-heading-title { line-height: 1.1; }
.elementor-widget-heading .elementor-heading-title em { font-style: normal; }

/* ── Benefit Cards ────────────────────────────────────────────────────────── */
/* 3-per-row: last col in a 3-col row may be 34% — still looks right */
.e-con.benefit-card {
  height: 100%;
  box-sizing: border-box;
}
/* Icon wrapper spacing */
.e-con.benefit-card .elementor-widget-text-editor:first-child .elementor-widget-container p {
  line-height: 1;
  margin: 0;
}

/* ── Conditions: guide card grid links ────────────────────────────────────── */
/* The guide cards live inside a w_text() widget — target their inline div */
.elementor-widget-text-editor a[href] {
  text-decoration: none;
}

/* ── Facility Gallery — 2 native Elementor rows (no CSS grid hacks) ─────────── */

/* ── Row A: Full-width panoramic ── */
/* Remove default container padding so image fills edge-to-edge */
.e-con.facility-panoramic-row > .e-con-inner {
  max-width: 100% !important;
  padding: 0 !important;
}
/* Column container: no padding, overflow hidden for zoom */
.e-con.facility-panoramic-row .e-con {
  padding: 0 !important;
  overflow: hidden !important;
}
/* Widget containers: full-width block */
.e-con.facility-panoramic-row .elementor-widget-image,
.e-con.facility-panoramic-row .elementor-widget-image .elementor-widget-container,
.e-con.facility-panoramic-row .elementor-widget-image figure {
  width: 100% !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0;
}
/* Panoramic image: tall cinematic banner */
.e-con.facility-panoramic-row .elementor-widget-image img {
  width: 100% !important;
  height: 340px !important;
  object-fit: cover !important;
  object-position: center 48% !important;
  display: block !important;
  transition: transform .9s ease;
}
.e-con.facility-panoramic-row .elementor-widget-image:hover img {
  transform: scale(1.025);
}

/* ── Row B: Two chambers side-by-side ── */
.e-con.facility-chambers-row > .e-con-inner {
  max-width: 100% !important;
  padding: 0 !important;
}
/* Column containers: no padding, overflow hidden */
.e-con.facility-chambers-row .e-con {
  padding: 0 !important;
  overflow: hidden !important;
}
/* Widget containers: full-width */
.e-con.facility-chambers-row .elementor-widget-image,
.e-con.facility-chambers-row .elementor-widget-image .elementor-widget-container,
.e-con.facility-chambers-row .elementor-widget-image figure {
  width: 100% !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0;
}
/* Chamber images: slightly taller than panoramic for visual weight at bottom */
.e-con.facility-chambers-row .elementor-widget-image img {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  transition: transform .6s ease;
}
.e-con.facility-chambers-row .elementor-widget-image:hover img {
  transform: scale(1.04);
}
/* Thin teal gap row between panoramic and chambers (visual separator) */
.e-con.facility-chambers-row {
  margin-top: 3px;
}

/* ── Facility Accred Strip ────────────────────────────────────────────────── */
.e-con.facility-accred-strip .e-con.accred-col:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.06);
}
.e-con.facility-accred-strip .e-con.accred-col {
  transition: background .2s;
}
.e-con.facility-accred-strip .e-con.accred-col:hover {
  background: rgba(77,200,212,.06) !important;
}

/* ── Technology: icon list styled like original .tech-list ───────────────── */
.technology .elementor-widget-icon-list .elementor-icon-list-items {
  list-style: none !important;
  margin-top: 8px;
}
.technology .elementor-widget-icon-list .elementor-icon-list-item {
  padding: 13px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,.05) !important;
  display: flex !important;
  align-items: flex-start !important;
}
.technology .elementor-widget-icon-list .elementor-icon-list-item:last-child {
  border-bottom: none !important;
}
.technology .elementor-widget-icon-list .elementor-icon-list-text {
  font-size: 14px !important;
  color: rgba(255,255,255,.65) !important;
  line-height: 1.55 !important;
}
.technology .elementor-widget-icon-list .elementor-icon-list-icon {
  color: var(--teal) !important;
  min-width: 22px;
  margin-top: 1px;
}
.technology .elementor-widget-icon-list .elementor-icon-list-icon i {
  color: var(--teal) !important;
  font-size: 13px !important;
}

/* Technology specs text widget — inherits inline styles, add teal left border */
.technology .elementor-widget-text-editor:nth-child(4) .elementor-widget-container {
  border-left: 2px solid rgba(77,200,212,.2);
  padding-left: 0;
}

/* ── Process Steps ────────────────────────────────────────────────────────── */
/* Connecting line between step circles */
.e-con.process-steps-row {
  position: relative !important;
  overflow: visible !important;
}
.e-con.process-steps-row > .e-con-inner {
  position: relative;
}
.e-con.process-steps-row > .e-con-inner::before {
  content: '';
  position: absolute;
  top: 70px; /* center of 60px circle + 40px top padding */
  left: calc(12.5% + 30px);
  right: calc(12.5% + 30px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-dark) 100%);
  opacity: .2;
  z-index: 0;
  pointer-events: none;
}
/* Step deco: center everything */
.process-step-deco {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-bottom: 4px;
}
/* Column hover: trigger circle colour change */
.e-con.process-steps-row .e-con:hover .step-circle {
  background: var(--teal-dark);
  color: #fff;
  box-shadow: 0 0 0 12px rgba(0,128,129,.12);
}
/* Step heading + text centering inside native widgets */
.e-con.process-steps-row .elementor-widget-heading .elementor-heading-title {
  text-align: center;
}
.e-con.process-steps-row .elementor-widget-text-editor p {
  text-align: center;
}

/* ── FAQ Section ──────────────────────────────────────────────────────────── */
/* Elementor accordion: better spacing */
.elementor-accordion .elementor-tab-title {
  padding: 20px 4px !important;
  font-size: 15.5px !important;
}
.elementor-accordion .elementor-tab-content {
  padding: 0 4px 18px !important;
  font-size: 15px !important;
  line-height: 1.72 !important;
}
.elementor-accordion-icon { color: var(--teal) !important; }
/* Conditions sidebar sticky */
.e-con.conditions-sidebar {
  position: sticky;
  top: 88px;
}

/* ── CTA Banner ───────────────────────────────────────────────────────────── */
/* Native contact item columns — centre the icon/label/value stack */
.elementor-element.cta-contact-item .elementor-widget-container,
.elementor-element.cta-contact-item .elementor-widget-container > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}
.elementor-element.cta-contact-item .contact-item-icon {
  margin: 0 auto 4px;
}

/* Trust badge text widget — centre the pill */
.elementor-element.trust-badge .elementor-widget-container {
  display: flex !important;
  justify-content: center;
  width: 100%;
}
.elementor-element.trust-badge .elementor-widget-container p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  white-space: nowrap;
  margin: 0;
}

/* ── Elementor Button Widget Global Polish ────────────────────────────────── */
.elementor-widget-button .elementor-button {
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease !important;
  letter-spacing: .01em;
}
.elementor-widget-button .elementor-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,.2) !important;
}

/* ── Section label on Elementor: block wrapper stays block, inner is flex ─── */
/* (already set above — ensuring margin-bottom collapses correctly) */
.elementor-element.section-label {
  display: block;
  margin-bottom: 0;
}
.elementor-element.section-label .elementor-widget-container {
  margin-bottom: 18px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DESIGN UPGRADE — HIGH-TECH MEDICAL AESTHETIC
   Clinical precision + advanced technology. All Elementor-native targeting.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Stats Bar: condensed precision numerics ────────────────────────────── */
/* Impact is a system font that gives monumental, condensed numbers even without webfont */
.elementor-element.stat-value .elementor-heading-title {
  font-family: 'Barlow Condensed', 'Impact', 'Arial Narrow', Arial, sans-serif !important;
  font-weight: 800 !important;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  letter-spacing: -0.04em !important;
  text-shadow: 0 0 28px rgba(77,200,212,.75), 0 0 80px rgba(77,200,212,.35);
}
/* Vertical rule between stat columns */
.e-con.stats-section .e-con.stat-col {
  position: relative;
}
.e-con.stats-section .e-con.stat-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%;
  width: 1px;
  background: rgba(77,200,212,.12);
}

/* ── Benefit Cards: icon circle ────────────────────────────────────────── */
.elementor-element.benefit-icon-wrap .elementor-widget-container {
  width: 54px;
  height: 54px;
  background: rgba(77,200,212,.10);
  border-radius: 14px;
  border: 1px solid rgba(77,200,212,.15);
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.elementor-element.benefit-icon-wrap .elementor-widget-container p {
  font-size: 1.6rem !important;
  line-height: 1 !important;
  margin: 0 !important;
}
/* Top accent line on hover */
.e-con.benefit-card {
  position: relative;
}
.e-con.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity .4s ease;
  border-radius: 1px;
}
.e-con.benefit-card:hover::before {
  opacity: 0.6;
}

/* ── Science Section: atmospheric right-column tint ────────────────────── */
.e-con.science-section {
  position: relative;
  overflow: hidden;
}
.e-con.science-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(0,128,129,.04) 100%);
  pointer-events: none;
}
/* About-feature description text */
.about-feature-text span {
  display: block;
  font-weight: 400;
  color: #6b7280;
  font-size: 12.5px;
  margin-top: 3px;
  line-height: 1.5;
}
/* About-feature title bold */
.about-feature-text strong {
  font-size: 13.5px;
  color: var(--teal-dark);
}

/* ── Process Steps: fix w_text centering + container hover ────────────── */
.e-con.process-steps-row .e-con {
  position: relative;
}
.e-con.process-steps-row .elementor-widget-text-editor:first-child
  .elementor-widget-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* Step number glow on hover — triggers via container hover on .step-circle */
.e-con.process-steps-row .e-con:hover .step-circle {
  box-shadow: 0 0 0 14px rgba(77,200,212,.10), 0 0 32px rgba(77,200,212,.25);
}

/* ── Technology Section: subtle measurement grid ───────────────────────── */
.e-con.technology {
  position: relative;
  overflow: hidden;
}
.e-con.technology::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(77,200,212,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,200,212,.055) 1px, transparent 1px);
  background-size: 48px 48px;
}
.e-con.technology > .e-con-inner {
  position: relative;
  z-index: 1;
}

/* ── Section edge: clinical separators ─────────────────────────────────── */
/* science-section border removed — use Elementor built-in styling */
.e-con.stats-section {
  border-bottom: 1px solid rgba(77,200,212,.08) !important;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.e-con.stats-section > .e-con-inner {
  position: relative;
  z-index: 1;
}
/* CTA section: teal accent handled by column edge glow now */

/* ── Symptoms box + OHIP note (indication pages) ───────────────────────── */
.symptoms-box {
  background: #f8fafa;
  border-radius: 16px;
  padding: 28px;
  border: 1.5px solid rgba(79,197,211,.18);
}
.symptoms-box-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.symptoms-box-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}
.ohip-note {
  background: #e8f6f5;
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 20px;
}
.ohip-note strong {
  color: var(--teal-accent);
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}
.ohip-note p {
  color: #374151;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ── CTA Contact Columns ───────────────────────────────────────────────── */
.elementor-element.cta-contact-item .elementor-widget-container,
.elementor-element.cta-contact-item .elementor-widget-container > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 0 8px;
  color: inherit;
  text-decoration: none;
  transition: transform .25s ease;
}
.elementor-element.cta-contact-item .elementor-widget-container:hover,
.elementor-element.cta-contact-item .elementor-widget-container > a:hover {
  transform: translateY(-2px);
}
.elementor-element.cta-contact-item .contact-item-icon {
  margin: 0 auto 8px;
  background: rgba(77,200,212,.10);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(77,200,212,.15);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.elementor-element.cta-contact-item .elementor-widget-container:hover .contact-item-icon,
.elementor-element.cta-contact-item .elementor-widget-container > a:hover .contact-item-icon {
  box-shadow: 0 0 24px rgba(77,200,212,.20);
  border-color: rgba(77,200,212,.35);
}
.elementor-element.cta-contact-item .contact-item-label {
  color: rgba(255,255,255,.38);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.elementor-element.cta-contact-item .contact-item-value {
  font-size: 14px;
  color: rgba(255,255,255,.88);
}
.elementor-element.cta-contact-item .contact-item-value a:hover {
  color: #4DC8D4 !important;
}
/* Divider between contact columns */
.e-con.cta-section .e-con:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.08);
}

/* Gallery CSS consolidated above — see Facility Gallery block */
/* Accred strip on dark: column dividers in lighter teal */
.e-con.facility-accred-strip .e-con.accred-col:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.06);
}
.e-con.facility-accred-strip .e-con.accred-col {
  transition: background .2s;
}
.e-con.facility-accred-strip .e-con.accred-col:hover {
  background: rgba(77,200,212,.06) !important;
}

/* ── Process section: teal-white tint separates it from plain-white sections */
.e-con.process-steps-row > .e-con-inner::before {
  opacity: .55;  /* make the connector line clearly visible */
}

/* ── Benefit cards: defined dark cards with teal border at rest ──────────── */
.e-con.benefit-card {
  box-shadow: 0 0 30px rgba(0,0,0,.12), inset 0 1px 0 rgba(77,200,212,.08);
}
.e-con.benefit-card:hover {
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(77,200,212,.40) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,.25), 0 0 0 1px rgba(77,200,212,.15);
  transform: translateY(-4px);
}

/* ── Accordion: clinical precision borders ──────────────────────────────── */
.elementor-accordion .elementor-tab-title {
  border-bottom: 1px solid rgba(0,0,0,.07) !important;
  letter-spacing: .005em;
}
.elementor-accordion .elementor-tab-title.elementor-active {
  color: var(--teal-dark) !important;
  border-bottom-color: var(--teal) !important;
}
.elementor-accordion-icon-closed svg,
.elementor-accordion-icon-opened svg { color: var(--teal) !important; }

/* ── Accreditation icon: monogram badge on dark strip ───────────────────── */
.elementor-element.accred-icon .elementor-widget-container {
  width: 62px;
  height: 62px;
  background: rgba(77,200,212,.14);
  border: 2px solid rgba(77,200,212,.50);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 28px rgba(77,200,212,.18), inset 0 0 12px rgba(77,200,212,.06);
  transition: background .25s, box-shadow .25s, border-color .25s;
}
/* 2-letter monogram: Barlow Condensed — cross-platform, legible, consistent */
.elementor-element.accred-icon .elementor-widget-container p {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  margin: 0 !important;
  line-height: 1 !important;
  color: #4DC8D4 !important;
}
.e-con.accred-col:hover .elementor-element.accred-icon .elementor-widget-container {
  background: rgba(77,200,212,.22);
  border-color: rgba(77,200,212,.70);
  box-shadow: 0 0 48px rgba(77,200,212,.35), inset 0 0 16px rgba(77,200,212,.10);
}

/* ── Facility header: subtle atmospheric depth ─────────────────────────── */
.e-con.facility-header-row {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(77,200,212,.1);
}
.e-con.facility-header-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 180% at 90% 50%, rgba(0,128,129,.08) 0%, transparent 55%),
    radial-gradient(ellipse 55% 70% at 5% 95%, rgba(77,200,212,.05) 0%, transparent 50%);
  pointer-events: none;
}
.e-con.facility-header-row > .e-con-inner {
  position: relative;
  z-index: 1;
}

/* ── Science section: dark image column treatment ───────────────────────── */
/* Remove overflow:hidden so .about-image-card can float at edge */
.e-con.science-section {
  overflow: visible !important;
}
.e-con.science-section .e-con:first-child .about-image-main {
  box-shadow: 0 24px 64px rgba(0,0,0,.65), 0 0 0 1px rgba(77,200,212,.18);
  border-radius: 16px;
}
/* Ensure image card stays visible on dark column */
.e-con.science-section .about-image-card {
  background: #111722 !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.5), 0 0 0 1px rgba(77,200,212,.2);
}

/* ── Process: unified section — chambers bg with all content overlaid ───── */
.e-con.process-section {
  position: relative;
  overflow: hidden;
  /* Background image + overlay now controlled via Elementor native settings */
}
.e-con.process-section > .e-con-inner {
  position: relative;
  z-index: 1;
}

/* ── Process step grid — 4 glass cards in a row ────────────────────────── */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
/* Process cards as Elementor containers */
.e-con.process-card {
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .3s, border-color .3s, box-shadow .3s, transform .3s;
}
.e-con.process-card:hover {
  background: rgba(77,200,212,.07);
  border-color: rgba(77,200,212,.35);
  box-shadow: 0 0 40px rgba(77,200,212,.08), 0 8px 32px rgba(0,0,0,.25);
  transform: translateY(-3px);
}

/* Step circle: teal ring with number */
.e-con.process-card .step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #4DC8D4;
  background: rgba(77,200,212,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Barlow Condensed', 'DM Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #4DC8D4;
  letter-spacing: -0.02em;
  box-shadow: 0 0 0 8px rgba(77,200,212,.10), 0 0 24px rgba(77,200,212,.22);
  transition: box-shadow .3s;
}
.e-con.process-card:hover .step-circle {
  box-shadow: 0 0 0 12px rgba(77,200,212,.14), 0 0 44px rgba(77,200,212,.40);
}

/* Duration badge */
.e-con.process-card .step-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(77,200,212,.10);
  border: 1px solid rgba(77,200,212,.22);
  color: #4DC8D4;
  border-radius: 999px;
  padding: 3px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 20px;
}
.step-dur-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4DC8D4;
  box-shadow: 0 0 5px rgba(77,200,212,.7);
}

/* Step title and description */
.process-card .step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.3;
}
.process-card .step-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,.48);
  line-height: 1.65;
  margin: 0;
}

/* ── Mobile: 2-col then 1-col ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .process-steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .process-steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .e-con.process-card { padding: 28px 20px !important; }
}

/* ── Benefits glows: stronger ambient light ─────────────────────────────── */
.benefits-glow-1 {
  background: radial-gradient(circle, rgba(77,200,212,.13) 0%, transparent 65%) !important;
}
.benefits-glow-2 {
  background: radial-gradient(circle, rgba(0,128,129,.13) 0%, transparent 65%) !important;
}

/* ── Stat columns: measurement tick-mark top accent ─────────────────────── */
.e-con.stats-section .e-con.stat-col {
  border-top: 2px solid transparent;
  transition: border-top-color .3s, background .3s;
}
.e-con.stats-section .e-con.stat-col:hover {
  border-top-color: rgba(77,200,212,.45) !important;
  background: rgba(77,200,212,.06) !important;
}

/* ── Conditions sidebar heading: teal left rule ─────────────────────────── */
.e-con.conditions-sidebar .elementor-widget-heading .elementor-heading-title {
  border-left: 3px solid var(--teal);
  padding-left: 18px;
  margin-left: -21px;
}

/* === TECHNOLOGY: Chamber image + gauge overlay redesign === */

/* Image card with gauge overlay */
.tech-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.tech-image img {
  width: 100% !important;
  height: 580px !important;
  object-fit: cover !important;
  object-position: center 20% !important;
  display: block;
  border-radius: 20px !important;
  box-shadow:
    0 0 0 1px rgba(77,200,212,.2),
    0 0 80px rgba(77,200,212,.18),
    0 32px 80px rgba(0,0,0,.8) !important;
  transition: transform .9s ease, box-shadow .6s ease !important;
}
.tech-image:hover img {
  transform: scale(1.025) !important;
  box-shadow:
    0 0 0 1px rgba(77,200,212,.38),
    0 0 120px rgba(77,200,212,.3),
    0 32px 80px rgba(0,0,0,.8) !important;
}

/* Bottom vignette so gauge reads clearly over the image */
.tech-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(9,12,12,.75) 0%, transparent 100%);
  pointer-events: none;
  border-radius: 0 0 20px 20px;
  z-index: 1;
}

/* Dive dials: 3-up row below chamber image */
.dive-dials-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  position: relative;
  z-index: 2;
}
.dive-dial {
  flex: 0 0 auto;
  width: 140px;
  height: 140px;
  background: rgba(8,12,12,.85);
  border: 1px solid rgba(77,200,212,.10);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  position: relative;
  transition: border-color .4s ease, box-shadow .4s ease, transform .4s ease;
  backdrop-filter: blur(6px);
}
.dive-dial svg {
  width: 100%;
  height: 100%;
}
.dive-dial:hover {
  border-color: rgba(77,200,212,.30);
  box-shadow: 0 0 24px rgba(77,200,212,.18), 0 0 6px rgba(77,200,212,.35);
  transform: translateY(-2px);
}
/* Animate the arc fill on scroll */
.dive-dial .dial-arc {
  transition: stroke-dashoffset 1.8s cubic-bezier(.16,1,.3,1);
}
/* Glow under each dial */
.dive-dial::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 15%; right: 15%; height: 12px;
  background: radial-gradient(ellipse at center, rgba(77,200,212,.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
@media (max-width: 767px) {
  .dive-dials-row { gap: 10px !important; justify-content: center !important; }
  .dive-dial {
    flex: 1 1 0 !important;
    width: auto !important;
    max-width: 130px !important;
    height: auto !important;
    aspect-ratio: 1 !important;
    border-radius: 12px !important;
    padding: 8px !important;
  }
  .tech-image img {
    height: 320px !important;
    object-position: 65% center !important;
  }
}

/* Ambient teal glow rising below the image column */
.e-con.technology .e-con.tech-image-col {
  position: relative;
}
.e-con.technology .e-con.tech-image-col::after {
  content: '';
  position: absolute;
  bottom: -20px; left: -40px; right: -40px;
  height: 40%;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(77,200,212,.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Content column: subtle teal radial spotlight */
.e-con.technology .e-con.tech-content-col {
  background:
    radial-gradient(ellipse 70% 60% at 10% 40%, rgba(77,200,212,.045) 0%, transparent 70%) !important;
}

/* ── Tech spec cards: teal instrument readout panels ─────────────────────── */
.tech-spec-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(77,200,212,.2);
  border-radius: 10px;
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tech-spec-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(77,200,212,.7) 50%, transparent);
}
.tech-spec-card:hover {
  background: rgba(77,200,212,.07);
  border-color: rgba(77,200,212,.4);
  transform: translateY(-2px);
}
.tech-spec-card-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #4DC8D4;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  line-height: 1;
}
.tech-spec-card-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  letter-spacing: .15em;
  line-height: 1.3;
}

/* ── Responsive fixes ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Tablet: proportionally reduce gallery heights */
  .e-con.facility-panoramic-row .elementor-widget-image img { height: 260px !important; }
  .e-con.facility-chambers-row .elementor-widget-image img { height: 230px !important; }
}
@media (max-width: 767px) {
  /* Stats bars: keep side-by-side on mobile, just shrink text */
  .e-con.stats-section > .e-con-inner {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
  }
  .e-con.stats-section .e-con.stat-col {
    width: auto !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
    padding: 16px 8px !important;
  }
  .e-con.stats-section .e-con.stat-col:not(:last-child)::after {
    display: block;
    top: 25%; height: 50%;
  }
  .e-con.stats-section .e-con.stat-col .elementor-heading-title {
    font-size: 24px !important;
  }
  .e-con.stats-section .e-con.stat-col .elementor-widget-text-editor {
    font-size: 10px !important;
  }
  /* Benefits stats row: 2x2 grid on mobile */
  .e-con.benefits-stats-row > .e-con-inner {
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }
  .e-con.benefits-stats-row .e-con.benefits-stat-col {
    width: 50% !important;
    flex: 0 0 50% !important;
    min-width: 0 !important;
    padding: 16px 6px !important;
  }
  .e-con.benefits-stats-row .e-con.benefits-stat-col .elementor-heading-title {
    font-size: 22px !important;
  }
  .e-con.benefits-stats-row .e-con.benefits-stat-col .elementor-widget-text-editor {
    font-size: 9px !important;
  }
  /* Mobile: both gallery images stack to uniform height */
  .e-con.facility-panoramic-row .elementor-widget-image img { height: 220px !important; }
  .e-con.facility-chambers-row .elementor-widget-image img { height: 200px !important; }
  /* Chambers stack vertically on mobile */
  .e-con.facility-chambers-row .e-con { width: 100% !important; }
  .e-con.process-steps-row > .e-con-inner::before { display: none; }
  .elementor-element.trust-badge .elementor-widget-container p { white-space: normal; }
  .e-con.cta-section .e-con:not(:last-child) {
    border-right: none; border-bottom: 1px solid rgba(255,255,255,.08);
  }
}

/* ============================================================
   CONDITIONS SECTION — Dark/Light Editorial Split Redesign
   ============================================================ */

/* "14" — monumental Barlow Condensed display stat */
.conditions-count {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 6.5rem;
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.03em;
  color: #4DC8D4;
  margin-bottom: 10px;
}

/* Dark sidebar panel — molecular network Nano Banana bg */
.e-con.conditions-sidebar {
  position: sticky !important;
  top: 88px;
  /* Background image + overlay now controlled via Elementor native settings */
}

/* Right column — enforce light teal bg */
.e-con.conditions-right-col {
  background: #e8f3f2 !important;
}

/* Condition guide card grid */
.cgl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Individual guide card — numbered, no emoji */
.cgl-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.85);
  border: 1.5px solid rgba(0,128,129,.14);
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.cgl-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(77,200,212,.6) 50%, transparent);
  opacity: 0;
  transition: opacity .25s;
}
.cgl-card:hover {
  border-color: #4DC8D4;
  background: rgba(255,255,255,.97);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,128,129,.14);
}
.cgl-card:hover::after { opacity: 1; }

/* Number badge — Barlow Condensed teal */
.cgl-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #4DC8D4;
  letter-spacing: -0.02em;
  line-height: 1;
  min-width: 22px;
  flex-shrink: 0;
  opacity: .7;
}
.cgl-card:hover .cgl-num { opacity: 1; }

.cgl-body { flex: 1; min-width: 0; }
.cgl-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--teal-accent);
  margin-bottom: 2px;
  line-height: 1.3;
}
.cgl-desc {
  font-size: .72rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Arrow indicator */
.cgl-arrow {
  font-size: .9rem;
  color: rgba(0,128,129,.35);
  flex-shrink: 0;
  transition: transform .2s, color .2s;
}
.cgl-card:hover .cgl-arrow {
  color: var(--teal-accent);
  transform: translateX(4px);
}

/* Condition tag cloud */
.conditions-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.cond-tag {
  display: inline-block;
  padding: 7px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  border: 1.5px solid rgba(0,128,129,.22);
  background: rgba(255,255,255,.75);
  color: var(--teal-accent);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  backdrop-filter: blur(4px);
}
.cond-tag:hover {
  background: var(--teal-accent);
  color: #fff;
  border-color: var(--teal-accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,128,129,.2);
}

/* ============================================================
   SCIENCE SECTION — Cinematic photo + dark data panel redesign
   ============================================================ */

/* Facility image: fill dark column, full height, slight hover zoom */
.sci-facility-img {
  width: 100% !important;
  height: 580px !important;
  object-fit: cover !important;
  object-position: center 20% !important;
  border-radius: 18px !important;
  display: block;
  transition: transform .9s ease !important;
}
.about-image-wrap:hover .sci-facility-img {
  transform: scale(1.025);
}

/* Badge card — upgraded from inline styles */
.sci-image-badge {
  position: absolute;
  bottom: 20px;
  left: 0; right: 0;
  margin: 0 20px;
  background: rgba(7,13,13,.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(77,200,212,.25);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.sci-badge-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #4DC8D4;
  letter-spacing: -0.01em;
  line-height: 1;
}
.sci-badge-sub {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}

/* ── O₂ Data Panel — dark glass "clinical readout" ───────────────────────── */
.sci-o2-panel {
  background: #0b1414;
  border: 1px solid rgba(77,200,212,.2);
  border-radius: 14px;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
}
.sci-o2-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(77,200,212,.6) 50%, transparent);
}
.sci-o2-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #4DC8D4;
  margin-bottom: 18px;
}
.sci-o2-line {
  display: block;
  width: 18px;
  height: 2px;
  background: #4DC8D4;
  border-radius: 2px;
  flex-shrink: 0;
}
.sci-o2-badge {
  margin-left: auto;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  background: rgba(77,200,212,.15);
  color: #4DC8D4;
  border: 1px solid rgba(77,200,212,.3);
  padding: 3px 8px;
  border-radius: 50px;
}
.sci-o2-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.sci-o2-row:last-child { margin-bottom: 0; }
.sci-o2-label {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  width: 160px;
  flex-shrink: 0;
}
.sci-label-hbot { color: #4DC8D4 !important; font-weight: 600 !important; }
.sci-o2-track {
  flex: 1;
  height: 10px;
  background: rgba(255,255,255,.06);
  border-radius: 5px;
  overflow: hidden;
}
.sci-o2-bar {
  height: 100%;
  border-radius: 5px;
  transition: width 1s ease;
}
.sci-bar-normal {
  background: rgba(156,163,175,.4);
}
.sci-bar-hbot {
  background: linear-gradient(90deg, #008081, #4DC8D4);
  box-shadow: 0 0 14px rgba(77,200,212,.5);
}
.sci-o2-value {
  font-size: 11.5px;
  font-weight: 700;
  width: 75px;
  text-align: right;
  flex-shrink: 0;
  color: rgba(255,255,255,.4);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .02em;
}
.sci-val-hbot { color: #4DC8D4 !important; }

/* ── Mechanism cards — teal dot + text, no emoji ─────────────────────────── */
.sci-mechanisms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sci-mechanism {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f0fafa;
  border: 1px solid rgba(0,128,129,.12);
  border-radius: 10px;
  padding: 14px 16px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.sci-mechanism:hover {
  background: #e2f4f4;
  border-color: rgba(0,128,129,.25);
  transform: translateY(-1px);
}
.sci-mech-dot {
  width: 8px;
  height: 8px;
  background: #4DC8D4;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
  box-shadow: 0 0 8px rgba(77,200,212,.6);
}
.sci-mech-title {
  font-size: .8rem;
  font-weight: 700;
  color: var(--teal-accent);
  margin-bottom: 3px;
  line-height: 1.3;
}
.sci-mech-desc {
  font-size: .72rem;
  color: #6b7280;
  line-height: 1.45;
}

/* ── Benefits Section — Dark Header + Stats / White Cards ───────────────── */

/* Header row: DARK bg, cells image glows at 22% opacity */
/* ── Benefits section — unified with two-chambers background ────────── */
.e-con.benefits-section {
  position: relative;
  overflow: hidden;
  /* Background image + overlay now controlled via Elementor native settings */
}
.e-con.benefits-section > .e-con-inner {
  position: relative;
  z-index: 1;
}

/* ── FAQ Section — Light Theme ──────────────────────────────────────────────
   Off-white section with categorized two-level accordion and search.
   Provides visual relief between dark process and dark CTA sections.
   ───────────────────────────────────────────────────────────────────────── */
/* ── FAQ Section — Categorized Accordion ────────────────────────────────── */

/* === FAQ Content Section === */
.e-con.faq-content-section {
  position: relative;
}
/* Gradient bridge: dark process section (#111111) → light FAQ (#F6F8F8) */
.e-con.faq-content-section::before {
  content: '';
  position: absolute;
  top: -48px; left: 0; right: 0;
  height: 48px;
  background: linear-gradient(to bottom, #111111, #F6F8F8);
  pointer-events: none;
  z-index: 2;
}

/* Hub container */
.faq-hub {
  max-width: 880px;
  margin: 0 auto;
}

/* Search bar */
.faq-hub .faq-search-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto 36px;
}
.faq-hub .faq-search {
  width: 100%;
  padding: 14px 44px 14px 20px;
  border: 1.5px solid rgba(0,128,129,.15);
  border-radius: 999px;
  background: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #111111;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.faq-hub .faq-search:focus {
  border-color: #008081;
  box-shadow: 0 0 0 4px rgba(77,200,212,.10);
}
.faq-hub .faq-search::placeholder { color: #9CA3AF; }
.faq-hub .faq-search-icon {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  color: #9CA3AF;
  pointer-events: none;
}
.faq-hub .faq-no-results {
  text-align: center;
  font-size: 15px;
  color: #6B7280;
  font-style: italic;
  padding: 24px 0;
}

/* Category list */
.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Category card */
.faq-category {
  background: #ffffff;
  border-radius: 14px;
  border: 1.5px solid rgba(0,128,129,.08);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-category:hover {
  border-color: rgba(0,128,129,.16);
}
.faq-category.open {
  border-color: rgba(0,128,129,.22);
  box-shadow: 0 4px 24px rgba(0,128,129,.06);
}

/* Category header button */
.faq-cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-align: left;
  white-space: normal;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition: background .2s;
}
.faq-cat-header:focus-visible { box-shadow: 0 0 0 2px rgba(0,128,129,.3) inset; }
.faq-cat-header:hover { background: rgba(0,128,129,.02); }

/* Category icon circle */
.faq-cat-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,128,129,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #008081;
  transition: background .25s, color .25s;
}
.faq-cat-icon svg { width: 22px; height: 22px; }
.faq-category.open .faq-cat-icon {
  background: #008081;
  color: #ffffff;
}

/* Category name + count */
.faq-cat-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.faq-cat-name {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  letter-spacing: -0.01em;
}
.faq-cat-count {
  font-size: 13px;
  color: #9CA3AF;
  font-weight: 400;
}

/* Category chevron */
.faq-cat-chevron {
  flex-shrink: 0;
  color: #9CA3AF;
  transition: transform .3s ease, color .3s;
  display: flex;
}
.faq-category.open .faq-cat-chevron {
  transform: rotate(180deg);
  color: #008081;
}

/* Category body (collapsible) */
.faq-cat-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-category.open .faq-cat-body {
  max-height: 5000px;
}

/* Question items */
.faq-item { border-top: 1px solid rgba(0,128,129,.06); }
.faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px 16px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-align: left;
  white-space: normal;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition: background .15s;
}
.faq-q:focus-visible { box-shadow: 0 0 0 2px rgba(0,128,129,.3) inset; }
.faq-q:hover { background: rgba(0,128,129,.02); }
.faq-q-text {
  flex: 1;
  min-width: 0;  /* critical: allow flex text to shrink and wrap */
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  line-height: 1.5;
  transition: color .15s;
}
.faq-item.open .faq-q {
  background: rgba(234,247,247,.5);
}
.faq-item.open .faq-q-text {
  color: #008081;
  font-weight: 600;
}
.faq-q-icon {
  flex-shrink: 0;
  color: #4DC8D4;
  transition: transform .3s ease;
  display: flex;
}
.faq-item.open .faq-q-icon {
  transform: rotate(45deg);
  color: #008081;
}

/* Answer (collapsible) */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-a {
  max-height: 400px;
}
.faq-a p {
  padding: 0 24px 20px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  line-height: 1.72;
  color: #6B7280;
  margin: 0;
}

/* === Mobile Responsive === */
@media (max-width: 767px) {
  .e-con.faq-content-section::before { height: 32px; top: -32px; }
  /* Reduce section padding on mobile to prevent text overflow */
  .e-con.faq-content-section > .e-con-inner > .e-con {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .faq-hub { padding: 0; }
  .faq-hub .faq-search-wrap { margin: 0 8px 28px; }
  .faq-categories { gap: 10px; }
  .faq-category { border-radius: 12px; }
  .faq-cat-header { padding: 16px 14px; gap: 10px; }
  .faq-cat-icon { width: 36px; height: 36px; border-radius: 10px; }
  .faq-cat-icon svg { width: 18px; height: 18px; }
  .faq-cat-name { font-size: 14.5px; }
  .faq-cat-count { font-size: 12px; }
  .faq-cat-chevron svg { width: 18px; height: 18px; }
  .faq-q { padding: 13px 14px 13px 16px; gap: 8px; }
  .faq-q-text { font-size: 13.5px; overflow-wrap: break-word; word-break: break-word; }
  .faq-q-icon svg { width: 14px; height: 14px; }
  .faq-a p { padding: 0 14px 16px 16px; font-size: 13px; }
}

/* ── CTA Hero Row — Premium Cinematic Split Layout ─────────────────────────
   Full-bleed clinic photo left with cinematic color grade + teal vignette,
   premium dark text panel right with glowing accent edge.
   ───────────────────────────────────────────────────────────────────────── */
.e-con.cta-hero-row {
  position: relative;
  overflow: hidden;
}
.e-con.cta-hero-row > .e-con-inner {
  position: relative;
  z-index: 2;
}
/* Ambient teal glow behind entire section */
.e-con.cta-hero-row::after {
  content: '';
  position: absolute;
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  width: 60%; height: 140%;
  background: radial-gradient(ellipse, rgba(77,200,212,.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Image column (left 48%) — cinematic full-bleed ────────────────────── */
.e-con.cta-image-col {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  /* height set by flex align-items:stretch on parent — do NOT use height:100% */
}
.e-con.cta-image-col > .elementor-widget {
  height: 100%;
}
.e-con.cta-image-col > .elementor-widget > .elementor-widget-container {
  height: 100%;
}
/* Full-bleed image container — stretches to full column height */
.cta-image-fill {
  position: relative;
  overflow: hidden;
  height: 100%;
}
/* Photo fills entire column — cinematic filter applied directly */
.cta-image-fill .cta-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(.78) contrast(1.15) saturate(.55);
}
/* Teal color grade overlay */
.cta-image-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,50,50,.28);
  mix-blend-mode: color;
  pointer-events: none;
  z-index: 1;
}
/* Cinematic gradients: right-edge fade + bottom fade + vignette */
.cta-image-fill::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 50%, rgba(3,61,61,.80) 100%),
    linear-gradient(to top, rgba(0,18,18,.85) 0%, transparent 28%),
    radial-gradient(ellipse at center, transparent 35%, rgba(0,12,12,.30) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Caption bar — glass blur with live indicator dot */
.cta-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  padding: 16px 24px;
  background: rgba(0,12,12,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(77,200,212,.15);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-caption-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4DC8D4;
  box-shadow: 0 0 8px rgba(77,200,212,.65);
  animation: cta-dot-pulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes cta-dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(77,200,212,.65); }
  50% { opacity: .45; box-shadow: 0 0 3px rgba(77,200,212,.25); }
}
.cta-caption-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #4DC8D4;
  letter-spacing: -0.01em;
}
.cta-caption-sep {
  color: rgba(255,255,255,.20);
  font-size: 14px;
}
.cta-caption-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.40);
}

/* ── Text column (right 52%) — premium dark panel with sign bg ──────────── */
.e-con.cta-text-col {
  position: relative;
  overflow: hidden;
}
/* Subtle sign background — heavily blurred abstract branded texture */
.e-con.cta-text-col::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: url('/wp-content/uploads/mm-assets/sign.png') center center / cover no-repeat;
  opacity: .045;
  filter: blur(16px) saturate(0.6);
  pointer-events: none;
  z-index: 0;
}
/* Glowing teal accent edge — vertical line where image meets text */
.e-con.cta-text-col::before {
  content: '';
  position: absolute;
  top: 12%; bottom: 12%;
  left: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, #4DC8D4 25%, #4DC8D4 75%, transparent);
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(77,200,212,.45), 0 0 28px rgba(77,200,212,.12);
  z-index: 5;
}
.e-con.cta-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Trust credential line — small caps at bottom of text column */
.cta-trust-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.30);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.cta-trust-dot {
  color: rgba(77,200,212,.35);
}

/* ── Mobile: stack image above text, hide accent edge ──────────────────── */
@media (max-width: 767px) {
  .cta-image-fill { min-height: 320px; }
  .cta-image-fill .cta-hero-img { min-height: 320px; object-position: center 85%; }
  .e-con.cta-text-col {
    padding: 48px 24px !important;
  }
  .e-con.cta-text-col::before { display: none; }
  .cta-trust-line { flex-wrap: wrap; justify-content: center; }
}

/* ── Ghost / outline button (CTA "Email Us") ──────────────────────────────── */
.elementor-element.btn-outline-white .elementor-button {
  background: transparent !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255,255,255,.3) !important;
  border-radius: 999px !important;
  transition: border-color .2s ease, background .2s ease, transform .2s ease !important;
}
.elementor-element.btn-outline-white .elementor-button:hover {
  border-color: rgba(77,200,212,.55) !important;
  background: rgba(77,200,212,.08) !important;
  transform: translateY(-1px) !important;
}

/* ── Trust badge SVG icons — ensure teal inline SVG displays correctly ───── */
.elementor-element.trust-badge .elementor-widget-container p svg {
  vertical-align: middle;
  flex-shrink: 0;
}

/* ── Contact icon circles — teal circle with SVG icon centered ────────────── */
.elementor-element.cta-contact-item .contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(77,200,212,.12) !important;
  border: 1.5px solid rgba(77,200,212,.3);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.elementor-element.cta-contact-item .contact-item-icon svg {
  display: block;
}
.elementor-element.cta-contact-item:hover .contact-item-icon {
  background: rgba(77,200,212,.2) !important;
  border-color: rgba(77,200,212,.55);
  box-shadow: 0 0 24px rgba(77,200,212,.2);
}

/* ── DESIGN POLISH: Noise/Grain Texture on Dark Sections ─────────────────── */
/* Adds subtle film grain for organic depth — uses ::after where ::before is taken */
.e-con.stats-section::after,
.e-con.benefits-header-row::after,
.e-con.benefits-stats-row::after,
.e-con.technology::after,
.e-con.process-section::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
/* Science section uses ::after for gradient, so use ::before for noise */
.e-con.science-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── DESIGN POLISH: Section Transition Gradients ──────────────────────────── */
/* Dark ticker → Light conditions: gradient fade bridge */
.e-con.benefits-ticker-row {
  position: relative;
}
.e-con.benefits-ticker-row::after {
  content: '';
  position: absolute;
  bottom: -48px; left: 0; right: 0;
  height: 48px;
  background: linear-gradient(to bottom, #0e1414, #e8f3f2);
  pointer-events: none;
  z-index: 2;
}

/* Conditions (light) → Technology (dark): gradient fade bridge */
.e-con.conditions-section {
  position: relative;
}
.e-con.conditions-section::after {
  content: '';
  position: absolute;
  bottom: -48px; left: 0; right: 0;
  height: 48px;
  background: linear-gradient(to bottom, #e8f3f2, #0d0f0f);
  pointer-events: none;
  z-index: 2;
}

/* ── DESIGN POLISH: Footer Upgrade — Visual Depth ────────────────────────── */
.mm-footer {
  border-top: 1px solid rgba(77,200,212,.15);
  position: relative;
  overflow: hidden;
}
.mm-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,200,212,.4) 50%, transparent);
  z-index: 1;
}

/* ── DESIGN POLISH: Hover Micro-interactions ──────────────────────────────── */
/* Condition tag pills: teal glow on hover */
.cond-tag {
  transition: box-shadow .25s ease, border-color .25s ease, transform .2s ease;
}
.cond-tag:hover {
  box-shadow: 0 0 20px rgba(77,200,212,.15);
  border-color: rgba(77,200,212,.4) !important;
  transform: translateY(-1px);
}

/* Footer nav links: teal color transition on hover */
.mm-footer__nav a {
  transition: color .2s ease;
}
.mm-footer__nav a:hover {
  color: #4DC8D4 !important;
}

/* Condition guide cards: subtle glow on hover */
.cgl-card {
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .2s ease;
}
.cgl-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,128,129,.08);
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* ── NEXT STEPS PAGE — Premium Redesign v2 ───────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════════════ */

/* ── Requirements Section (dark glass cards) ─────────────────────────────── */
.ns-requirements-section {
  position: relative;
  overflow: hidden;
}
.ns-requirements-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77,200,212,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,200,212,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}
.ns-requirements-section::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.ns-requirements-section > .e-con-inner { position: relative; z-index: 1; }

.ns-req-glow {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,200,212,.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.ns-requirements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

/* Glass card base — Elementor containers */
.e-con.ns-req-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(77,200,212,.14);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}
.e-con.ns-req-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4DC8D4, #008081);
  opacity: 1;
  z-index: 1;
}
.e-con.ns-req-card::after {
  content: '';
  position: absolute;
  top: -40px; left: 50%; transform: translateX(-50%);
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,200,212,.06) 0%, transparent 70%);
  pointer-events: none;
}
.e-con.ns-req-card:hover {
  background: rgba(77,200,212,.07);
  border-color: rgba(77,200,212,.35);
  box-shadow: 0 0 48px rgba(77,200,212,.08), 0 16px 48px rgba(0,0,0,.30);
  transform: translateY(-6px);
}

/* Urgent card (coral glass) */
.e-con.ns-req-card--urgent {
  border-color: rgba(213,86,85,.20);
}
.e-con.ns-req-card--urgent::before {
  background: linear-gradient(90deg, #D55655, #e87c7b);
}
.e-con.ns-req-card--urgent::after {
  background: radial-gradient(circle, rgba(213,86,85,.06) 0%, transparent 70%);
}
.e-con.ns-req-card--urgent:hover {
  background: rgba(213,86,85,.07);
  border-color: rgba(213,86,85,.40);
  box-shadow: 0 0 48px rgba(213,86,85,.08), 0 16px 48px rgba(0,0,0,.30);
}

/* Icon ring (56px circle with glow, matching step-circle) */
.ns-req-icon-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(77,200,212,.40);
  background: rgba(77,200,212,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 0 8px rgba(77,200,212,.04), 0 0 28px rgba(77,200,212,.12);
  transition: box-shadow .3s ease, transform .3s ease;
}
.e-con.ns-req-card:hover .ns-req-icon-ring {
  box-shadow: 0 0 0 12px rgba(77,200,212,.10), 0 0 44px rgba(77,200,212,.30);
  transform: scale(1.08);
}
.ns-req-icon-ring--urgent {
  border-color: rgba(213,86,85,.40);
  background: rgba(213,86,85,.08);
  box-shadow: 0 0 0 8px rgba(213,86,85,.04), 0 0 28px rgba(213,86,85,.12);
}
.e-con.ns-req-card:hover .ns-req-icon-ring--urgent {
  box-shadow: 0 0 0 12px rgba(213,86,85,.10), 0 0 44px rgba(213,86,85,.30);
}

.ns-req-icon { margin-bottom: 18px; }
.ns-req-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.ns-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ns-check:last-of-type { border-bottom: none; }
.ns-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,.50);
  line-height: 1.6;
  padding: 12px 14px;
  background: rgba(77,200,212,.06);
  border-radius: 12px;
  border: 1px solid rgba(77,200,212,.12);
}
.ns-warning {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,.80);
  line-height: 1.6;
  padding: 12px 14px;
  background: rgba(213,86,85,.08);
  border-radius: 12px;
  border: 1px solid rgba(213,86,85,.18);
  font-weight: 500;
}
.ns-urgent-badge {
  display: inline-block;
  background: linear-gradient(135deg, #D55655, #c44444);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
  box-shadow: 0 2px 12px rgba(213,86,85,.30);
  animation: ns-pulse-badge 3s ease-in-out infinite;
}
@keyframes ns-pulse-badge {
  0%, 100% { box-shadow: 0 2px 12px rgba(213,86,85,.30); }
  50% { box-shadow: 0 4px 20px rgba(213,86,85,.50); }
}

/* ── Steps Section (horizontal card grid — matches homepage process) ─────── */
.ns-steps-section {
  position: relative;
}
.ns-steps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77,200,212,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,200,212,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}
.ns-steps-section::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.ns-steps-section > .e-con-inner { position: relative; z-index: 1; }

.ns-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
/* NS step cards as Elementor containers */
.e-con.ns-step-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(77,200,212,.12);
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.e-con.ns-step-card::before {
  content: '';
  position: absolute;
  top: -30px; left: 50%; transform: translateX(-50%);
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,200,212,.06) 0%, transparent 70%);
  pointer-events: none;
}
.e-con.ns-step-card:hover {
  background: rgba(77,200,212,.06);
  border-color: rgba(77,200,212,.30);
  box-shadow: 0 0 48px rgba(77,200,212,.08), 0 16px 48px rgba(0,0,0,.30);
  transform: translateY(-6px);
}
.e-con.ns-step-card .step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(77,200,212,.40);
  background: rgba(77,200,212,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4DC8D4;
  margin: 0 auto 12px;
  box-shadow: 0 0 0 8px rgba(77,200,212,.04), 0 0 28px rgba(77,200,212,.12);
  transition: box-shadow .3s ease, transform .3s ease;
  position: relative;
  z-index: 2;
}
.e-con.ns-step-card:hover .step-circle {
  box-shadow: 0 0 0 12px rgba(77,200,212,.10), 0 0 44px rgba(77,200,212,.30);
  transform: scale(1.08);
}
.e-con.ns-step-card .step-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(77,200,212,.7);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.e-con.ns-step-card .step-dur-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #4DC8D4;
  opacity: .5;
}
.ns-step-card .step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.ns-step-card .step-desc {
  font-size: 14px;
  color: rgba(255,255,255,.50);
  line-height: 1.65;
  margin: 0;
}

/* ── Walk-In Clinics (with pro-tip + virtual clinic) ─────────────────────── */
.ns-clinics-section { position: relative; }

.ns-pro-tip {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, rgba(77,200,212,.06), rgba(77,200,212,.02));
  border: 1.5px solid rgba(77,200,212,.18);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 28px;
  font-size: 14px;
  color: #374151;
  line-height: 1.65;
}
.ns-pro-tip-icon { flex-shrink: 0; margin-top: 2px; }
.ns-pro-tip-body { flex: 1; }
.ns-pro-tip-body strong { color: #008081; }
.ns-pro-tip-body a {
  color: #008081;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}
.ns-pro-tip-body a:hover { color: #4DC8D4; }

.ns-clinics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.ns-clinic-card {
  background: #fff;
  border: 1.5px solid rgba(0,0,0,.05);
  border-radius: 16px;
  padding: 28px 22px;
  position: relative;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.ns-clinic-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,200,212,.15), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.ns-clinic-card:hover {
  border-color: rgba(77,200,212,.25);
  box-shadow: 0 12px 36px rgba(0,128,129,.07), 0 0 40px rgba(77,200,212,.04);
  transform: translateY(-4px);
}
.ns-clinic-card:hover::after { opacity: 1; }
.ns-clinic-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.ns-clinic-type {
  font-size: 10.5px;
  font-weight: 600;
  color: #4DC8D4;
  text-transform: uppercase;
  letter-spacing: .10em;
  margin-bottom: 16px;
}
.ns-clinic-detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 6px;
}
.ns-clinic-detail a {
  color: #008081;
  text-decoration: none;
  font-weight: 600;
  transition: color .2s ease;
}
.ns-clinic-detail a:hover { color: #4DC8D4; }
.ns-clinic-hours {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: #9CA3AF;
  line-height: 1.5;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.04);
}

/* Virtual clinic highlight card */
.ns-virtual-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(77,200,212,.04), rgba(77,200,212,.01));
  border: 2px solid rgba(77,200,212,.20);
  border-radius: 20px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.ns-virtual-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4DC8D4, #008081);
}
.ns-virtual-card:hover {
  border-color: rgba(77,200,212,.35);
  box-shadow: 0 12px 40px rgba(0,128,129,.08);
}
.ns-virtual-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(77,200,212,.10);
  border: 1px solid rgba(77,200,212,.20);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  color: #008081;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
  flex-shrink: 0;
}
.ns-virtual-content { flex: 1; }
.ns-virtual-content .ns-clinic-name { font-size: 17px; margin-bottom: 4px; }
.ns-virtual-content .ns-clinic-type { margin-bottom: 10px; }
.ns-virtual-details {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* ── Audiology Section (with urgency banner) ─────────────────────────────── */
.ns-audio-section { position: relative; }
.ns-audio-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,200,212,.18), transparent);
}

.ns-urgency-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #D55655, #c44444);
  border-radius: 16px;
  padding: 18px 24px;
  margin-bottom: 32px;
  font-size: 14.5px;
  color: #fff;
  line-height: 1.55;
  box-shadow: 0 8px 32px rgba(213,86,85,.25), 0 0 0 1px rgba(213,86,85,.15);
  animation: ns-urgency-pulse 4s ease-in-out infinite;
}
.ns-urgency-banner strong { color: #fff; }
@keyframes ns-urgency-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(213,86,85,.25), 0 0 0 1px rgba(213,86,85,.15); }
  50% { box-shadow: 0 8px 48px rgba(213,86,85,.40), 0 0 0 1px rgba(213,86,85,.25); }
}

.ns-audio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ns-audio-card {
  background: #f8fafa;
  border: 1.5px solid rgba(77,200,212,.10);
  border-radius: 16px;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.ns-audio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4DC8D4, #008081);
}
.ns-audio-card:hover {
  border-color: rgba(77,200,212,.28);
  box-shadow: 0 12px 36px rgba(0,128,129,.07);
  transform: translateY(-3px);
}

/* ── Support Section (dark with texture, trust line, contact bar) ─────────── */
.ns-support-section {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.ns-support-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77,200,212,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,200,212,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}
.ns-support-section::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.ns-support-section > .e-con-inner { position: relative; z-index: 1; }

.ns-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 8px;
}
/* NS support cards as Elementor containers */
.e-con.ns-support-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(77,200,212,.12);
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.e-con.ns-support-card::before {
  content: '';
  position: absolute;
  top: -40px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,200,212,.08) 0%, transparent 70%);
  pointer-events: none;
}
.e-con.ns-support-card:hover {
  background: rgba(77,200,212,.06);
  border-color: rgba(77,200,212,.30);
  box-shadow: 0 0 48px rgba(77,200,212,.08), 0 12px 40px rgba(0,0,0,.30);
  transform: translateY(-4px);
}
.ns-support-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  opacity: .85;
}
.e-con.ns-support-card:hover .ns-support-icon { opacity: 1; }
.ns-support-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.ns-support-desc {
  font-size: 14px;
  color: rgba(255,255,255,.50);
  line-height: 1.65;
  margin: 0;
}

/* Trust line */
.ns-trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.ns-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .01em;
}
.ns-trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.12);
}

/* Contact bar */
.ns-contact-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(77,200,212,.12);
  border-radius: 20px;
  padding: 28px 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.ns-contact-item { text-align: center; }
.ns-contact-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(77,200,212,.7);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 6px;
}
.ns-contact-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}
a.ns-contact-value {
  text-decoration: none;
  transition: color .2s ease;
}
a.ns-contact-value:hover { color: #4DC8D4; }
.ns-contact-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.08);
}

/* ── Section headings alignment ──────────────────────────────────────────── */
.ns-clinics-section .elementor-widget-text-editor,
.ns-clinics-section .elementor-widget-heading,
.ns-audio-section .elementor-widget-text-editor,
.ns-audio-section .elementor-widget-heading {
  max-width: 640px;
}
/* Center section-label in support section */
.ns-support-section .elementor-element.section-label .elementor-widget-container {
  justify-content: center;
  width: 100%;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .ns-requirements { grid-template-columns: 1fr; gap: 16px; }
  .ns-steps-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .ns-clinics-grid { grid-template-columns: repeat(2, 1fr); }
  .ns-support-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .ns-virtual-card { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ns-contact-bar { flex-direction: column; gap: 20px; padding: 24px; }
  .ns-contact-sep { width: 60px; height: 1px; }
  .ns-trust-line { gap: 12px; }
}
@media (max-width: 640px) {
  .ns-clinics-grid { grid-template-columns: 1fr; }
  .ns-audio-grid { grid-template-columns: 1fr; }
  .ns-virtual-details { flex-direction: column; gap: 8px; }
  .ns-urgency-banner { flex-direction: column; text-align: center; gap: 10px; }
  .ns-trust-divider { display: none; }
  .ns-trust-line { flex-direction: column; gap: 8px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   DELAYED RADIATION INJURY PAGE — Premium Custom Design
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Section headings (shared pattern) ──────────────────────────────────── */
.dri-section-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 1.25rem;
}
.dri-section-heading span {
  color: #4FC5D3;
}
.dri-section-heading--dark {
  color: #111111;
}
.dri-section-heading--dark span {
  color: #008081;
}
.dri-section-heading--center {
  text-align: center;
}

.dri-body-text {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 1.25rem;
  font-family: 'DM Sans', sans-serif;
}

.dri-subtitle {
  color: rgba(255,255,255,.50);
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-family: 'DM Sans', sans-serif;
}
.dri-subtitle--dark {
  color: #6B7280;
}

/* ── 3. Intro Section ───────────────────────────────────────────────────── */
.dri-intro-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.dri-intro-text {
  max-width: 100%;
}
.dri-intro-text .section-label-light::before {
  display: none;
}
/* ── Intro image — teal-framed, full-height column fill ────────────────── */
.dri-intro-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.dri-intro-image {
  width: 100%;
  border-radius: 20px !important;
  object-fit: cover;
  display: block;
}
/* Native Elementor — image column with teal frame */
.e-con.dri-intro-image-col {
  padding: 32px !important;
  overflow: visible;
  position: relative;
  display: flex;
  align-items: center;
}
/* Image widget container — teal gradient frame matching science section */
.elementor-element.dri-intro-image .elementor-widget-container {
  background: linear-gradient(145deg, rgba(77,200,212,.12) 0%, rgba(77,200,212,.05) 100%) !important;
  border-radius: 28px;
  padding: 8px;
  border: 2px solid rgba(77,200,212,.35);
  box-shadow: 0 0 48px rgba(77,200,212,.18), 0 16px 56px rgba(0,0,0,.5);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  overflow: hidden;
  width: 100%;
}
.elementor-element.dri-intro-image:hover .elementor-widget-container {
  transform: translateY(-4px);
  box-shadow: 0 0 64px rgba(77,200,212,.18), 0 20px 64px rgba(0,0,0,.5);
}
.elementor-element.dri-intro-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 20px !important;
}

/* Side effects list inside intro */
.dri-effects-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #4FC5D3;
  margin: 1.5rem 0 1rem;
}
.dri-effects-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 2rem;
}
.dri-effect-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

/* ── 5. Features Section (light teal) ───────────────────────────────────── */
.dri-features-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.dri-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
/* DRI feature cards as Elementor containers */
.e-con.dri-feature-card {
  background: #ffffff;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(0,128,129,.10);
  box-shadow: 0 2px 16px rgba(0,128,129,.06);
  transition: transform 0.28s cubic-bezier(.34,1.56,.64,1), box-shadow 0.28s ease;
}
.e-con.dri-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,128,129,.12);
}
.dri-feature-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.dri-feature-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #111111;
  margin: 0 0 .75rem;
}
.dri-feature-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  line-height: 1.65;
  color: #6B7280;
  margin: 0;
}

/* ── 6. Science Section (2-column) ─────────────────────────────────────── */
.dri-science-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
}
/* Grid texture */
.dri-science-section::before,
.e-con.dri-science-section-native::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(77,200,212,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,200,212,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}
.dri-science-section > *,
.e-con.dri-science-section-native > .e-con-inner {
  position: relative;
  z-index: 1;
}
/* Right column: vertically center the image */
.e-con.dri-science-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dri-didyouknow {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: rgba(18,22,22,.75);
  border: 1px solid rgba(77,200,212,.18);
  border-radius: 16px;
  padding: 1.75rem;
  margin-top: 2rem;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.dri-dyk-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(77,200,212,.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dri-dyk-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: #4FC5D3;
  margin-bottom: .5rem;
}
.dri-dyk-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
  margin: 0;
}
.dri-dyk-content strong {
  color: #ffffff;
}

/* ── 7. Comfort Section ─────────────────────────────────────────────────── */
.dri-comfort-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.dri-comfort-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
/* DRI comfort cards as Elementor containers */
.e-con.dri-comfort-card {
  background: #F6F8F8;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform 0.28s cubic-bezier(.34,1.56,.64,1), box-shadow 0.28s ease;
}
.e-con.dri-comfort-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.dri-comfort-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.dri-comfort-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #111111;
  margin: 0 0 .75rem;
}
.dri-comfort-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  line-height: 1.65;
  color: #6B7280;
  margin: 0;
}

/* ── 8. CTA Section ─────────────────────────────────────────────────────── */
.dri-cta-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}
.dri-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.dri-cta-buttons .btn-lg {
  padding: .875rem 2rem;
  font-size: 1rem;
}
/* CTA buttons — auto-width, centered */
.e-con.dri-cta-section-native .elementor-element.cta-call-btn,
.e-con.dri-cta-section-native .elementor-element.cta-referral-btn {
  max-width: 380px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.e-con.dri-cta-section-native .elementor-element.cta-call-btn .elementor-button,
.e-con.dri-cta-section-native .elementor-element.cta-referral-btn .elementor-button {
  width: 100%;
  justify-content: center;
}

/* CTA contact grid — 2x2 layout for 4 items */
.dri-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  max-width: 640px;
  margin: 0 auto 2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(77,200,212,.14);
  border-radius: 16px;
  padding: 1.5rem 2rem;
}
.dri-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}
.dri-contact-item a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.dri-contact-item a:hover {
  color: #4FC5D3;
}
.dri-contact-item a:focus-visible {
  color: #4FC5D3;
  outline: 2px solid #4FC5D3;
  outline-offset: 2px;
  border-radius: 4px;
}
.dri-contact-emoji {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── DRI Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .dri-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3.5rem 1.5rem;
  }
  /* On tablet/mobile: image goes on top with frame */
  .e-con.dri-intro-image-col {
    order: -1;
    min-height: auto;
    padding: 16px !important;
  }
  .elementor-element.dri-intro-image img {
    object-position: center 30%;
    aspect-ratio: 16/9;
  }
  .dri-intro-text {
    max-width: 100%;
  }
  .dri-effects-list {
    grid-template-columns: 1fr;
  }
  .dri-contact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dri-features-grid,
  .dri-comfort-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .dri-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  /* Feature & comfort card rows: 2-column on tablet, 1-column on small mobile */
  .e-con.dri-features-cards > .e-con-inner,
  .e-con.dri-comfort-cards > .e-con-inner {
    flex-wrap: wrap !important;
    gap: 20px !important;
  }
  .e-con.dri-feature-card,
  .e-con.dri-comfort-card {
    width: calc(50% - 10px) !important;
    flex: 0 0 calc(50% - 10px) !important;
  }
  /* Third card centers below on tablet */
  .e-con.dri-feature-card:last-child,
  .e-con.dri-comfort-card:last-child {
    margin: 0 auto;
  }
}
/* ── Tablet to small mobile — single column cards ──────────────────────── */
@media (max-width: 640px) {
  .e-con.dri-feature-card,
  .e-con.dri-comfort-card {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 420px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .dri-section-heading {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  .dri-intro-grid {
    padding: 2.5rem 1rem;
  }
  .dri-science-section,
  .dri-features-section,
  .dri-comfort-section,
  .dri-cta-section {
    padding: 3rem 1rem;
  }
  .dri-didyouknow {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  /* Science section stacks on mobile */
  .e-con.dri-science-image-col {
    padding: 0 !important;
  }
  .elementor-element.dri-science-image .elementor-widget-container {
    max-width: 100%;
    margin: 0;
    border-radius: 16px;
    padding: 6px;
  }
}

/* ── Science section chamber image ─────────────────────────────────────── */
.dri-science-image-wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  background: linear-gradient(145deg, rgba(77,200,212,.08) 0%, rgba(77,200,212,.03) 100%);
  border-radius: 28px;
  padding: 8px;
  border: 1px solid rgba(77,200,212,.18);
  box-shadow: 0 0 48px rgba(77,200,212,.12), 0 16px 56px rgba(0,0,0,.4);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.dri-science-image-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 64px rgba(77,200,212,.18), 0 20px 64px rgba(0,0,0,.5);
}
.dri-science-image {
  width: 100%;
  border-radius: 20px;
  display: block;
}
/* Native Elementor image widget — science section */
.elementor-element.dri-science-image .elementor-widget-container {
  background: linear-gradient(145deg, rgba(77,200,212,.08) 0%, rgba(77,200,212,.03) 100%);
  border-radius: 28px;
  padding: 8px;
  border: 1px solid rgba(77,200,212,.18);
  box-shadow: 0 0 48px rgba(77,200,212,.12), 0 16px 56px rgba(0,0,0,.4);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  margin: 0 auto;
  overflow: hidden;
}
.elementor-element.dri-science-image:hover .elementor-widget-container {
  transform: translateY(-4px);
  box-shadow: 0 0 64px rgba(77,200,212,.18), 0 20px 64px rgba(0,0,0,.5);
}
.elementor-element.dri-science-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* ── Wound Recovery — extra classes ────────────────────────────────────── */
.dri-effects-list--single {
  grid-template-columns: 1fr;
  max-width: 460px;
}
.wound-ohip-note {
  margin-top: 1.5rem;
  padding: 1.2rem 1.4rem;
  background: rgba(77,200,212,.06);
  border: 1px solid rgba(77,200,212,.18);
  border-radius: 14px;
}
.wound-ohip-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: .5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: #fff;
}
.wound-ohip-note p {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin: 0;
}

/* ── Hearing page — extra classes ──────────────────────────────────────── */
.hearing-urgent-notice {
  margin: 1.2rem 0 1.5rem;
  padding: 1.2rem 1.4rem;
  background: rgba(213,86,85,.08);
  border: 1px solid rgba(213,86,85,.3);
  border-radius: 14px;
}
.hearing-urgent-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: .5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: #D55655;
}
.hearing-urgent-notice p {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin: 0;
}

/* Next Steps cards */
.hearing-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 2rem;
}
/* Hearing step cards as Elementor containers */
.e-con.hearing-step-card {
  background: #fff;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(0,128,129,.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.e-con.hearing-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,128,129,.1);
}
.hearing-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4FC5D3 0%, #008081 100%);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.hearing-step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0A0A0A;
  margin: 0 0 .5rem;
  letter-spacing: -0.02em;
}
.hearing-step-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}
.hearing-disclaimer {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: #6B7280;
  line-height: 1.6;
}
.hearing-disclaimer em {
  color: #008081;
  font-style: italic;
}

@media (max-width: 960px) {
  .hearing-steps-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto 2rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESEARCH LIBRARY PAGE — .research-* namespace (Premium v2)
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Research content section — light theme */
.e-con.research-content-section {
  position: relative;
  z-index: 2;
  background: #F6F8F8 !important;
  border-top: none !important;
}
.e-con.research-content-section > .e-con-inner {
  position: relative;
  z-index: 1;
}
/* Subtle dot-grid texture (light mode) */
.e-con.research-content-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,128,129,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,128,129,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

/* ── Search — pill glass bar ── */
.research-hub {
  max-width: 900px;
  margin: 0 auto;
}
.research-search-wrap {
  position: relative;
  margin-bottom: 24px;
}
.research-search {
  width: 100%;
  padding: 16px 24px 16px 52px;
  background: #ffffff;
  border: 1.5px solid rgba(0,128,129,.12);
  border-radius: 999px;
  color: #111111;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.research-search:focus {
  border-color: #4DC8D4;
  box-shadow: 0 0 0 4px rgba(77,200,212,.1), 0 4px 20px rgba(0,0,0,.06);
  background: #ffffff;
}
.research-search::placeholder { color: #9CA3AF; }
.research-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #9CA3AF;
  pointer-events: none;
}
/* Results count — teal glass pill */
.research-results-count {
  text-align: center;
  margin-bottom: 16px;
  display: none;
}
.research-results-count span,
.research-results-count {
  color: #008081;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  background: rgba(0,128,129,.06);
  border: 1px solid rgba(0,128,129,.12);
  border-radius: 999px;
  padding: 6px 18px;
  display: inline-block;
}
.research-no-results {
  text-align: center;
  color: #9CA3AF;
  font-size: 15px;
  padding: 32px 0;
}

/* ── Category Accordion — Premium Glass Cards ── */
.research-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.research-category {
  background: #ffffff;
  border: 1px solid rgba(0,128,129,.08);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  transition: background .3s, border-color .3s, box-shadow .3s, transform .3s;
}
.research-category:hover {
  border-color: rgba(0,128,129,.2);
  box-shadow: 0 8px 32px rgba(0,128,129,.08);
  transform: translateY(-2px);
}
.research-category.open {
  border-color: rgba(0,128,129,.25);
  box-shadow: 0 12px 40px rgba(0,128,129,.1);
  transform: none;
}
/* Top accent gradient line — appears on hover/open */
.research-category::before {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #008081, transparent);
  opacity: 0;
  transition: opacity .3s;
  z-index: 1;
}
.research-category:hover::before { opacity: 0.5; }
.research-category.open::before { opacity: 0.8; }

.research-cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #111;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s;
}
.research-cat-header:hover {
  background: rgba(0,128,129,.02);
}
/* Icon — fills solid on open */
.research-cat-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,128,129,.06);
  border-radius: 11px;
  color: #008081;
  transition: background .3s, color .3s, box-shadow .3s;
}
.research-category.open .research-cat-icon {
  background: #008081;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(0,128,129,.2);
}
.research-cat-icon svg {
  width: 18px;
  height: 18px;
}
.research-cat-info {
  flex: 1;
  min-width: 0;
}
.research-cat-name {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  line-height: 1.3;
}
.research-cat-count {
  display: block;
  font-size: 12px;
  color: #6B7280;
  margin-top: 2px;
}
.research-cat-link {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: #008081;
  text-decoration: none;
  opacity: 0;
  transition: opacity .2s;
  white-space: nowrap;
}
.research-category:hover .research-cat-link,
.research-category.open .research-cat-link {
  opacity: 1;
}
.research-cat-link:hover {
  text-decoration: underline;
}
.research-cat-chevron {
  flex-shrink: 0;
  color: rgba(0,0,0,.2);
  transition: transform .3s cubic-bezier(.4,0,.2,1), color .2s;
}
.research-category.open .research-cat-chevron {
  transform: rotate(180deg);
  color: #008081;
}

/* ── Category Body (collapsed/expanded) ── */
.research-cat-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s;
  padding: 0 24px;
}
.research-category.open .research-cat-body {
  max-height: 6000px;
  padding: 0 24px 24px;
}

/* ── Study Cards — glass with teal left accent ── */
.research-study {
  background: #ffffff;
  border: 1px solid rgba(0,128,129,.06);
  border-left: 3px solid rgba(0,128,129,.15);
  border-radius: 12px;
  padding: 20px 20px 20px 22px;
  margin-bottom: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,.03);
  transition: background .25s, border-color .25s, box-shadow .25s, transform .25s;
}
.research-study:last-child { margin-bottom: 0; }
.research-study:hover {
  border-color: rgba(0,128,129,.15);
  border-left-color: #008081;
  box-shadow: 0 4px 20px rgba(0,128,129,.08);
  transform: translateY(-2px);
}
.research-study-title {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #008081;
  text-decoration: none;
  line-height: 1.45;
  margin-bottom: 8px;
  transition: color .2s;
}
.research-study-title:hover {
  color: #005e5f;
  text-decoration: underline;
}
.research-study-title svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: .5;
}
.research-study-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
/* Year badge */
.research-year-badge {
  display: inline-block;
  background: rgba(0,128,129,.08);
  color: #008081;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: .03em;
}
.research-study-authors {
  font-size: 13px;
  color: #9CA3AF;
  font-style: italic;
}
.research-study-journal {
  font-size: 13px;
  color: #008081;
  font-weight: 500;
  opacity: .7;
}
/* Key finding — teal-tinted highlight box */
.research-study-finding {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.65;
  margin: 0;
  background: rgba(0,128,129,.03);
  border-radius: 8px;
  padding: 10px 14px;
  border-left: 2px solid rgba(0,128,129,.15);
}
.research-study-finding strong {
  color: #008081;
  font-weight: 600;
}

/* ── Internal Links Grid — cards with top accent ── */
.research-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.research-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  background: #fff;
  border: 1px solid rgba(0,128,129,.08);
  border-radius: 14px;
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
/* Teal gradient top accent — appears on hover */
.research-link-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #4DC8D4, #008081);
  opacity: 0;
  transition: opacity .3s;
}
.research-link-card:hover::before { opacity: 1; }
.research-link-card:hover {
  border-color: rgba(0,128,129,.2);
  box-shadow: 0 8px 28px rgba(0,128,129,.1);
  transform: translateY(-3px);
}
.research-link-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,128,129,.06);
  border-radius: 10px;
  color: #008081;
  transition: background .25s, box-shadow .25s;
}
.research-link-card:hover .research-link-icon {
  background: rgba(0,128,129,.12);
  box-shadow: 0 0 12px rgba(0,128,129,.1);
}
.research-link-icon svg {
  width: 18px;
  height: 18px;
}
.research-link-name {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
}
.research-link-count {
  font-size: 11px;
  color: #6B7280;
}

/* ── Staggered entrance animation for categories ── */
.research-category {
  opacity: 0;
  animation: fade-up .6s ease forwards;
}
.research-category:nth-child(1)  { animation-delay: 0ms; }
.research-category:nth-child(2)  { animation-delay: 60ms; }
.research-category:nth-child(3)  { animation-delay: 120ms; }
.research-category:nth-child(4)  { animation-delay: 180ms; }
.research-category:nth-child(5)  { animation-delay: 240ms; }
.research-category:nth-child(6)  { animation-delay: 300ms; }
.research-category:nth-child(7)  { animation-delay: 360ms; }
.research-category:nth-child(8)  { animation-delay: 420ms; }
.research-category:nth-child(9)  { animation-delay: 480ms; }
.research-category:nth-child(10) { animation-delay: 540ms; }
.research-category:nth-child(11) { animation-delay: 600ms; }
.research-category:nth-child(12) { animation-delay: 660ms; }
.research-category:nth-child(13) { animation-delay: 720ms; }
.research-category:nth-child(14) { animation-delay: 780ms; }

/* ── HOMEPAGE MOBILE ─────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Hero: stack icon above heading, shrink icon */
  .hero-heading-row {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .hero-icon {
    height: 56px;
    flex-shrink: 0;
  }
  .hero h1 {
    font-size: clamp(32px, 9vw, 46px);
  }
  .hero-sub {
    font-size: 15px;
    margin-bottom: 32px;
  }
  .hero-content {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-scroll-indicator { display: none; }

  /* Section headings: ensure enough bottom margin so text doesn't overlap */
  .e-con .elementor-widget-heading .elementor-heading-title {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* Science section: reduce heading size, add breathing room */
  .e-con.science-section .elementor-widget-heading .elementor-heading-title {
    font-size: 28px !important;
    line-height: 1.15 !important;
    margin-bottom: 16px !important;
  }
  .e-con.science-section .elementor-widget-text-editor {
    margin-top: 8px !important;
  }
  /* Science: remove overflow:visible on mobile (causes horizontal scroll) */
  .e-con.science-section {
    overflow: hidden !important;
  }

  /* Benefits section: reduce heading size */
  .e-con.benefits-section .elementor-widget-heading .elementor-heading-title,
  .e-con.benefits-header-row .elementor-widget-heading .elementor-heading-title {
    font-size: 28px !important;
    line-height: 1.15 !important;
  }

  /* Conditions section: ensure text doesn't overlap on stacked columns */
  .e-con.conditions-sidebar {
    position: relative !important;
    top: auto !important;
  }
  .conditions-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .e-con.conditions-sidebar .elementor-widget-heading .elementor-heading-title {
    font-size: 28px !important;
    line-height: 1.15 !important;
  }
  /* Condition guide cards: single column on narrow mobile */
  .cgl-grid {
    grid-template-columns: 1fr;
  }

  /* Conditions sidebar: shrink the giant "14", add spacing, unstick */
  .conditions-count {
    font-size: 2rem !important;
    margin-bottom: 2px !important;
    line-height: 1 !important;
  }
  .e-con.conditions-sidebar .elementor-widget-heading .elementor-heading-title {
    font-size: 22px !important;
    line-height: 1.2 !important;
  }
  .e-con.conditions-sidebar .elementor-widget-heading .elementor-widget-container {
    padding-bottom: 16px !important;
  }
  .e-con.conditions-sidebar {
    position: relative !important;
    top: auto !important;
    padding: 48px 24px !important;
  }
  .e-con.conditions-right-col {
    padding: 48px 24px !important;
  }

  /* Technology section: reduce heading size */
  .e-con.technology .elementor-widget-heading .elementor-heading-title {
    font-size: 26px !important;
    line-height: 1.15 !important;
  }
  /* Technology section padding on mobile */
  .e-con.technology > .e-con-inner > .e-con {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Tech spec cards: override inline grid to single column */
  .elementor-element.tech-specs-block .elementor-widget-container > div[style] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  /* Tech specs: single column on mobile (legacy) */
  .tech-specs {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .tech-spec-value {
    font-size: 18px;
  }

  /* Tech spec cards: smaller text */
  .tech-spec-card-value { font-size: 1.4rem; }

  /* Process section heading */
  .e-con.process-section .elementor-widget-heading .elementor-heading-title {
    font-size: 28px !important;
    line-height: 1.15 !important;
  }

  /* Reduce all Elementor container side padding on mobile */
  .e-con > .e-con-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Evidence ticker: smaller text on mobile */
  .evidence-ticker-text {
    font-size: 12px !important;
  }

  /* Dive dials: smaller on mobile */
  .dive-dials-row { gap: 4px; }
  .dive-dial { width: 80px; height: 80px; border-radius: 10px; padding: 4px; }

  /* Stats bar: smaller values on mobile */
  .elementor-element.stat-value .elementor-heading-title {
    font-size: 2.2rem !important;
  }

  /* Condition tags: wrap properly */
  .conditions-tag-cloud { gap: 5px; }
  .cond-tag { font-size: 11px; padding: 5px 10px; }

  /* CTA section: ensure text doesn't overflow */
  .e-con.cta-text-col {
    padding: 36px 20px !important;
  }
}

@media (max-width: 480px) {
  .hero-icon { height: 48px; }
  .hero h1 { font-size: clamp(28px, 8.5vw, 38px); }
  .hero-badge { font-size: 10px; padding: 6px 14px; }
}

/* ── Research page mobile ── */
@media (max-width: 767px) {
  .research-search { font-size: 14px; padding: 14px 16px 14px 44px; border-radius: 14px; }
  .research-cat-header { padding: 14px 16px; gap: 10px; }
  .research-cat-link { display: none; }
  .research-cat-name { font-size: 14px; }
  .research-study { padding: 16px; }
  .research-study-title { font-size: 14px; }
  .research-study-finding { font-size: 13px; padding: 8px 12px; }
  .research-links-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .research-link-card { padding: 14px 10px; }
  .research-link-name { font-size: 12px; }
  .research-category { animation: none; opacity: 1; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   WOUND CARE ROUNDS PAGE (.wcr-*)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Next Meeting Announcement Card ── */
.wcr-next-meeting {
  max-width: 560px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(77,200,212,.08) 0%, rgba(77,200,212,.03) 100%);
  border: 1px solid rgba(77,200,212,.22);
  border-left: 4px solid #4FC5D3;
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 0 48px rgba(77,200,212,.10), 0 8px 32px rgba(0,0,0,.3);
}
.wcr-next-meeting-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4FC5D3;
  margin-bottom: 16px;
}
.wcr-next-meeting-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 16px;
}
.wcr-next-meeting-details {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}
.wcr-next-meeting-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255,255,255,.7);
}
.wcr-next-meeting-note {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  margin: 0;
}

/* ── About Section ── */
.e-con.wcr-about-section {
  max-width: 100%;
}
.e-con.wcr-about-section .elementor-widget-container {
  max-width: 720px;
}

/* ── Archive Section ── */
.wcr-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 24px;
  max-width: 960px;
}
.wcr-meeting-card {
  background: #1A1A1A;
  border: 1px solid rgba(77,200,212,.12);
  border-radius: 20px;
  padding: 32px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.wcr-meeting-card:hover {
  border-color: rgba(77,200,212,.28);
  box-shadow: 0 0 32px rgba(77,200,212,.08), 0 8px 24px rgba(0,0,0,.3);
}
.wcr-meeting-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.wcr-meeting-topic {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0 0 8px;
}
.wcr-meeting-presenter {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin: 0 0 20px;
}

/* ── Download Buttons ── */
.wcr-meeting-downloads {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.wcr-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1px solid rgba(77,200,212,.3);
  border-radius: 9999px;
  color: #4FC5D3;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.wcr-download-btn:hover {
  background: #4FC5D3;
  color: #071c1c;
  border-color: #4FC5D3;
}
.wcr-download-btn:focus-visible {
  outline: 2px solid #4FC5D3;
  outline-offset: 2px;
}

/* ── AI Summary Accordion ── */
.wcr-summary-accordion {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 16px;
}
.wcr-summary-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}
.wcr-summary-toggle::-webkit-details-marker { display: none; }
.wcr-summary-toggle:hover { color: #4FC5D3; }
.wcr-summary-toggle svg { transition: transform 0.3s ease; }
.wcr-summary-accordion[open] .wcr-summary-toggle svg {
  transform: rotate(45deg);
}
.wcr-summary-content {
  padding: 16px 0 4px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
}
.wcr-summary-content p { margin: 0; }

/* ── CTA Section ── */
.e-con.wcr-cta-section {
  text-align: center;
}
.e-con.wcr-cta-section .elementor-widget-container {
  max-width: 640px;
  margin: 0 auto;
}
.e-con.wcr-cta-section .elementor-element.btn-center .elementor-button {
  display: inline-flex;
  width: auto;
}
.e-con.wcr-cta-section .elementor-element.btn-center .elementor-button-wrapper {
  display: flex;
  justify-content: center;
}
.e-con.wcr-cta-section .wcr-ghost-btn .elementor-button {
  border: 1px solid rgba(255,255,255,.35) !important;
  background: transparent !important;
}
.e-con.wcr-cta-section .wcr-ghost-btn .elementor-button:hover {
  border-color: #fff !important;
  background: rgba(255,255,255,.08) !important;
}

/* ── Wound Care Rounds mobile ── */
@media (max-width: 767px) {
  .wcr-next-meeting { padding: 24px 20px; }
  .wcr-next-meeting-title { font-size: 22px; }
  .wcr-next-meeting-details { flex-direction: column; gap: 10px; }
  .wcr-archive-grid { grid-template-columns: 1fr; gap: 16px; }
  .wcr-meeting-card { padding: 24px 20px; }
  .wcr-meeting-topic { font-size: 18px; }
  .wcr-meeting-downloads { gap: 8px; }
  .wcr-download-btn { padding: 7px 14px; font-size: 12px; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   PATIENTS PAGE — .patients-* namespace
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Journey Steps (light teal bg) ── */
.e-con.patients-journey-step {
  background: #ffffff;
  border-radius: 16px;
  border-left: 3px solid #4FC5D3;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.e-con.patients-journey-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,128,129,.08);
}

/* ── Do/Don't Cards ── */
.e-con.patients-do-card {
  border-radius: 16px;
  border: 1px solid rgba(77,200,212,.15);
}
.e-con.patients-dont-card {
  border-radius: 16px;
  border: 1px solid rgba(220,38,38,.1);
}

/* ── Dark Comfort Section ── */
.patients-comfort-section { overflow: hidden; }

.patients-comfort-image .elementor-widget-container {
  background: #ffffff;
  border-radius: 24px;
  padding: 6px;
  border: 1px solid rgba(0,128,129,.12);
  box-shadow: 0 4px 16px rgba(0,128,129,.06), 0 12px 40px rgba(0,0,0,.06);
}
.patients-comfort-image .elementor-widget-container img {
  border-radius: 18px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.patients-comfort-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.patients-comfort-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: #ffffff;
  border: 1px solid rgba(0,128,129,.1);
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0,128,129,.04), 0 4px 12px rgba(0,0,0,.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.patients-comfort-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,128,129,.08), 0 8px 24px rgba(0,0,0,.05);
}
.patients-comfort-feature svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.patients-comfort-feature strong {
  color: #111111;
  font-size: 15px;
  font-weight: 600;
}
.patients-comfort-feature span {
  color: #4b5563;
  font-size: 13px;
  line-height: 1.6;
}

/* ── FAQ on Light Background ── */
.patients-faq-accordion .elementor-accordion {
  border: none;
  max-width: 860px;
  margin: 0 auto;
}
.patients-faq-accordion .elementor-accordion-item {
  border: none;
  border-radius: 16px;
  margin-bottom: 12px;
  background: #008081;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,128,129,.15), 0 4px 16px rgba(0,0,0,.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.patients-faq-accordion .elementor-accordion-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,128,129,.2), 0 8px 24px rgba(0,0,0,.08);
}
/* Active item — slightly lighter teal */
.patients-faq-accordion .elementor-accordion-item:has(.elementor-active) {
  background: #006e6f;
  box-shadow: 0 4px 20px rgba(0,128,129,.2), 0 8px 28px rgba(0,0,0,.1);
}
/* Title — white on teal, force override Elementor inline styles */
.patients-faq-accordion .elementor-tab-title,
.patients-faq-accordion .elementor-tab-title a,
.patients-faq-accordion .elementor-accordion-item .elementor-tab-title {
  color: #ffffff !important;
  padding: 20px 24px;
  font-size: 17px !important;
  font-weight: 600 !important;
  letter-spacing: -0.015em;
  line-height: 1.4;
  background: transparent !important;
}
.patients-faq-accordion .elementor-tab-title:hover,
.patients-faq-accordion .elementor-tab-title a:hover {
  color: rgba(255,255,255,.8) !important;
}
.patients-faq-accordion .elementor-tab-title.elementor-active {
  color: #ffffff !important;
}
/* Icon arrows — white */
/* Icon arrows — force Font Awesome font over inherited DM Sans */
.patients-faq-accordion .elementor-accordion-icon i,
.patients-faq-accordion .elementor-accordion-icon i::before {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  font-size: 14px !important;
  color: rgba(255,255,255,.7) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.patients-faq-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon i,
.patients-faq-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon i::before {
  color: #ffffff !important;
}
/* Answer content — inset darker box with consistent margins */
.patients-faq-accordion .elementor-tab-content {
  color: rgba(255,255,255,.85) !important;
  padding: 20px 24px;
  margin: 0 16px 16px;
  border-top: none;
  background: rgba(0,0,0,.15);
  border-radius: 10px;
  font-size: 15px !important;
  line-height: 1.8 !important;
}
/* Links inside answers */
.patients-faq-accordion .elementor-tab-content a {
  color: #4FC5D3;
  text-decoration: none;
  border-bottom: 1px solid rgba(79,197,211,.4);
  transition: border-color 0.2s ease;
}
.patients-faq-accordion .elementor-tab-content a:hover {
  border-color: #4FC5D3;
}
.patients-faq-accordion .elementor-accordion-item:last-child {
  margin-bottom: 0;
}

/* ── CTA with sign image ── */
.patients-cta-sign .elementor-widget-container {
  background: linear-gradient(145deg, rgba(77,200,212,.08) 0%, rgba(77,200,212,.03) 100%);
  border-radius: 24px;
  padding: 6px;
  border: 1px solid rgba(77,200,212,.18);
  box-shadow: 0 0 40px rgba(77,200,212,.1), 0 12px 40px rgba(0,0,0,.35);
}
.patients-cta-sign .elementor-widget-container img {
  border-radius: 18px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.e-con.patients-cta-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Patients page mobile ── */
@media (max-width: 767px) {
  .patients-comfort-section .e-con-inner {
    flex-direction: column !important;
  }
  .e-con.patients-comfort-image-col,
  .e-con.patients-comfort-text-col {
    width: 100% !important;
    padding: 32px 24px !important;
  }
  .patients-steps-row .e-con-inner {
    flex-wrap: wrap;
  }
  .e-con.patients-journey-step {
    width: 100% !important;
    margin-bottom: 12px;
  }
  .patients-dodont-row .e-con-inner {
    flex-direction: column !important;
  }
  .e-con.patients-do-card,
  .e-con.patients-dont-card {
    width: 100% !important;
    margin-bottom: 12px;
  }
  .patients-faq-body .e-con > .e-con-inner > .e-con {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .patients-cta-section .e-con-inner {
    flex-direction: column !important;
  }
  .e-con.patients-cta-image-col,
  .e-con.patients-cta-text-col {
    width: 100% !important;
    padding: 32px 24px !important;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   PHYSICIANS PAGE — .phys-* namespace
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Referral Pathway Cards ── */
.phys-pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.phys-pathway-card {
  position: relative;
  background: #f8fafa;
  border: 1px solid rgba(0,128,129,.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.phys-pathway-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,128,129,.1), 0 2px 8px rgba(0,0,0,.04);
}
.phys-pathway-card--highlight {
  background: #ffffff;
  border: 2px solid #4FC5D3;
  box-shadow: 0 4px 20px rgba(79,197,211,.12), 0 2px 8px rgba(0,0,0,.04);
}
.phys-pathway-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #008081;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.phys-pathway-icon {
  margin-bottom: 16px;
}
.phys-pathway-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.phys-pathway-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #4b5563;
  margin: 0 0 16px;
}
.phys-pathway-value {
  font-size: 18px;
  font-weight: 700;
  color: #008081;
}
.phys-pathway-value a {
  color: #008081;
  text-decoration: none;
}
.phys-pathway-value a:hover { color: #005e5f; }
.phys-pathway-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #008081;
  text-decoration: none;
  padding: 8px 20px;
  border: 1.5px solid #008081;
  border-radius: 24px;
  transition: background 0.2s ease, color 0.2s ease;
}
.phys-pathway-link:hover {
  background: #008081;
  color: #ffffff;
}

/* ── Referral Form Download Cards ── */
.phys-forms-row {
  display: flex;
  gap: 16px;
}
.phys-form-card {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  padding: 20px 24px;
  background: #f8fafa;
  border: 1px solid rgba(0,128,129,.12);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.phys-form-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,128,129,.1), 0 2px 6px rgba(0,0,0,.04);
  border-color: rgba(0,128,129,.25);
}
.phys-form-card--primary {
  background: #008081;
  border-color: #008081;
  color: #ffffff;
}
.phys-form-card--primary:hover {
  background: #006e6f;
  border-color: #006e6f;
  box-shadow: 0 6px 20px rgba(0,128,129,.2), 0 2px 6px rgba(0,0,0,.06);
}
.phys-form-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,128,129,.08);
  border-radius: 12px;
}
.phys-form-card--primary .phys-form-icon {
  background: rgba(255,255,255,.15);
}
.phys-form-text {
  flex: 1;
}
.phys-form-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.phys-form-card--primary .phys-form-text strong { color: #ffffff; }
.phys-form-text span {
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280;
}
.phys-form-card--primary .phys-form-text span { color: rgba(255,255,255,.75); }
.phys-form-dl {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #008081;
  white-space: nowrap;
}
.phys-form-card--primary .phys-form-dl { color: rgba(255,255,255,.9); }

/* ── Referral Checklist ── */
.phys-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.phys-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(0,128,129,.1);
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0,128,129,.04), 0 4px 12px rgba(0,0,0,.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.phys-checklist-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,128,129,.08), 0 8px 24px rgba(0,0,0,.05);
}
.phys-checklist-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.phys-checklist-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 4px;
}
.phys-checklist-item span {
  font-size: 13px;
  line-height: 1.6;
  color: #4b5563;
}

/* ── Clinical Mechanism Section ── */
.phys-mechanism-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.phys-mechanism-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(77,200,212,.06);
  border: 1px solid rgba(77,200,212,.12);
  border-radius: 14px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.phys-mechanism-item:hover {
  transform: translateY(-1px);
  border-color: rgba(77,200,212,.25);
}
.phys-mechanism-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79,197,211,.12);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #4FC5D3;
  letter-spacing: .04em;
}
.phys-mechanism-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}
.phys-mechanism-item div:last-child {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
}

/* Chamber image + caption */
.phys-chamber-image .elementor-widget-container {
  background: linear-gradient(145deg, rgba(77,200,212,.08) 0%, rgba(77,200,212,.03) 100%);
  border-radius: 24px;
  padding: 6px;
  border: 1px solid rgba(77,200,212,.18);
  box-shadow: 0 0 40px rgba(77,200,212,.1), 0 12px 40px rgba(0,0,0,.35);
}
.phys-chamber-image .elementor-widget-container img {
  border-radius: 18px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.phys-chamber-caption {
  margin-top: 16px;
  text-align: center;
}
.phys-chamber-caption strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  margin-bottom: 4px;
}
.phys-chamber-caption span {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

/* ── Indications Grid ── */
.phys-ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.phys-ind-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.phys-ind-card:hover {
  transform: translateY(-2px);
  background: rgba(79,197,211,.08);
  border-color: rgba(79,197,211,.2);
}
.phys-ind-card strong {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}
.phys-ind-note {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.45);
  flex: 1;
}
.phys-ind-arrow {
  margin-top: 12px;
  color: rgba(255,255,255,.25);
  transition: color 0.2s ease, transform 0.2s ease;
}
.phys-ind-card:hover .phys-ind-arrow {
  color: #4FC5D3;
  transform: translateX(3px);
}
.phys-ind-card--urgent {
  border-color: rgba(213,86,85,.2);
}
.phys-ind-card--urgent:hover {
  border-color: rgba(213,86,85,.4);
  background: rgba(213,86,85,.08);
}
.phys-ind-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
  width: fit-content;
}
.phys-ind-badge--urgent {
  background: rgba(213,86,85,.15);
  color: #D55655;
}
.phys-ind-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 16px;
}

/* ── Physician FAQ ── */
.phys-faq-accordion .elementor-accordion {
  border: none;
  max-width: 860px;
  margin: 0 auto;
}
.phys-faq-accordion .elementor-accordion-item {
  border: none;
  border-radius: 14px;
  margin-bottom: 10px;
  background: #f8fafa;
  border: 1px solid rgba(0,128,129,.1);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.phys-faq-accordion .elementor-accordion-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,128,129,.08), 0 2px 8px rgba(0,0,0,.03);
}
.phys-faq-accordion .elementor-accordion-item:has(.elementor-active) {
  background: #ffffff;
  border-color: rgba(0,128,129,.18);
  box-shadow: 0 4px 20px rgba(0,128,129,.1), 0 2px 8px rgba(0,0,0,.04);
}
.phys-faq-accordion .elementor-tab-title,
.phys-faq-accordion .elementor-tab-title a,
.phys-faq-accordion .elementor-accordion-item .elementor-tab-title {
  color: #111111 !important;
  padding: 20px 24px;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: -0.015em;
  line-height: 1.4;
  background: transparent !important;
}
.phys-faq-accordion .elementor-tab-title:hover,
.phys-faq-accordion .elementor-tab-title a:hover { color: #008081 !important; }
.phys-faq-accordion .elementor-tab-title.elementor-active { color: #008081 !important; }
/* Icon arrows — force Font Awesome font over inherited DM Sans */
.phys-faq-accordion .elementor-accordion-icon i,
.phys-faq-accordion .elementor-accordion-icon i::before {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  font-size: 14px !important;
  color: #008081 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.phys-faq-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon i,
.phys-faq-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon i::before {
  color: #008081 !important;
}
/* Title — indent icon further from left */
.phys-faq-accordion .elementor-tab-title {
  padding-left: 32px !important;
}
/* Answer content */
.phys-faq-accordion .elementor-tab-content {
  color: #4b5563 !important;
  padding: 8px 24px 24px;
  margin: 8px 16px 16px;
  border-top: none;
  background: #f0f5f5;
  border-radius: 10px;
  font-size: 15px !important;
  line-height: 1.75 !important;
}
.phys-faq-accordion .elementor-tab-content a {
  color: #008081;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,128,129,.3);
  transition: border-color 0.2s ease;
}
.phys-faq-accordion .elementor-tab-content a:hover { border-color: #008081; }
.phys-faq-accordion .elementor-tab-content strong { color: #111111; }
.phys-faq-accordion .elementor-accordion-item:last-child { margin-bottom: 0; }

/* ── Physicians page mobile ── */
@media (max-width: 767px) {
  .phys-pathways-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .phys-pathway-card { padding: 28px 20px; }

  .phys-forms-row {
    flex-direction: column;
  }

  .phys-checklist {
    grid-template-columns: 1fr;
  }

  .phys-mechanism-section .e-con-inner { flex-direction: column !important; }
  .e-con.phys-mechanism-text-col,
  .e-con.phys-mechanism-image-col {
    width: 100% !important;
    padding: 32px 24px !important;
  }

  .phys-ind-grid {
    grid-template-columns: 1fr;
  }

  .phys-faq-accordion .elementor-tab-title,
  .phys-faq-accordion .elementor-tab-title a {
    font-size: 15px !important;
    padding: 16px 20px;
  }
  .phys-faq-accordion .elementor-tab-content { padding: 4px 20px 16px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .phys-pathways-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .phys-ind-grid { grid-template-columns: repeat(2, 1fr); }
  .phys-checklist { grid-template-columns: repeat(2, 1fr); }
}

