@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ============================================================
   ROOT
   ============================================================ */

:root {
  --navy:        #0A1628;
  --navy-mid:    #0D1E38;
  --navy-700:    #152848;
  --teal:        #00B4D8;
  --teal-dark:   #0096C7;
  --teal-deeper: #0077B6;
  --teal-light:  #48CAE4;
  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-500:    #64748B;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-800:    #1E293B;
  --red:         #EF4444;
  --red-dark:    #DC2626;
  --amber:       #F59E0B;

  --font-display: 'Sora', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --shadow-sm:   0 1px 4px rgba(10,22,40,.07);
  --shadow-md:   0 4px 20px rgba(10,22,40,.10);
  --shadow-lg:   0 10px 44px rgba(10,22,40,.14);
  --shadow-teal: 0 4px 28px rgba(0,180,216,.40);

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.1; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================================
   LAYOUT
   ============================================================ */

.container        { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container--narrow{ max-width: 860px;  margin: 0 auto; padding: 0 28px; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled {
  background: rgba(10,22,40,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav__inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.nav__logo-icon {
  width: 42px; height: 42px;
  overflow: hidden; flex-shrink: 0;
}
.nav__logo-icon-img {
  height: 42px; width: auto;
  max-width: none; display: block;
}
.nav__logo-text { display: flex; flex-direction: column; }
.nav__logo-main {
  font-family: var(--font-display); font-size: 18px; font-weight: 800;
  color: white; letter-spacing: -.03em; line-height: 1.1;
}
.nav__logo-sub {
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  color: var(--teal); letter-spacing: .13em; text-transform: uppercase;
}
.nav__links {
  display: flex; align-items: center; gap: 28px;
  margin-left: auto; list-style: none;
}
.nav__links a {
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: color .2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 2px; background: var(--teal);
  transition: right .25s var(--ease);
  border-radius: 2px;
}
.nav__links a:hover { color: white; }
.nav__links a:hover::after,
.nav__links a.active::after { right: 0; }
.nav__links a.active { color: white; }
.nav__cta {
  display: flex; align-items: center; gap: 10px; margin-left: 16px; flex-shrink: 0;
}
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; margin-left: auto; padding: 4px;
  background: none; border: none;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px; transition: all .25s;
}
.nav__mobile {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(10,22,40,.98); backdrop-filter: blur(14px);
  padding: 24px 28px; z-index: 199;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-direction: column; gap: 0;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: rgba(255,255,255,.75); font-size: 15px; font-weight: 500;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: white; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600;
  border-radius: var(--radius-pill); cursor: pointer;
  transition: all .22s var(--ease); border: 2px solid transparent;
  white-space: nowrap; text-decoration: none; line-height: 1;
}
.btn--sm   { padding: 9px 20px;  font-size: 13px; }
.btn--md   { padding: 12px 26px; font-size: 14px; }
.btn--lg   { padding: 16px 36px; font-size: 16px; }

.btn--primary { background: var(--teal); color: var(--navy); }
.btn--primary:hover {
  background: white; color: var(--navy);
  box-shadow: var(--shadow-teal); transform: translateY(-1px);
}
.btn--outline {
  background: transparent; color: white;
  border-color: rgba(255,255,255,.3);
}
.btn--outline:hover {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55);
}
.btn--outline-teal {
  background: transparent; color: var(--teal); border-color: var(--teal);
}
.btn--outline-teal:hover { background: var(--teal); color: var(--navy); }
.btn--red { background: var(--red-dark); color: white; }
.btn--red:hover {
  background: #b91c1c; box-shadow: 0 4px 20px rgba(220,38,38,.4);
  transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 72px;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 8% 65%,  rgba(0,150,199,.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 88% 18%,  rgba(0,119,182,.28) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 60% 95%,  rgba(0,180,216,.12) 0%, transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, #091424 100%);
}
.hero__bg--cardiac {
  background:
    radial-gradient(ellipse 70% 50% at 10% 70%,  rgba(220,38,38,.2)  0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 20%,  rgba(239,68,68,.15) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 55% 95%,  rgba(0,119,182,.18) 0%, transparent 55%),
    linear-gradient(160deg, #0a0d18 0%, #130a18 55%, #0a1220 100%);
}
.hero__bg--sick {
  background:
    radial-gradient(ellipse 70% 55% at 15% 60%,  rgba(0,180,216,.2)  0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 80% 25%,  rgba(0,150,199,.22) 0%, transparent 55%),
    linear-gradient(160deg, #071820 0%, var(--navy-mid) 55%, #07151e 100%);
}
.hero__bg--injury {
  background:
    radial-gradient(ellipse 65% 55% at 10% 65%,  rgba(0,119,182,.25) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 82% 20%,  rgba(0,180,216,.18) 0%, transparent 55%),
    linear-gradient(160deg, #080f1c 0%, #0c1a30 55%, #091420 100%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,180,216,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,216,.035) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero__content {
  position: relative; z-index: 2;
  padding: 80px 0;
  animation: heroFadeIn .8s var(--ease) both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,180,216,.1); border: 1px solid rgba(0,180,216,.22);
  border-radius: var(--radius-pill); padding: 6px 16px;
  font-size: 11px; font-weight: 700; font-family: var(--font-body);
  color: var(--teal); letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__eyebrow--red {
  background: rgba(220,38,38,.12); border-color: rgba(220,38,38,.25);
  color: #fca5a5;
}
.blink {
  width: 7px; height: 7px; background: currentColor;
  border-radius: 50%; animation: blink-anim 2s ease-in-out infinite;
}
@keyframes blink-anim {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.75); }
}
.hero__title {
  font-size: clamp(40px,6vw,82px); font-weight: 800;
  color: white; letter-spacing: -.035em; margin-bottom: 24px;
  max-width: 820px;
}
.hero__title em { font-style: normal; color: var(--teal); }
.hero__title .accent-red { color: #fca5a5; }
.hero__subtitle {
  font-size: clamp(15px,1.8vw,19px); color: rgba(255,255,255,.62);
  max-width: 560px; line-height: 1.7; margin-bottom: 40px;
}
.hero__actions {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 52px;
}
.hero__trust {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.hero__trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: 13px; font-weight: 500;
}
.hero__trust-item svg { color: var(--teal); flex-shrink: 0; }

/* ============================================================
   SECTION BASE
   ============================================================ */

.section           { padding: 96px 0; }
.section--dark     { background: var(--navy); color: white; }
.section--gray     { background: var(--gray-50); }
.section--navy-mid { background: var(--navy-mid); color: white; }

.section__eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700;
  font-family: var(--font-body); letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
.section--dark .section__eyebrow { color: var(--teal-light); }

.section__title {
  font-size: clamp(28px,4vw,50px); font-weight: 800;
  color: var(--gray-800); letter-spacing: -.03em; margin-bottom: 14px;
}
.section--dark .section__title,
.section--navy-mid .section__title { color: white; }

.section__subtitle {
  font-size: 17px; color: var(--gray-500);
  max-width: 580px; line-height: 1.72;
}
.section--dark .section__subtitle,
.section--navy-mid .section__subtitle { color: rgba(255,255,255,.55); }

.section__header     { margin-bottom: 56px; }
.section__header--center { text-align: center; }
.section__header--center .section__subtitle { margin: 0 auto; }

/* ============================================================
   TRUST STRIP
   ============================================================ */

.trust-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 22px 0;
}
.trust-strip__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,.7); font-size: 13px; font-weight: 500;
}
.trust-item svg { color: var(--teal); flex-shrink: 0; }

/* ============================================================
   BADGES
   ============================================================ */

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: var(--radius-pill); padding: 5px 14px;
  font-size: 12px; font-weight: 700; font-family: var(--font-body);
  letter-spacing: .04em;
}
.badge--teal {
  background: rgba(0,180,216,.1); border: 1px solid rgba(0,180,216,.25);
  color: var(--teal);
}
.badge--red {
  background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.25);
  color: #f87171;
}
.badge--white {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: white;
}
.badge--amber {
  background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.25);
  color: var(--amber);
}
.badges-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 18px;
}
.service-card {
  background: white; border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); padding: 26px 22px;
  transition: all .25s var(--ease); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-deeper) 100%);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .3s var(--ease);
}
.service-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: rgba(0,180,216,.18);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card__icon {
  width: 44px; height: 44px;
  background: rgba(0,180,216,.08); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--teal-dark);
}
.service-card__title {
  font-size: 15px; font-weight: 700; color: var(--gray-800); margin-bottom: 7px;
}
.service-card__desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ============================================================
   FEATURE CARDS (3 priority service cards)
   ============================================================ */

.feature-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.feature-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 400px; display: flex; flex-direction: column;
  justify-content: flex-end; text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  cursor: pointer;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card__bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 36px 36px;
}
.feature-card__bg--cardiac {
  background-color: #0f0a18;
  background-image:
    radial-gradient(ellipse at 20% 80%,  rgba(220,38,38,.3)  0%, transparent 60%),
    radial-gradient(ellipse at 75% 20%,  rgba(0,119,182,.25) 0%, transparent 55%),
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: auto, auto, 36px 36px, 36px 36px;
}
.feature-card__bg--sick {
  background-color: #071820;
  background-image:
    radial-gradient(ellipse at 75% 20%,  rgba(0,180,216,.28) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%,  rgba(0,119,182,.2)  0%, transparent 60%),
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: auto, auto, 36px 36px, 36px 36px;
}
.feature-card__bg--injury {
  background-color: #081020;
  background-image:
    radial-gradient(ellipse at 50% 100%, rgba(0,119,182,.32) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 10%,  rgba(0,180,216,.18) 0%, transparent 50%),
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: auto, auto, 36px 36px, 36px 36px;
}
.feature-card__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 65%);
}
.feature-card__body { position: relative; z-index: 2; padding: 28px; }
.feature-card__tag {
  display: inline-block;
  background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-pill); padding: 4px 12px;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.8);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px;
}
.feature-card__title {
  font-size: 24px; font-weight: 800; color: white;
  letter-spacing: -.025em; margin-bottom: 10px; line-height: 1.1;
}
.feature-card__desc {
  font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 22px;
}
.feature-card__arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: var(--teal);
  transition: gap .2s;
}
.feature-card:hover .feature-card__arrow { gap: 12px; }

/* ============================================================
   PILLARS (why choose us)
   ============================================================ */

.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.pillar { text-align: center; }
.pillar__icon {
  width: 64px; height: 64px;
  background: rgba(0,180,216,.09); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--teal);
  transition: all .25s var(--ease);
}
.section--dark .pillar__icon { background: rgba(0,180,216,.11); }
.pillar:hover .pillar__icon {
  background: rgba(0,180,216,.18); transform: translateY(-2px);
}
.pillar__title {
  font-size: 17px; font-weight: 700; color: var(--gray-800); margin-bottom: 10px;
}
.section--dark .pillar__title { color: white; }
.pillar__desc { font-size: 14px; color: var(--gray-500); line-height: 1.65; }
.section--dark .pillar__desc { color: rgba(255,255,255,.52); }

/* ============================================================
   STATS STRIP
   ============================================================ */

.stats-strip {
  background: var(--teal-deeper); padding: 56px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.stat__number {
  font-size: clamp(38px,5vw,60px); font-weight: 800; color: white;
  letter-spacing: -.04em; line-height: 1; margin-bottom: 8px;
}
.stat__label { font-size: 14px; color: rgba(255,255,255,.62); font-weight: 500; }

/* ============================================================
   TWO-COL LAYOUT
   ============================================================ */

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col--flip { direction: rtl; }
.two-col--flip > * { direction: ltr; }

/* ============================================================
   VISUAL PANELS (hero-level image replacement)
   ============================================================ */

.visual-panel {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; min-height: 440px;
  display: flex; align-items: center; justify-content: center;
}
.visual-panel--cardiac {
  background:
    radial-gradient(ellipse at 30% 70%, rgba(220,38,38,.3) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(0,119,182,.2) 0%, transparent 55%),
    linear-gradient(145deg, #0a0a18 0%, #18080a 100%);
}
.visual-panel--sick {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(0,180,216,.28) 0%, transparent 60%),
    linear-gradient(145deg, #071820 0%, var(--navy-mid) 100%);
}
.visual-panel--injury {
  background:
    radial-gradient(ellipse at 40% 60%, rgba(0,119,182,.3) 0%, transparent 60%),
    linear-gradient(145deg, #080f1c 0%, #0d1a30 100%);
}
.visual-panel__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,180,216,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,216,.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.visual-panel__center {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.visual-panel__icon-ring {
  width: 128px; height: 128px;
  background: rgba(0,180,216,.1); border: 1.5px solid rgba(0,180,216,.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  animation: ring-pulse 3s ease-in-out infinite;
}
.visual-panel--cardiac .visual-panel__icon-ring {
  background: rgba(220,38,38,.1); border-color: rgba(220,38,38,.25); color: #f87171;
}
@keyframes ring-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,180,216,.25); }
  50%      { box-shadow: 0 0 0 20px rgba(0,180,216,0); }
}
.visual-panel--cardiac .visual-panel__icon-ring {
  animation-name: ring-pulse-red;
}
@keyframes ring-pulse-red {
  0%,100% { box-shadow: 0 0 0 0 rgba(220,38,38,.25); }
  50%      { box-shadow: 0 0 0 20px rgba(220,38,38,0); }
}
.visual-panel__label {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: white; text-align: center; letter-spacing: -.02em;
}
.visual-panel__sub {
  font-size: 13px; color: rgba(255,255,255,.5); text-align: center;
}

/* ============================================================
   STEP FLOW
   ============================================================ */

.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-row::before {
  content: ''; position: absolute;
  top: 26px; left: calc(12.5% + 14px); right: calc(12.5% + 14px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(0,180,216,.2));
}
.step { text-align: center; position: relative; z-index: 1; }
.step__num {
  width: 52px; height: 52px; background: var(--teal); color: var(--navy);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 800;
  margin: 0 auto 18px;
}
.step__title { font-size: 15px; font-weight: 700; color: var(--gray-800); margin-bottom: 8px; }
.section--dark .step__title { color: white; }
.step__desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.section--dark .step__desc { color: rgba(255,255,255,.5); }

/* ============================================================
   SYMPTOM / CONDITION LIST
   ============================================================ */

.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; align-items: center; gap: 13px;
  padding: 15px 20px; background: white;
  border: 1px solid var(--gray-100); border-radius: var(--radius-md);
  font-size: 15px; font-weight: 500; color: var(--gray-700);
  transition: border-color .2s, box-shadow .2s;
}
.check-list li:hover {
  border-color: rgba(0,180,216,.22); box-shadow: var(--shadow-sm);
}
.check-list li svg { flex-shrink: 0; }
.check-list--red li svg { color: var(--red); }
.check-list--teal li svg { color: var(--teal-dark); }

/* ============================================================
   DIVIDER CARDS (value props)
   ============================================================ */

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  background: white; border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); padding: 30px 24px;
  transition: all .25s var(--ease);
}
.value-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: rgba(0,180,216,.2);
}
.value-card--dark {
  background: var(--navy-700); border-color: rgba(255,255,255,.07);
}
.value-card__icon {
  width: 52px; height: 52px;
  background: rgba(0,180,216,.1); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); margin-bottom: 18px;
}
.value-card--dark .value-card__icon { background: rgba(0,180,216,.12); }
.value-card__title { font-size: 17px; font-weight: 700; color: var(--gray-800); margin-bottom: 9px; }
.value-card--dark .value-card__title { color: white; }
.value-card__desc { font-size: 14px; color: var(--gray-500); line-height: 1.65; }
.value-card--dark .value-card__desc { color: rgba(255,255,255,.5); }

/* ============================================================
   CTA SECTIONS
   ============================================================ */

.cta-section {
  background: var(--navy); padding: 80px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0,180,216,.14) 0%, transparent 65%);
}
.cta-section--red {
  background: linear-gradient(160deg, #0a0c18 0%, #1a0808 100%);
}
.cta-section--red .cta-section__glow {
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(220,38,38,.18) 0%, transparent 65%);
}
.cta-section__content { position: relative; z-index: 2; }
.cta-section__title {
  font-size: clamp(28px,4vw,46px); font-weight: 800; color: white;
  letter-spacing: -.03em; margin-bottom: 14px;
}
.cta-section__sub {
  font-size: 17px; color: rgba(255,255,255,.58);
  margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto;
  line-height: 1.68;
}
.cta-section__actions {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}
.cta-phone {
  font-family: var(--font-display); font-size: clamp(22px, 3vw, 36px);
  font-weight: 800; color: var(--teal); letter-spacing: -.02em;
  margin-bottom: 24px; display: block;
}
.cta-phone--red { color: #fca5a5; }

/* ============================================================
   INLINE CTA BANNER
   ============================================================ */

.inline-cta {
  background: var(--teal-deeper); padding: 32px 40px;
  border-radius: var(--radius-lg); display: flex;
  align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
}
.inline-cta__text { font-size: 20px; font-weight: 700; color: white; letter-spacing: -.02em; }
.inline-cta__sub { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 4px; }

/* ============================================================
   ALERT BANNER
   ============================================================ */

.alert-banner {
  background: var(--red-dark); padding: 14px 24px;
  text-align: center; font-size: 14px; font-weight: 600;
  color: white; letter-spacing: .02em;
  position: fixed; top: 0; left: 0; right: 0; z-index: 202;
}
.alert-banner a { color: white; text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--navy); padding: 64px 0 32px;
  color: rgba(255,255,255,.55);
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px; margin-bottom: 52px;
}
.footer__logo-icon {
  width: 46px; height: 46px;
  overflow: hidden; flex-shrink: 0;
  margin-bottom: 14px;
}
.footer__logo-icon-img {
  height: 46px; width: auto;
  max-width: none; display: block;
}
.footer__name   { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: white; letter-spacing: -.02em; margin-bottom: 4px; }
.footer__sub    { font-size: 10.5px; color: var(--teal); letter-spacing: .13em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.footer__desc   { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.42); max-width: 290px; margin-bottom: 24px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px; background: rgba(255,255,255,.07);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); transition: all .2s;
}
.footer__social a:hover { background: rgba(0,180,216,.18); color: var(--teal); }
.footer__h { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: white; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 18px; }
.footer__ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer__ul a { font-size: 13px; color: rgba(255,255,255,.48); transition: color .2s; }
.footer__ul a:hover { color: white; }
.footer__ci { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; font-size: 13px; line-height: 1.6; }
.footer__ci svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer__ci a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer__ci a:hover { color: white; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,.28); }
.footer__disc { font-size: 11px; color: rgba(255,255,255,.22); max-width: 460px; text-align: right; line-height: 1.5; }

/* ============================================================
   MOBILE FLOATING CTA
   ============================================================ */

.mob-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 190; background: rgba(10,22,40,.97);
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 12px 16px; gap: 10px;
}
.mob-cta a {
  flex: 1; text-align: center; padding: 13px;
  border-radius: var(--radius-pill); font-weight: 700; font-size: 14px;
}
.mob-cta__call { background: var(--teal); color: var(--navy); }
.mob-cta__book { background: rgba(255,255,255,.08); color: white; border: 1px solid rgba(255,255,255,.14); }

/* ============================================================
   ANIMATIONS
   ============================================================ */

.fade-up {
  opacity: 0; transform: translateY(26px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity .65s var(--ease); }
.fade-in.visible { opacity: 1; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }
.delay-6 { transition-delay: .6s; }

/* ============================================================
   PHOTO INTEGRATION
   ============================================================ */

/* Feature card real photos */
.feature-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.feature-card--photo .feature-card__gradient {
  background: linear-gradient(
    to top,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.30) 55%,
    rgba(0,0,0,.22) 100%
  );
}

/* Visual panels with real photos */
.visual-panel--photo {
  background: var(--navy);
}

.visual-panel__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg);
}

.visual-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.80) 0%,
    rgba(0,0,0,.42) 50%,
    rgba(0,0,0,.22) 100%
  );
  border-radius: var(--radius-lg);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .feature-cards { grid-template-columns: repeat(2, 1fr); }
  .feature-cards > :last-child { grid-column: 1 / -1; max-height: 280px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-row { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .steps-row::before { display: none; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .section { padding: 64px 0; }
  .feature-cards { grid-template-columns: 1fr; }
  .feature-cards > :last-child { grid-column: auto; max-height: none; }
  .two-col, .two-col--flip { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .value-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__disc { text-align: center; }
  .footer { padding-bottom: 80px; }
  .mob-cta { display: flex; }
  .steps-row { grid-template-columns: 1fr; }
  .trust-strip__inner { gap: 18px; }
  .inline-cta { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .pillars { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .hero__split { flex-direction: column; gap: 32px; }
  .hero__media { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE PAGE VIDEOS
   ============================================================ */

.service-video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  margin-top: 40px;
}

.service-video-wrap video {
  width: 100%;
  display: block;
  max-height: 640px;
  object-fit: contain;
}

/* ============================================================
   MEET THE TEAM
   ============================================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
}

/* ============================================================
   HERO SPLIT LAYOUT
   ============================================================ */

.hero__split {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.hero__split .hero__content {
  flex: 1 1 0;
  min-width: 0;
  padding: 0;
  animation: heroFadeIn .8s var(--ease) both;
}

.hero__media {
  flex: 0 0 460px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  animation: heroFadeIn 1s var(--ease) .2s both;
}

.hero__media-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 1024px) {
  .hero__media { flex: 0 0 360px; }
  .hero__media-img { height: 460px; }
}

@media (max-width: 768px) {
  .hero__split { flex-direction: column; gap: 40px; padding: 60px 0 40px; }
  .hero__media { flex: none; width: 100%; }
  .hero__media-img { height: 300px; object-position: center 20%; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-section { background: var(--gray-50); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.testimonial-video {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.testimonial-video video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
