/* ==========================================================================
   Metropolitan Medical Centers — Website Redesign 2026
   Modern, fast, SEO-friendly design system. Navy + Coral brand.
   ========================================================================== */

:root {
  /* Brand */
  --navy:      #2B4898;
  --navy-d:    #1C2E63;
  --navy-dd:   #14204a;
  --coral:     #E63946;
  --coral-d:   #c92b38;
  --teal:      #12AEB6;
  --sky:       #eaf1ff;
  --lav:       #EFEFFA;

  /* Neutrals */
  --ink:       #16203a;
  --body:      #46536e;
  --muted:     #6d7893;
  --line:      #e4e8f2;
  --line-2:    #eef1f8;
  --surface:   #ffffff;
  --bg:        #f7f9fd;
  --bg-2:      #f0f4fc;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(20,32,74,.06), 0 2px 8px rgba(20,32,74,.05);
  --shadow:    0 8px 24px rgba(20,32,74,.09);
  --shadow-lg: 0 20px 50px rgba(20,32,74,.16);
  --shadow-nav:0 6px 30px rgba(20,32,74,.10);
  --ring:      0 0 0 4px rgba(43,72,152,.14);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --container: 1200px;
  --gutter: clamp(18px, 4vw, 44px);

  --f-head: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --f-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { font-family: var(--f-head); color: var(--ink); line-height: 1.12; font-weight: 800; letter-spacing: -.02em; }
ul { list-style: none; }

/* ---- Layout ------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-head); font-weight: 700; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--navy);
  background: var(--sky); padding: 7px 14px; border-radius: 100px;
}
.eyebrow.on-dark { color: #cfe0ff; background: rgba(255,255,255,.10); }
.h-sec { font-size: clamp(28px, 4vw, 44px); margin: 16px 0 14px; }
.sub { font-size: clamp(16px, 1.6vw, 19px); color: var(--muted); max-width: 62ch; }
.center { text-align: center; }
.center .sub { margin-inline: auto; }
.grad-text { background: linear-gradient(100deg, var(--navy), var(--teal)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.coral { color: var(--coral); }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--f-head); font-weight: 700; font-size: 15.5px;
  padding: 14px 26px; border-radius: 100px; transition: .25s var(--ease);
  white-space: nowrap; will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--coral); color: #fff; box-shadow: 0 10px 22px rgba(230,57,70,.30); }
.btn-primary:hover { background: var(--coral-d); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(230,57,70,.38); }
.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 10px 22px rgba(43,72,152,.26); }
.btn-navy:hover { background: var(--navy-d); transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--navy); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--navy); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 17px 34px; font-size: 16.5px; }
.btn-block { width: 100%; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.topbar {
  background: var(--navy-dd); color: #d7e2ff; font-size: 13.5px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 18px; }
.topbar-info { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-info a, .topbar-info span { display: inline-flex; align-items: center; gap: 7px; color: #d7e2ff; }
.topbar-info a:hover { color: #fff; }
.topbar-info svg { width: 15px; height: 15px; opacity: .8; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.lang-toggle { display: inline-flex; background: rgba(255,255,255,.10); border-radius: 100px; padding: 3px; }
.lang-toggle button { color: #cdd9f5; font-size: 12.5px; font-weight: 700; font-family: var(--f-head); padding: 4px 12px; border-radius: 100px; transition: .2s; }
.lang-toggle button.active { background: #fff; color: var(--navy); }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a svg { width: 16px; height: 16px; }

.header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid transparent; transition: box-shadow .3s, border-color .3s; }
.header.scrolled { box-shadow: var(--shadow-nav); border-color: var(--line-2); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 94px; transition: min-height .32s var(--ease); }
.header.scrolled .nav { min-height: 66px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 64px; width: auto; transition: height .32s var(--ease); }
.header.scrolled .brand img { height: 44px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li > a, .nav-links > li > button {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-head); font-weight: 600; font-size: 15.5px; color: var(--ink);
  padding: 10px 15px; border-radius: 10px; transition: .2s; position: relative;
}
.nav-links > li > a:hover, .nav-links > li > button:hover { color: var(--navy); background: var(--sky); }
.nav-links .caret { width: 16px; height: 16px; transition: transform .25s; }
.has-mega { position: static; }
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone { display: inline-flex; align-items: center; gap: 9px; font-family: var(--f-head); font-weight: 800; color: var(--navy); font-size: 16px; }
.nav-phone .ic { width: 38px; height: 38px; display: grid; place-items: center; background: var(--sky); border-radius: 50%; }
.nav-phone .ic svg { width: 18px; height: 18px; color: var(--navy); }

/* Mega menu */
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-top: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 55;
}
.has-mega:hover .mega, .mega:hover, .mega.open { opacity: 1; visibility: visible; transform: translateY(0); }
.has-mega:hover .caret { transform: rotate(180deg); }
.mega-inner { display: grid; grid-template-columns: 1.1fr 1.1fr 1.1fr 1fr; gap: 30px; padding: 34px var(--gutter) 38px; max-width: var(--container); margin-inline: auto; }
.mega-col h4 { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; font-weight: 800; }
.mega-link { display: flex; gap: 12px; align-items: flex-start; padding: 9px 10px; border-radius: 12px; transition: .18s; margin-inline: -10px; }
.mega-link:hover { background: var(--bg-2); }
.mega-link .mi { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; background: var(--sky); color: var(--navy); }
.mega-link .mi svg { width: 20px; height: 20px; }
.mega-link.hot .mi { background: #ffe9eb; color: var(--coral); }
.mega-link b { display: block; font-family: var(--f-head); font-size: 15px; color: var(--ink); font-weight: 700; }
.mega-link small { display: block; color: var(--muted); font-size: 12.8px; line-height: 1.4; }
.mega-link .tag { font-size: 10px; font-weight: 800; letter-spacing: .05em; color: var(--coral); background: #ffe9eb; padding: 2px 7px; border-radius: 100px; margin-left: 6px; vertical-align: middle; }
.mega-promo { background: linear-gradient(160deg, var(--navy), var(--navy-dd)); border-radius: var(--r); padding: 24px; color: #fff; display: flex; flex-direction: column; justify-content: space-between; }
.mega-promo .eyebrow { align-self: flex-start; }
.mega-promo h5 { font-family: var(--f-head); font-size: 20px; font-weight: 800; color: #fff; margin: 12px 0 8px; line-height: 1.2; }
.mega-promo p { color: #c7d4f2; font-size: 13.5px; margin-bottom: 16px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); overflow: hidden; }
.hero::before { content:""; position: absolute; top: -220px; right: -160px; width: 620px; height: 620px; background: radial-gradient(circle, rgba(18,174,182,.16), transparent 62%); z-index: 0; }
.hero::after { content:""; position: absolute; bottom: -260px; left: -180px; width: 560px; height: 560px; background: radial-gradient(circle, rgba(43,72,152,.12), transparent 62%); z-index: 0; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 64px); align-items: center; padding-block: clamp(44px, 6vw, 80px); }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.pill { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 7px 14px; font-size: 13px; font-weight: 600; color: var(--navy); box-shadow: var(--shadow-sm); }
.pill svg { width: 15px; height: 15px; color: var(--teal); }
.hero h1 { font-size: clamp(34px, 5.4vw, 60px); letter-spacing: -.03em; margin-bottom: 20px; }
.hero h1 .u { position: relative; white-space: nowrap; }
.hero h1 .u::after { content:""; position: absolute; left: 0; right: 0; bottom: 4px; height: 12px; background: rgba(230,57,70,.22); z-index: -1; border-radius: 4px; }
.hero-lead { font-size: clamp(17px, 1.9vw, 20px); color: var(--body); max-width: 54ch; margin-bottom: 26px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust { display: flex; align-items: center; gap: 18px; margin-top: 30px; flex-wrap: wrap; }
.stars { display: flex; gap: 2px; color: #f5a623; }
.stars svg { width: 18px; height: 18px; }
.hero-trust .t-txt { font-size: 14px; color: var(--muted); }
.hero-trust .t-txt b { color: var(--ink); }

/* Hero form card */
.hero-form { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--line-2); }
.hero-form .hf-head { background: linear-gradient(135deg, var(--navy), var(--navy-d)); color: #fff; padding: 22px 26px; }
.hero-form .hf-head h3 { color: #fff; font-size: 21px; margin-bottom: 4px; }
.hero-form .hf-head p { color: #c7d4f2; font-size: 13.5px; }
.hero-form form { padding: 22px 26px 26px; display: grid; gap: 13px; }
/* LeadConnector form iframe (plain embed). Responsive min-height floor prevents a blank
   collapse before the form paints; app.js sets the exact height once the form reports it. */
.lc-form { min-height: 680px; transition: height .25s ease; }
@media (max-width: 620px) { .lc-form { min-height: 860px; } }
.field { display: grid; gap: 6px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--muted); font-family: var(--f-head); }
.field input, .field select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: inherit; font-size: 15px; color: var(--ink); background: #fff; transition: .2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--navy); box-shadow: var(--ring); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.hf-note { font-size: 11.5px; color: var(--muted); text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; }
.hf-note svg { width: 13px; height: 13px; }

/* ==========================================================================
   HERO VIDEO BACKGROUND VARIANT
   ========================================================================== */
.hero.has-video { background: url('/wp-content/uploads/adm-landings/mmc-site/real-exterior.jpg') center/cover no-repeat, var(--navy-dd); }
.hero.has-video::before, .hero.has-video::after { display: none; }
.hero-video { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.hero-video iframe { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-video iframe.on { opacity: 1; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(92deg, rgba(11,17,42,.90) 0%, rgba(11,17,42,.74) 40%, rgba(16,25,60,.42) 72%, rgba(16,25,60,.58) 100%),
  linear-gradient(180deg, rgba(11,17,42,.25) 0%, rgba(11,17,42,.15) 55%, rgba(11,17,42,.55) 100%); }
.hero.has-video .hero-grid { position: relative; z-index: 2; }
.hero.has-video h1 { color: #fff; }
.hero.has-video h1 .u::after { background: rgba(230,57,70,.55); }
.hero.has-video .hero-lead { color: #dfe6f8; }
.hero.has-video .hero-trust .t-txt { color: #c4cfec; }
.hero.has-video .hero-trust .t-txt b { color: #fff; }
.hero.has-video .btn-ghost { background: rgba(255,255,255,.10); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.hero.has-video .btn-ghost:hover { background: rgba(255,255,255,.2); box-shadow: inset 0 0 0 1.5px #fff; }
.hero.has-video .pill { background: rgba(255,255,255,.95); }

/* ==========================================================================
   TRUST / INSURANCE CAROUSEL
   ========================================================================== */
.trust-strip { background: #fff; border-block: 1px solid var(--line-2); padding-block: 26px; }
.trust-strip .wrap { display: block; }
.trust-lead { display: block; text-align: center; font-family: var(--f-head); font-weight: 700; color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.ins-marquee { overflow-x: auto; overflow-y: hidden; cursor: grab; scrollbar-width: none; scroll-behavior: auto; touch-action: pan-x; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.ins-marquee::-webkit-scrollbar { display: none; }
.ins-marquee.dragging { cursor: grabbing; scroll-behavior: auto; }
.ins-track { display: flex; align-items: center; gap: clamp(36px, 5vw, 64px); width: max-content; padding-inline: 10px; }
.ins-logo { height: 42px; width: auto; flex-shrink: 0; filter: grayscale(1); opacity: .6; transition: filter .25s, opacity .25s, transform .25s; user-select: none; -webkit-user-drag: none; }
.ins-logo:hover { filter: none; opacity: 1; transform: scale(1.06); }

/* ==========================================================================
   PHOTO MOSAIC (real facility / team)
   ========================================================================== */
.mosaic { display: grid; grid-template-columns: 1.25fr 1fr; grid-auto-rows: 280px; gap: 18px; margin-top: 44px; }
.mosaic-tile { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.mosaic-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.mosaic-tile:hover img { transform: scale(1.05); }
.mosaic-tile .mt-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 20px 14px; background: linear-gradient(180deg, transparent, rgba(11,17,42,.72)); color: #fff; font-family: var(--f-head); font-weight: 700; font-size: 14.5px; opacity: 0; transform: translateY(6px); transition: .3s var(--ease); }
.mosaic-tile:hover .mt-cap { opacity: 1; transform: none; }
@media (max-width: 900px) { .mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; } }
@media (max-width: 620px) { .mosaic { grid-template-columns: 1fr; grid-auto-rows: 230px; } }

/* ==========================================================================
   360 TOUR + INSTAGRAM
   ========================================================================== */
.tour-wrap { margin-top: 40px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--navy-dd); min-height: 500px; }
.tour-wrap iframe { display: block; width: 100% !important; }
.ig-head { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.ig-ic { width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(45deg, #f9ce34, #ee2a7b 55%, #6228d7); display: grid; place-items: center; }
.ig-ic svg { width: 26px; height: 26px; color: #fff; }
.ig-frame { margin-top: 36px; border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.ig-frame iframe { display: block; width: 100%; height: 840px; border: 0; }
.ig-actions { display: flex; justify-content: center; margin-top: 26px; }
@media (max-width: 620px) { .ig-frame iframe { height: 1180px; } }

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.svc-card {
  position: relative; background: #fff; border: 1px solid var(--line-2); border-radius: var(--r);
  padding: 28px 26px; transition: .3s var(--ease); overflow: hidden;
}
.svc-card::before { content:""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--navy), var(--teal)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ic { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; background: var(--sky); color: var(--navy); margin-bottom: 18px; transition: .3s; }
.svc-ic svg { width: 28px; height: 28px; }
.svc-card:hover .svc-ic { background: var(--navy); color: #fff; }
.svc-card.hot .svc-ic { background: #ffe9eb; color: var(--coral); }
.svc-card.hot:hover .svc-ic { background: var(--coral); color: #fff; }
.svc-card h3 { font-size: 20px; margin-bottom: 8px; }
.svc-card p { font-size: 14.5px; color: var(--muted); margin-bottom: 16px; }
.svc-more { display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-head); font-weight: 700; font-size: 14px; color: var(--navy); transition: gap .2s; }
.svc-card:hover .svc-more { gap: 11px; }
.svc-more svg { width: 16px; height: 16px; }
.badge-new { position: absolute; top: 18px; right: 18px; font-family: var(--f-head); font-size: 10.5px; font-weight: 800; letter-spacing: .06em; color: #fff; background: var(--coral); padding: 4px 10px; border-radius: 100px; }

/* ==========================================================================
   FEATURED SERVICE (PRP spotlight)
   ========================================================================== */
.feature { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dd) 100%); color: #fff; border-radius: var(--r-xl); overflow: hidden; position: relative; }
.feature::before { content:""; position: absolute; top: -120px; right: -80px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(18,174,182,.28), transparent 60%); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(24px,4vw,50px); position: relative; }
.feature-img { align-self: stretch; min-height: 360px; background-size: cover; background-position: center; }
.feature-body { padding: clamp(36px, 4vw, 60px); }
.feature-body h2 { color: #fff; font-size: clamp(26px, 3.2vw, 38px); margin: 16px 0 14px; }
.feature-body p { color: #cdd9f5; margin-bottom: 22px; font-size: 16.5px; }
.feature-list { display: grid; gap: 12px; margin-bottom: 28px; }
.feature-list li { display: flex; gap: 11px; align-items: flex-start; color: #eaf0ff; font-size: 15px; }
.feature-list .ck { width: 24px; height: 24px; border-radius: 50%; background: rgba(18,174,182,.22); color: #6ff0f7; display: grid; place-items: center; flex-shrink: 0; }
.feature-list .ck svg { width: 14px; height: 14px; }

/* ==========================================================================
   SPLIT / ABOUT
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.split-media .float-card { position: absolute; background: #fff; border-radius: var(--r); box-shadow: var(--shadow-lg); padding: 16px 20px; display: flex; align-items: center; gap: 13px; }
.float-card .fc-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--sky); color: var(--navy); display: grid; place-items: center; flex-shrink: 0; }
.float-card .fc-ic svg { width: 24px; height: 24px; }
.float-card b { display: block; font-family: var(--f-head); color: var(--ink); font-size: 20px; line-height: 1; }
.float-card small { color: var(--muted); font-size: 12.5px; }
.float-tl { top: 22px; left: -26px; }
.float-br { bottom: 24px; right: -26px; }
.mini-list { display: grid; gap: 14px; margin: 24px 0 30px; }
.mini-list li { display: flex; gap: 13px; align-items: flex-start; }
.mini-list .ck { width: 26px; height: 26px; border-radius: 8px; background: var(--sky); color: var(--navy); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.mini-list .ck svg { width: 16px; height: 16px; }
.mini-list b { color: var(--ink); font-family: var(--f-head); }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why { background: var(--navy-dd); color: #fff; position: relative; overflow: hidden; }
.why::before { content:""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 20%, rgba(43,72,152,.5), transparent 45%), radial-gradient(circle at 85% 80%, rgba(18,174,182,.18), transparent 45%); }
.why .wrap { position: relative; }
.why h2 { color: #fff; }
.why .sub { color: #b9c6e8; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 46px; }
.why-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10); border-radius: var(--r); padding: 26px 22px; transition: .3s var(--ease); }
.why-card:hover { background: rgba(255,255,255,.09); transform: translateY(-5px); }
.why-card .wc-ic { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--coral), var(--coral-d)); color: #fff; display: grid; place-items: center; margin-bottom: 16px; }
.why-card .wc-ic svg { width: 26px; height: 26px; }
.why-card:nth-child(2n) .wc-ic { background: linear-gradient(135deg, var(--teal), #0c8a91); }
.why-card h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.why-card p { color: #b9c6e8; font-size: 14px; }

/* ==========================================================================
   CAMPUS / SISTER BRANDS
   ========================================================================== */
.campus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 44px; }
.campus-card { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 300px; display: flex; align-items: flex-end; box-shadow: var(--shadow); transition: .3s var(--ease); }
.campus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.campus-card .cc-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s var(--ease); }
.campus-card:hover .cc-bg { transform: scale(1.06); }
.campus-card::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,32,74,0) 30%, rgba(20,32,74,.92) 100%); }
.campus-body { position: relative; z-index: 1; padding: 30px; color: #fff; width: 100%; }
.campus-logo { height: 42px; width: auto; margin-bottom: 14px; background: #fff; padding: 8px 12px; border-radius: 10px; }
.campus-tag { display: inline-block; font-family: var(--f-head); font-size: 11.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #cfe0ff; margin-bottom: 8px; }
.campus-body h3 { color: #fff; font-size: 23px; margin-bottom: 8px; }
.campus-body p { color: #dbe4fb; font-size: 14.5px; margin-bottom: 16px; max-width: 44ch; }
.campus-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-head); font-weight: 700; font-size: 14.5px; color: #fff; }
.campus-link svg { width: 17px; height: 17px; transition: transform .2s; }
.campus-card:hover .campus-link svg { transform: translateX(4px); }

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.rev-card { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r); padding: 28px 26px; box-shadow: var(--shadow-sm); }
.rev-card .stars { margin-bottom: 14px; }
.rev-card p { color: var(--body); font-size: 15.5px; margin-bottom: 20px; }
.rev-who { display: flex; align-items: center; gap: 12px; }
.rev-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--teal)); color: #fff; display: grid; place-items: center; font-family: var(--f-head); font-weight: 800; }
.rev-who b { display: block; color: var(--ink); font-family: var(--f-head); font-size: 15px; }
.rev-who small { color: var(--muted); font-size: 12.5px; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band { background: linear-gradient(120deg, var(--coral), #b8202d); border-radius: var(--r-xl); padding: clamp(40px, 5vw, 68px); text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content:""; position: absolute; top: -140px; left: -80px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(255,255,255,.16), transparent 60%); }
.cta-band::after { content:""; position: absolute; bottom: -160px; right: -80px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(0,0,0,.12), transparent 60%); }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.6vw, 42px); position: relative; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 18px; position: relative; max-width: 56ch; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--navy-dd); color: #b9c6e8; padding-top: clamp(56px, 7vw, 84px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.10); }
.footer .f-brand img { height: 52px; background: #fff; padding: 8px 12px; border-radius: 12px; margin-bottom: 18px; }
.footer .f-brand p { font-size: 14.5px; margin-bottom: 20px; max-width: 34ch; }
.f-social { display: flex; gap: 10px; }
.f-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: .2s; }
.f-social a:hover { background: var(--coral); transform: translateY(-3px); }
.f-social svg { width: 18px; height: 18px; color: #fff; }
.footer h4 { color: #fff; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--f-head); }
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: 14.5px; transition: .2s; display: inline-flex; align-items: center; gap: 8px; }
.footer ul a:hover { color: #fff; padding-left: 3px; }
.f-contact li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 15px; font-size: 14.5px; }
.f-contact svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.f-sister { margin-top: 6px; }
.f-sister a { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 11px 14px; margin-bottom: 10px; transition: .2s; }
.f-sister a:hover { background: rgba(255,255,255,.10); }
.f-sister .fs-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.f-sister b { color: #fff; font-family: var(--f-head); font-size: 14px; display: block; }
.f-sister small { font-size: 12px; color: #93a3c9; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-block: 24px; gap: 16px; flex-wrap: wrap; font-size: 13px; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dd) 100%); color: #fff; position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 96px); }
.page-hero::before { content:""; position: absolute; top: -160px; right: -100px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(18,174,182,.22), transparent 60%); }
.page-hero .wrap { position: relative; }
.crumbs { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: #b9c6e8; margin-bottom: 18px; }
.crumbs a:hover { color: #fff; }
.crumbs svg { width: 14px; height: 14px; opacity: .6; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 52px); max-width: 20ch; }
.page-hero p { color: #cdd9f5; font-size: clamp(16px,1.8vw,19px); max-width: 58ch; margin-top: 16px; }

/* ==========================================================================
   SERVICE PAGE COMPONENTS (steps / faq / related / book)
   ========================================================================== */
.prose p { color: var(--body); font-size: 16.5px; margin-bottom: 16px; }
.prose h3 { font-size: 22px; margin: 8px 0 12px; }
/* navy feature boxes nested inside .prose keep light text (About promise, Careers roles) */
.prose .feature-body p { color: #fff; }
.prose .feature-body .eyebrow.on-dark { color: #cfe0ff; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r); padding: 28px 24px; position: relative; box-shadow: var(--shadow-sm); }
.step .num { width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(135deg, var(--navy), var(--teal)); color: #fff; font-family: var(--f-head); font-weight: 800; font-size: 20px; display: grid; place-items: center; margin-bottom: 16px; }
.step h4 { font-size: 17px; margin-bottom: 7px; }
.step p { font-size: 14px; color: var(--muted); }
.step:not(:last-child)::after { content:""; position: absolute; top: 46px; right: -12px; width: 24px; height: 2px; background: var(--line); z-index: 1; }

.faq { display: grid; gap: 14px; max-width: 820px; margin: 40px auto 0; }
.faq-item { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; transition: box-shadow .2s; }
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: var(--f-head); font-weight: 700; color: var(--ink); font-size: 17px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .fq-ic { width: 28px; height: 28px; border-radius: 50%; background: var(--sky); color: var(--navy); display: grid; place-items: center; flex-shrink: 0; transition: transform .25s, background .2s; }
.faq-item summary .fq-ic svg { width: 16px; height: 16px; }
.faq-item[open] summary .fq-ic { transform: rotate(45deg); background: var(--navy); color: #fff; }
.faq-item .fq-body { padding: 0 24px 22px; color: var(--body); font-size: 15.5px; }

.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.rel-card { display: flex; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--line-2); border-radius: var(--r); padding: 20px; transition: .25s var(--ease); }
.rel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.rel-card .rc-ic { width: 48px; height: 48px; border-radius: 13px; background: var(--sky); color: var(--navy); display: grid; place-items: center; flex-shrink: 0; }
.rel-card .rc-ic svg { width: 24px; height: 24px; }
.rel-card b { font-family: var(--f-head); color: var(--ink); font-size: 16px; display: block; }
.rel-card small { color: var(--muted); font-size: 13px; }

.book-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,54px); align-items: center; background: linear-gradient(135deg, var(--navy), var(--navy-dd)); border-radius: var(--r-xl); padding: clamp(32px,4vw,54px); color: #fff; position: relative; overflow: hidden; }
.book-split::before { content:""; position: absolute; top: -120px; right: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(18,174,182,.25), transparent 60%); }
.book-split h2 { color: #fff; font-size: clamp(26px,3vw,36px); position: relative; }
.book-split p { color: #cdd9f5; position: relative; margin: 14px 0 20px; }
.book-split .bs-form { background: #fff; border-radius: var(--r-lg); padding: 26px; position: relative; box-shadow: var(--shadow-lg); }
.bulletlist { display: grid; gap: 12px; position: relative; margin-top: 20px; }
.bulletlist li { display: flex; gap: 11px; align-items: flex-start; color: #eaf0ff; font-size: 15.5px; }
.bulletlist .ck { width: 24px; height: 24px; border-radius: 50%; background: rgba(18,174,182,.22); color: #6ff0f7; display: grid; place-items: center; flex-shrink: 0; }
.bulletlist .ck svg { width: 14px; height: 14px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } .step::after { display: none; } .rel-grid { grid-template-columns: 1fr; } .book-split { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .steps { grid-template-columns: 1fr; } }

/* ==========================================================================
   AESTHETIC SPECIALS (big flyer-style price cards)
   ========================================================================== */
.special-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 40px; max-width: 880px; margin-inline: auto; }
.special-card { position: relative; background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px 26px; text-align: center; box-shadow: var(--shadow); overflow: hidden; }
.special-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--coral), var(--navy)); }
.sp-badge { position: absolute; top: 14px; right: 14px; font-family: var(--f-head); font-size: 11px; font-weight: 800; letter-spacing: .05em; color: #fff; background: var(--coral); padding: 5px 12px; border-radius: 100px; }
.special-card h3 { font-size: 22px; margin-bottom: 4px; }
.sp-note { display: block; font-family: var(--f-head); font-weight: 600; font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.sp-old { display: inline-block; font-family: var(--f-head); font-weight: 700; font-size: 17px; color: var(--muted); text-decoration: line-through; text-decoration-color: var(--coral); text-decoration-thickness: 2px; margin-right: 12px; }
.sp-new { display: inline-block; font-family: var(--f-head); font-weight: 800; font-size: clamp(38px, 5vw, 52px); color: var(--coral); line-height: 1; letter-spacing: -.02em; }
.sp-desc { font-size: 14px; color: var(--body); margin-top: 14px; }
.special-foot { text-align: center; margin-top: 26px; }
.special-foot .fnote { display: block; font-size: 14px; color: var(--muted); margin-bottom: 18px; }
@media (max-width: 680px) { .special-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ==========================================================================
   MOBILE NAV
   ========================================================================== */
.hamburger { display: none; width: 46px; height: 46px; border-radius: 12px; background: var(--sky); }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--navy); margin: 4px auto; border-radius: 2px; transition: .3s; }
.mobile-nav { position: fixed; top: 0; right: 0; bottom: 0; left: auto; width: min(88vw, 380px); z-index: 90; background: #fff; transform: translateX(100%); transition: transform .35s var(--ease); overflow-x: hidden; overflow-y: auto; padding: 24px var(--gutter) 60px; box-shadow: -20px 0 50px rgba(20,32,74,.18); }
.mobile-nav.open { transform: none; }
.mn-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.mn-head img { height: 46px; }
.mn-close { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-2); font-size: 24px; color: var(--navy); }
.mn-links > li { border-bottom: 1px solid var(--line-2); }
.mn-links > li > a, .mn-acc-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 16px 4px; font-family: var(--f-head); font-weight: 700; font-size: 18px; color: var(--ink); }
.mn-acc-btn svg { width: 20px; height: 20px; transition: transform .25s; }
.mn-acc-btn.open svg { transform: rotate(180deg); }
.mn-sub { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.mn-sub.open { max-height: 800px; }
.mn-sub a { display: block; padding: 11px 4px 11px 16px; color: var(--body); font-size: 15.5px; }
.mn-cta { margin-top: 26px; display: grid; gap: 12px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .mega-inner { grid-template-columns: 1fr 1fr; }
  .mega-promo { grid-column: 1 / -1; flex-direction: row; align-items: center; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form { max-width: 520px; }
  .split, .feature-grid, .campus-grid { grid-template-columns: 1fr; }
  .feature-img { min-height: 260px; }
  .svc-grid, .rev-grid { grid-template-columns: 1fr 1fr; }
  .float-tl { left: 10px; } .float-br { right: 10px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  /* Compact top utility bar: address + language + social. It sits above the sticky
     header, so it scrolls away (disappears) naturally as the user scrolls down. */
  .topbar { display: block; }
  .topbar .wrap { min-height: 40px; gap: 10px; }
  .topbar-info { gap: 0; flex: 1; min-width: 0; }
  .topbar-info > a[href^="tel:"], .topbar-info > span { display: none; }
  .topbar-info > a[href*="maps"] { display: inline-flex; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .topbar-right { gap: 12px; }
  /* Header = logo + hamburger only; the CTAs live in the bottom bar on phones */
  .nav-cta .btn-primary { display: none; }
  .nav { gap: 12px; min-height: 74px; }
  .header.scrolled .nav { min-height: 60px; }
  .brand img { height: 54px; }
  .header.scrolled .brand img { height: 42px; }
  .mobile-cta-bar { display: flex; }
  .svc-grid, .rev-grid, .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer { padding-bottom: 84px; } /* clear the fixed bottom CTA bar */
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .field-row { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ===== Aesthetic pricing chips (PRP feature) ===== */
.price-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0 4px; }
.price-chip { flex: 1 1 205px; min-width: 195px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.24); border-radius: var(--r); padding: 14px 16px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.price-chip .pc-label { display: block; font: 700 12px/1.35 var(--f-head); letter-spacing: .06em; text-transform: uppercase; color: #cfe0ff; margin-bottom: 7px; }
.price-chip .pc-old { font: 600 14px/1 var(--f-body); color: rgba(255,255,255,.55); text-decoration: line-through; margin-right: 9px; }
.price-chip .pc-new { font: 800 28px/1 var(--f-head); color: #fff; }
.feature-note { font: 13.5px/1.55 var(--f-body); color: rgba(255,255,255,.78); margin: 12px 0 20px; }

/* ===== IV Therapy menu ===== */
.ivx-promo { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; background: linear-gradient(120deg, var(--coral) 0%, #ff6b5e 55%, var(--coral-d) 100%); color: #fff; border-radius: var(--r-lg); padding: clamp(18px,3vw,26px) clamp(18px,3.5vw,32px); box-shadow: var(--shadow); margin: 30px 0 34px; }
.ivx-promo .pct { font: 900 clamp(1.7rem,3.6vw,2.6rem)/1 var(--f-head); background: #fff; color: var(--coral-d); border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow-sm); transform: rotate(-2deg); white-space: nowrap; }
.ivx-promo b { display: block; font: 800 clamp(1.05rem,2.2vw,1.45rem)/1.2 var(--f-head); }
.ivx-promo p { margin: 5px 0 0; font: 14.5px/1.45 var(--f-body); color: rgba(255,255,255,.94); }
.ivx-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(228px, 1fr)); gap: 14px; }
.ivx-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 16px; position: relative; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 8px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.ivx-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ivx-ic { width: 40px; height: 40px; border-radius: 50%; background: var(--sky); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ivx-ic svg { width: 20px; height: 20px; }
.ivx-card h3 { font: 800 16px/1.3 var(--f-head); color: var(--ink); margin: 0; padding-right: 58px; }
.ivx-card .ing { font: 12.5px/1.55 var(--f-body); color: var(--muted); margin: 0; }
.ivx-price { position: absolute; top: 14px; right: 14px; background: var(--coral); color: #fff; font: 800 14.5px/1 var(--f-head); border-radius: 999px; padding: 9px 12px; box-shadow: var(--shadow-sm); }
.ivx-card.is-nad { grid-column: span 2; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dd) 100%); border-color: transparent; }
.ivx-card.is-nad h3 { color: #fff; }
.ivx-card.is-nad .ing { color: rgba(255,255,255,.82); }
.ivx-card.is-nad .ivx-ic { background: rgba(255,255,255,.14); color: #fff; }
.ivx-card.is-nad .ivx-price { background: var(--teal); }
.ivx-tag { position: absolute; top: -10px; left: 14px; background: var(--coral); color: #fff; font: 800 11px/1 var(--f-head); letter-spacing: .08em; text-transform: uppercase; border-radius: 6px; padding: 5px 9px; box-shadow: var(--shadow-sm); }
.ivx-nadben { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 2px; }
.ivx-nadben span { font: 600 11.5px/1 var(--f-body); letter-spacing: .03em; color: #fff; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.26); border-radius: 999px; padding: 6px 10px; }
.ivx-foot { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 26px; }
.ivx-foot small { color: var(--muted); font: 13.5px/1.55 var(--f-body); max-width: 560px; }
.ivx-disc { display: block; margin-top: 14px; color: var(--muted); font: italic 12px/1.5 var(--f-body); }
@media (max-width: 640px) { .ivx-card.is-nad { grid-column: span 1; } .ivx-promo { text-align: left; } }

/* ==========================================================================
   MOBILE BOTTOM CTA BAR (phones only; appears on scroll, hides at the top)
   ========================================================================== */
.mobile-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,.94); backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid var(--line-2); box-shadow: 0 -8px 26px rgba(20,32,74,.14);
  transform: translateY(130%); transition: transform .38s var(--ease);
}
.mobile-cta-bar.show { transform: none; }
.mobile-cta-bar .btn { flex: 1; padding: 14px 8px; font-size: 14px; gap: 7px; }
.mobile-cta-bar .btn svg { width: 16px; height: 16px; flex: 0 0 auto; }

/* ==========================================================================
   PAGE-LOAD INTRO (logo reveal, blends into the page)
   ========================================================================== */
html.intro-seen .preloader { display: none !important; }
.preloader {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  background: radial-gradient(1200px 600px at 50% 30%, #1e2f63, var(--navy-dd) 70%);
  opacity: 1; visibility: visible;
  transition: opacity .6s ease, visibility .6s ease;
  animation: plAutoHide 0s linear 2.6s forwards; /* JS-less safety hide */
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.pl-card { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 0 24px; }
.pl-logo { background: #fff; border-radius: 18px; padding: 18px 26px; box-shadow: 0 24px 70px rgba(0,0,0,.45); animation: plRise .7s var(--ease) both; }
.pl-logo img { height: 66px; width: auto; display: block; }
.pl-name { font-family: var(--f-head); font-weight: 700; font-size: clamp(10px, 2.7vw, 13px); letter-spacing: .16em; text-transform: uppercase; color: #cfe0ff; text-align: center; max-width: 90vw; line-height: 1.5; opacity: 0; animation: plFade .6s ease .35s both; }
.pl-bar { width: 170px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.16); overflow: hidden; position: relative; }
.pl-bar::after { content: ""; position: absolute; inset: 0; width: 42%; border-radius: 4px; background: linear-gradient(90deg, var(--coral), #ff8a93); animation: plSlide 1.1s ease-in-out infinite; }
@keyframes plRise { from { opacity: 0; transform: translateY(16px) scale(.95); } to { opacity: 1; transform: none; } }
@keyframes plFade { to { opacity: 1; } }
@keyframes plSlide { 0% { transform: translateX(-120%); } 100% { transform: translateX(320%); } }
@keyframes plAutoHide { to { opacity: 0; visibility: hidden; pointer-events: none; } }
@media (prefers-reduced-motion: reduce) { .preloader { display: none !important; } }

/* keep the mobile bottom CTA bar showing on phones (must follow the base rule above) */
@media (max-width: 620px) { .mobile-cta-bar { display: flex; } }

/* Keep the LeadConnector chat bubble clear of the mobile bottom CTA bar */
@media (max-width: 620px) {
  chat-widget, #chat-widget, .chat-widget, [id*="lc_text-widget"],
  [class*="chat-widget"], [class*="lc_text-widget"],
  iframe[src*="widgets.leadconnectorhq.com"], iframe[src*="leadconnector"] {
    bottom: 84px !important;
  }
}
