/* ══════════════════════════════════════════════
   HEALTH WEALTH — FULL RESPONSIVE STYLESHEET
   Breakpoints:
   • Desktop XL  : 1400px+
   • Desktop      : 1160px (max-width container)
   • Laptop       : 1024px
   • Tablet L     : 768px
   • Tablet S     : 600px
   • Mobile L     : 480px
   • Mobile S     : 375px
   • Mobile XS    : 320px
   ══════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --navy:      #08192d;
  --blue:      #0f6aa8;
  --blue-lt:   #1882cc;
  --teal:      #19b37a;
  --sky:       #e8f4ff;
  --mint:      #e6faf3;
  --text:      #14304d;
  --muted:     #5a7080;
  --border:    #d6e8f5;
  --white:     #ffffff;
  --bg:        #f4f8fc;
  --r:         20px;
  --r-sm:      14px;
  --sh:        0 4px 28px rgba(8,25,45,.07);
  --sh-lg:     0 16px 56px rgba(8,25,45,.14);
  --ease:      cubic-bezier(.22,.68,0,1.2);
  --ease-out:  cubic-bezier(.22,.68,0,1);
  --nav-h:     72px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
[data-reveal="right"]  { transform: translateX(48px); }
[data-reveal="left"]   { transform: translateX(-48px); }
[data-reveal="scale"]  { transform: scale(.94); }
[data-reveal="fade"]   { transform: none; }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ── LAYOUT CONTAINER ── */
/* Full-width sections; content constrained inside .wrap */
.wrap {
  width: min(1240px, 94%);
  margin-inline: auto;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.72);
  font-size: 12.5px;
  letter-spacing: .3px;
  padding: 9px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.topbar::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(25,179,122,.4), rgba(15,106,168,.4), transparent);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  position: relative;
  flex-shrink: 0;
}
.pulse-dot::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(.6); opacity: .9; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 16px rgba(8,25,45,.05);
  transition: box-shadow .3s;
  width: 100%;
}
.navbar.scrolled { box-shadow: 0 4px 28px rgba(8,25,45,.12); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 56px; height: 56px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease);
}
.logo-mark:hover { transform: scale(1.07); }
.logo-mark img   { width: 56px; height: 56px; object-fit: contain; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700;
  color: var(--navy); line-height: 1.1;
}
.brand-tag { font-size: 10.5px; color: var(--muted); margin-top: 2px; letter-spacing: .3px; }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 13.5px; font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links a:hover         { color: var(--blue); }
.nav-links a:hover::after  { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 600;
  border: none; cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s, background .2s, color .2s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
  color: #fff;
  box-shadow: 0 3px 14px rgba(15,106,168,.28);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 7px 22px rgba(15,106,168,.40);
}
.btn-outline {
  background: var(--white);
  color: var(--blue);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { background: var(--sky); border-color: #a8cde5; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  border-radius: var(--r-sm);
  transition: background .2s;
}
.hamburger:hover { background: var(--sky); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 0 24px;
  gap: 0;
  position: absolute; top: 100%; left: 0; right: 0;
  box-shadow: 0 8px 32px rgba(8,25,45,.12);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .25s, transform .25s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.mob-link {
  display: block;
  padding: 13px 24px;
  font-size: 15px; font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s;
}
.mob-link:last-of-type { border-bottom: none; }
.mob-link:hover { background: var(--sky); color: var(--blue); }
.mob-cta {
  margin: 16px 24px 0;
  justify-content: center;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(155deg, #e6f3ff 0%, #edfaf4 55%, #e8f5ff 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.hero-orb-1 {
  top: -120px; right: -100px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(15,106,168,.13), transparent 65%);
  animation: float-orb 10s ease-in-out infinite;
}
.hero-orb-2 {
  bottom: -100px; left: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(25,179,122,.11), transparent 60%);
  animation: float-orb 13s ease-in-out infinite reverse;
}
.hero-orb-3 {
  top: 50%; left: 50%;
  width: 300px; height: 300px;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(15,106,168,.05), transparent 60%);
  animation: float-orb 8s ease-in-out infinite 2s;
}
@keyframes float-orb {
  0%, 100% { translate: 0 0; scale: 1; }
  33%       { translate: 20px -20px; scale: 1.05; }
  66%       { translate: -15px 15px; scale: .97; }
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(15,106,168,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,106,168,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black, transparent);
}
.hero-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particle-rise linear infinite;
}
@keyframes particle-rise {
  0%   { transform: translateY(0) scale(0); opacity: 0; }
  10%  { opacity: .18; }
  90%  { opacity: .06; }
  100% { transform: translateY(-120vh) scale(1); opacity: 0; }
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  align-items: stretch;
}
.hero-left {
  padding: 88px 56px 88px 0;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.92);
  border: 1px solid #bcd8ef;
  color: var(--blue);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
  padding: 7px 18px; margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(15,106,168,.12);
  width: fit-content;
  animation: fade-down .8s var(--ease) .1s both;
}
@keyframes fade-down {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: none; }
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--teal); border-radius: 50%;
  box-shadow: 0 0 6px var(--teal);
  animation: blink 2s ease infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 700; line-height: 1.1;
  color: var(--navy); margin-bottom: 22px;
  animation: fade-up .9s var(--ease) .2s both;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 15.5px; color: var(--muted);
  max-width: 460px; margin-bottom: 38px; line-height: 1.8;
  animation: fade-up .9s var(--ease) .35s both;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fade-up .9s var(--ease) .5s both;
}
.btn-lg { padding: 14px 30px; font-size: 15px; }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
  color: #fff; border: none;
  box-shadow: 0 5px 20px rgba(15,106,168,.32);
  position: relative; overflow: hidden;
}
.btn-hero-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0; transition: opacity .25s;
}
.btn-hero-primary:hover::before { opacity: 1; }
.btn-hero-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(15,106,168,.42);
}
.btn-hero-outline {
  background: rgba(255,255,255,.9);
  color: var(--blue);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-hero-outline:hover {
  background: var(--sky); border-color: #9ec8e8;
  transform: translateY(-2px);
}

.hero-right {
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(238,247,255,.95));
  border-left: 1px solid rgba(214,232,245,.7);
  box-shadow: -8px 0 40px rgba(15,106,168,.06);
  padding: 60px 52px;
  display: flex; flex-direction: column; justify-content: center;
  backdrop-filter: blur(12px);
  animation: slide-left 1s var(--ease) .3s both;
}
@keyframes slide-left {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: none; }
}
.hero-card-label {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px;
}
.hero-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px; line-height: 1.2;
}
.hero-card-sub {
  font-size: 13.5px; color: var(--muted);
  margin-bottom: 26px; line-height: 1.7;
}
.hc-list { display: flex; flex-direction: column; }
.hc-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--text);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: gap .25s var(--ease);
}
.hc-item:last-child { border-bottom: none; }
.hc-item:hover { gap: 18px; }
.hc-dot {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #12d494);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(25,179,122,.28);
  transition: transform .25s var(--ease);
}
.hc-item:hover .hc-dot { transform: scale(1.12) rotate(8deg); }
.hc-dot svg { width: 13px; height: 13px; stroke: #fff; stroke-width: 2.8; fill: none; }

/* ── STATS BAR ── */
.stats-bar { padding: 0 0 72px; width: 100%; }
.stats-inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--sh);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -32px;
  position: relative; z-index: 10;
  overflow: hidden;
}
.stat {
  padding: 36px 28px; text-align: center;
  position: relative;
  transition: background .25s;
}
.stat:hover { background: var(--sky); }
.stat + .stat::before {
  content: '';
  position: absolute; left: 0; top: 20%; height: 60%;
  width: 1px; background: var(--border);
}
.stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 700;
  color: var(--blue); line-height: 1;
  display: block; margin-bottom: 8px;
  transition: transform .25s var(--ease);
}
.stat:hover .stat-val { transform: scale(1.06); }
.stat-lbl { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ── SECTION HEADER ── */
.sec-head { margin-bottom: 52px; }
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px;
}
.sec-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700; color: var(--navy);
  line-height: 1.15; margin-bottom: 12px;
}
.sec-head p { font-size: 15.5px; color: var(--muted); max-width: 520px; line-height: 1.75; }

/* ── SERVICES ── */
.services { padding: 88px 0; width: 100%; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh);
  transition: transform .35s var(--ease), box-shadow .35s;
  position: relative;
}
.svc-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.svc-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(8,25,45,.55));
  transition: opacity .3s;
}
.svc-card:hover .svc-thumb::after { opacity: .72; }
.svc-thumb-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.svc-card:hover .svc-thumb-img { transform: scale(1.07); }
.svc-badge {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--blue);
  font-size: 10.5px; font-weight: 700;
  padding: 5px 13px; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.svc-body { padding: 26px 26px 30px; }
.svc-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.svc-body p { font-size: 13.5px; color: var(--muted); line-height: 1.72; }

/* service images */
.img-lap    { background-image: url('https://images.unsplash.com/photo-1640876777012-bdb00a6323e2?auto=format&fit=crop&w=800&q=80'); }
.img-hernia { background-image: url('https://images.unsplash.com/photo-1745694036015-8d100bed9c05?auto=format&fit=crop&w=800&q=80'); }
.img-ent    { background-image: url('https://images.unsplash.com/photo-1666214280557-f1b5022eb634?auto=format&fit=crop&w=800&q=80'); }
.img-uro    { background-image: url('https://images.unsplash.com/photo-1584820927498-cfe5211fd8bf?auto=format&fit=crop&w=800&q=80'); }
.img-gyn    { background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=800&q=80'); }
.img-ortho  { background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?auto=format&fit=crop&w=800&q=80'); }

/* ── HOW IT WORKS ── */
.how {
  padding: 96px 0;
  background: var(--navy);
  position: relative; overflow: hidden;
  width: 100%;
}
.how::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--blue), transparent);
}
.how::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.how-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(80px); z-index: 0;
}
.how-orb-1 {
  top: -80px; right: -80px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(15,106,168,.18), transparent 65%);
  animation: float-orb 12s ease-in-out infinite;
}
.how-orb-2 {
  bottom: -60px; left: -60px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(25,179,122,.14), transparent 60%);
  animation: float-orb 9s ease-in-out infinite reverse;
}
.how .sec-head  { position: relative; z-index: 1; }
.how .sec-head h2 { color: #fff; }
.how .sec-head p  { color: rgba(255,255,255,.56); }
.how .eyebrow     { color: var(--teal); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative; z-index: 1;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  opacity: .22; z-index: 0;
}
.step-card {
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 30px 22px 34px;
  position: relative;
  transition: background .3s, transform .3s var(--ease), border-color .3s;
}
.step-card:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-6px);
}
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 700; color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(15,106,168,.35);
  transition: transform .3s var(--ease), box-shadow .3s;
  position: relative; z-index: 1;
}
.step-card:hover .step-num {
  transform: scale(1.12) rotate(10deg);
  box-shadow: 0 6px 20px rgba(15,106,168,.5);
}
.step-card h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step-card p  { font-size: 13px; color: rgba(255,255,255,.54); line-height: 1.7; }
.step-arrow {
  position: absolute; top: 39px; right: -12px; z-index: 3;
  font-size: 20px; color: rgba(255,255,255,.18);
  font-weight: 300; line-height: 1;
}

/* ── INSURANCE ── */
.insurance { padding: 88px 0; width: 100%; }
.ins-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--sh);
  padding: 48px 52px;
  position: relative; overflow: hidden;
}
.ins-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--blue));
  background-size: 200%;
  animation: shimmer-bar 4s linear infinite;
}
@keyframes shimmer-bar {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.ins-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 30px;
}
.chip {
  background: var(--sky);
  border: 1px solid #c0ddef;
  color: var(--blue);
  font-size: 13px; font-weight: 600;
  padding: 7px 18px; border-radius: 999px;
  cursor: default;
  transition: background .22s, color .22s, border-color .22s, transform .22s var(--ease), box-shadow .22s;
}
.chip:hover {
  background: var(--blue); color: #fff; border-color: var(--blue);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 5px 14px rgba(15,106,168,.25);
}
.ins-note {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--mint); border: 1px solid #aee5ce;
  border-radius: 14px; padding: 16px 20px;
  font-size: 13.5px; color: #186048; line-height: 1.65;
}
.ins-note::before {
  content: 'ℹ';
  font-size: 15px; flex-shrink: 0;
  background: rgba(25,179,122,.18);
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 28px; text-align: center;
}

/* ── CUSTOMER FEEDBACK ── */
.feedback { padding: 88px 0; width: 100%; }

.fb-col {
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Stage: single-column rotating card flanked by arrows */
.fb-stage {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
}

.fb-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--sh);
  transition: background .2s, color .2s, transform .2s var(--ease), border-color .2s;
}
.fb-arrow:hover {
  background: var(--blue); color: #fff; border-color: var(--blue);
  transform: scale(1.08);
}
.fb-arrow:active { transform: scale(.96); }

.fb-card {
  flex: 1;
  min-height: 256px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--sh);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fb-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--teal));
  background-size: 200%;
  animation: shimmer-bar 4s linear infinite;
}

.fb-slide {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fb-fade-in .45s var(--ease-out);
}
@keyframes fb-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.fb-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px; line-height: 1;
  color: var(--teal); opacity: .5;
}

.fb-stars { display: flex; gap: 3px; color: #f0a93b; font-size: 15px; }
.fb-stars .dim { color: var(--border); }

.fb-text {
  font-size: 15.5px; color: var(--text);
  line-height: 1.75; font-style: italic;
}

.fb-meta { display: flex; align-items: center; gap: 12px; margin-top: 6px; }
.fb-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fb-who strong { display: block; font-size: 14px; color: var(--navy); }
.fb-who span { font-size: 12.5px; color: var(--muted); }
.fb-new-tag {
  margin-left: auto;
  font-size: 10.5px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  color: var(--teal); background: var(--mint); border: 1px solid #aee5ce;
  padding: 4px 10px; border-radius: 999px; flex-shrink: 0;
}

.fb-dots {
  display: flex; gap: 7px; justify-content: center;
  margin-top: 22px; flex-wrap: wrap; max-width: 100%;
}
.fb-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  padding: 0; transition: background .2s, transform .2s var(--ease), width .2s;
}
.fb-dot.active { background: var(--blue); width: 22px; border-radius: 5px; }

/* Feedback submission form */
.fb-form-box {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--sh);
  padding: 40px 44px;
  margin-top: 40px;
}
.fb-form-head { margin-bottom: 22px; }
.fb-form-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px; font-weight: 700; color: var(--navy);
  margin-bottom: 6px;
}
.fb-form-head p { font-size: 13.5px; color: var(--muted); }

.fb-form { display: flex; flex-direction: column; gap: 18px; }
.fb-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.fb-field { display: flex; flex-direction: column; gap: 7px; }
.fb-field label {
  font-size: 12.5px; font-weight: 700; color: var(--text);
  letter-spacing: .2px;
}
.fb-field input,
.fb-field textarea {
  font-family: inherit;
  font-size: 14px; color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  resize: vertical;
  transition: border-color .2s, box-shadow .2s;
}
.fb-field input:focus,
.fb-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15,106,168,.12);
}

.fb-rating { display: flex; gap: 6px; }
.fb-star {
  background: none; border: none; cursor: pointer;
  font-size: 26px; line-height: 1; color: var(--border);
  transition: color .15s, transform .15s var(--ease);
  padding: 2px;
}
.fb-star:hover { transform: scale(1.15); }
.fb-star.active { color: #f0a93b; }

.fb-submit {
  align-self: flex-start;
  margin-top: 4px;
}

.fb-success {
  display: none;
  font-size: 13.5px; color: #186048;
  background: var(--mint); border: 1px solid #aee5ce;
  border-radius: 12px; padding: 12px 16px;
  margin-top: 6px;
}
.fb-success.show { display: block; animation: fb-fade-in .4s var(--ease-out); }

/* ── CONTACT ── */
.contact-sec { padding: 88px 0 100px; width: 100%; }
.contact-box {
  background: linear-gradient(140deg, #0e5e98 0%, #0b2f60 45%, #0a4637 100%);
  border-radius: 28px; padding: 64px 60px;
  position: relative; overflow: hidden;
}
.contact-box::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,.07), transparent 60%);
  pointer-events: none;
  animation: float-orb 10s ease-in-out infinite;
}
.contact-box::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(25,179,122,.15), transparent 60%);
  pointer-events: none;
  animation: float-orb 14s ease-in-out infinite reverse;
}
.contact-shimmer {
  position: absolute; inset: 0; border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.09), transparent, rgba(25,179,122,.07));
  pointer-events: none; z-index: 0;
}
.contact-head { margin-bottom: 40px; position: relative; z-index: 1; }
.contact-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 10px;
}
.contact-head p { font-size: 15px; color: rgba(255,255,255,.6); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative; z-index: 1;
  margin-bottom: 36px;
}
.ci {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px; padding: 22px 20px;
  backdrop-filter: blur(8px);
  transition: background .25s, transform .25s var(--ease), border-color .25s;
}
.ci:hover {
  background: rgba(255,255,255,.17);
  border-color: rgba(255,255,255,.26);
  transform: translateY(-5px);
}
.ci-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 13px;
  transition: background .25s, transform .25s var(--ease);
}
.ci:hover .ci-icon { background: rgba(25,179,122,.3); transform: scale(1.1) rotate(-5deg); }
.ci-icon svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }
.ci-lbl {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: rgba(255,255,255,.44); display: block; margin-bottom: 6px;
}
.ci strong { font-size: 14.5px; color: #fff; font-weight: 600; }

.contact-footer {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 28px;
  display: flex; gap: 48px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cf-item strong { display: block; color: #fff; font-size: 13px; margin-bottom: 4px; }
.cf-item span   { font-size: 13px; color: rgba(255,255,255,.56); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.38);
  padding: 24px 0;
  font-size: 13px;
  position: relative;
  width: 100%;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}
.footer-sep { opacity: .4; }
footer b { color: rgba(255,255,255,.6); font-weight: 500; }

/* ── STAGGER DELAYS ── */
.svc-card:nth-child(1) { transition-delay: .0s; }
.svc-card:nth-child(2) { transition-delay: .07s; }
.svc-card:nth-child(3) { transition-delay: .14s; }
.svc-card:nth-child(4) { transition-delay: .21s; }
.svc-card:nth-child(5) { transition-delay: .28s; }
.svc-card:nth-child(6) { transition-delay: .35s; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════ */

/* ── LAPTOP: ≤1024px ── */
@media (max-width: 1024px) {
  .hero-left   { padding: 72px 44px 72px 0; }
  .hero-right  { padding: 52px 40px; }
  .svc-grid    { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .steps-grid  { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .steps-grid::before { display: none; }
  .step-arrow  { display: none; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .ins-box     { padding: 40px 44px; }
  .fb-form-box { padding: 32px 36px; }
}

/* ── TABLET LARGE: ≤768px ── */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Topbar */
  .topbar .wrap { flex-direction: column; align-items: flex-start; gap: 4px; }
  .topbar span  { font-size: 11.5px; }

  /* Navbar */
  .nav-links    { display: none; }
  .btn-outline  { display: none; }
  .hamburger    { display: flex; }
  .mobile-menu  { display: flex; }

  /* Logo */
  .logo-mark     { width: 48px; height: 48px; }
  .logo-mark img { width: 48px; height: 48px; }
  .brand-name    { font-size: 19px; }

  /* Hero: stack columns */
  .hero-inner  { grid-template-columns: 1fr; min-height: auto; }
  .hero-left   { padding: 52px 0 32px; }
  .hero-right  {
    border-left: none;
    border-top: 1px solid rgba(15,106,168,.12);
    padding: 36px 28px 56px;
    background: linear-gradient(145deg, rgba(255,255,255,.97), rgba(236,248,255,.97));
  }
  .hero-sub    { font-size: 15px; max-width: 100%; }

  /* Stats */
  .stats-bar   { padding: 0 0 52px; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat + .stat::before { display: none; }
  .stat        { padding: 24px 20px; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .stat-val    { font-size: 30px; }

  /* Services */
  .services    { padding: 64px 0; }
  .svc-grid    { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .sec-head    { margin-bottom: 36px; }

  /* How it works */
  .how         { padding: 72px 0; }
  .steps-grid  { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Insurance */
  .insurance   { padding: 64px 0; }
  .ins-box     { padding: 30px 24px; }
  .chip        { font-size: 12px; padding: 6px 14px; }

  /* Feedback */
  .feedback     { padding: 64px 0; }
  .fb-card      { padding: 30px 28px; min-height: 232px; }
  .fb-form-box  { padding: 32px 30px; margin-top: 32px; }
  .fb-form-row  { grid-template-columns: 1fr; gap: 14px; }

  /* Contact */
  .contact-sec { padding: 64px 0 80px; }
  .contact-box { padding: 40px 28px; border-radius: 22px; }
  .contact-head h2 { font-size: 28px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .contact-footer { gap: 28px; }
}

/* ── TABLET SMALL: ≤600px ── */
@media (max-width: 600px) {
  .svc-grid    { grid-template-columns: 1fr; }
  .hero-right  { padding: 30px 20px 48px; }
  .hero-card-title { font-size: 20px; }
  .fb-form-row { grid-template-columns: 1fr; }
  .fb-form-box { padding: 28px 24px; }
}

/* ── MOBILE LARGE: ≤480px ── */
@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  .wrap { width: 92%; }

  /* Topbar */
  .topbar { padding: 8px 0; }
  .topbar span { font-size: 11px; }

  /* Navbar */
  .brand-name    { font-size: 17px; }
  .brand-tag     { font-size: 9.5px; }
  .logo-mark     { width: 42px; height: 42px; }
  .logo-mark img { width: 42px; height: 42px; }
  .btn           { padding: 9px 16px; font-size: 13px; }
  .btn-primary svg { display: none; }

  /* Hero */
  .hero-left     { padding: 40px 0 24px; }
  .hero h1       { font-size: 28px; margin-bottom: 16px; }
  .hero-sub      { font-size: 14px; margin-bottom: 28px; }
  .hero-pill     { font-size: 11.5px; padding: 6px 14px; margin-bottom: 20px; }
  .hero-actions  { flex-direction: column; gap: 10px; }
  .btn-lg        { width: 100%; justify-content: center; padding: 13px 20px; font-size: 14px; }

  /* Hero right */
  .hero-right    { padding: 28px 18px 44px; }
  .hero-card-title { font-size: 18px; }
  .hero-card-sub   { font-size: 13px; margin-bottom: 18px; }
  .hc-item       { font-size: 13.5px; padding: 11px 0; gap: 12px; }
  .hc-dot        { width: 26px; height: 26px; }

  /* Stats */
  .stats-bar     { padding: 0 0 44px; }
  .stats-inner   { margin-top: -20px; }
  .stat-val      { font-size: 26px; }
  .stat-lbl      { font-size: 12px; }

  /* Services */
  .services      { padding: 52px 0; }
  .svc-grid      { grid-template-columns: 1fr; gap: 14px; }
  .svc-thumb     { height: 176px; }
  .svc-body      { padding: 18px 18px 22px; }
  .svc-body h4   { font-size: 18px; }

  /* How it works */
  .how           { padding: 56px 0; }
  .steps-grid    { grid-template-columns: 1fr; gap: 12px; }
  .step-card     { padding: 24px 18px 28px; }
  .step-num      { width: 38px; height: 38px; font-size: 16px; margin-bottom: 14px; }

  /* Insurance */
  .insurance     { padding: 52px 0; }
  .ins-box       { padding: 22px 16px; border-radius: 14px; }
  .ins-chips     { gap: 8px; margin-bottom: 20px; }
  .chip          { font-size: 11.5px; padding: 5px 12px; }
  .ins-note      { font-size: 12.5px; padding: 12px 14px; gap: 8px; }

  /* Feedback */
  .feedback      { padding: 44px 0; }
  .fb-stage      { gap: 8px; }
  .fb-arrow      { width: 36px; height: 36px; }
  .fb-arrow svg  { width: 16px; height: 16px; }
  .fb-card       { padding: 22px 18px; min-height: 220px; border-radius: 16px; }
  .fb-quote-mark { font-size: 36px; }
  .fb-text       { font-size: 14px; }
  .fb-avatar     { width: 36px; height: 36px; font-size: 13px; }
  .fb-who strong { font-size: 13px; }
  .fb-who span   { font-size: 11.5px; }
  .fb-new-tag    { font-size: 9.5px; padding: 3px 8px; }
  .fb-dots       { margin-top: 16px; }
  .fb-form-box   { padding: 24px 16px; margin-top: 26px; border-radius: 14px; }
  .fb-form-head h3 { font-size: 19px; }
  .fb-form-head p  { font-size: 12.5px; }
  .fb-form-row   { grid-template-columns: 1fr; gap: 12px; }
  .fb-field input,
  .fb-field textarea { font-size: 13.5px; padding: 11px 12px; }
  .fb-star       { font-size: 22px; }
  .fb-submit     { width: 100%; justify-content: center; }

  /* Contact */
  .contact-sec   { padding: 48px 0 64px; }
  .contact-box   { padding: 28px 18px; border-radius: 18px; }
  .contact-head  { margin-bottom: 26px; }
  .contact-head h2 { font-size: 24px; }
  .contact-head p  { font-size: 13.5px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 10px; }
  .ci            { padding: 16px 14px; border-radius: 12px; }
  .ci-icon       { width: 32px; height: 32px; margin-bottom: 10px; }
  .ci strong     { font-size: 13.5px; }
  .contact-footer { gap: 18px; padding-top: 22px; flex-direction: column; }
  .cf-item strong,
  .cf-item span  { font-size: 12.5px; }

  /* Section headers */
  .sec-head      { margin-bottom: 28px; }
  .sec-head h2   { font-size: 26px; }
  .eyebrow       { font-size: 10px; letter-spacing: 1.8px; }

  /* Footer */
  footer         { padding: 18px 0; font-size: 12px; }
  .footer-sep    { display: none; }
  .footer-inner  { flex-direction: column; gap: 4px; }
}

/* ── MOBILE STANDARD: ≤390px ── */
@media (max-width: 390px) {
  .wrap          { width: 93%; }
  .hero h1       { font-size: 25px; }
  .brand-name    { font-size: 15px; }
  .brand-tag     { display: none; }
  .btn           { padding: 8px 13px; font-size: 12.5px; }
  .stat-val      { font-size: 24px; }
  .contact-head h2 { font-size: 22px; }
  .fb-card       { padding: 18px 14px; }
  .fb-text       { font-size: 13.5px; }
  .fb-form-box   { padding: 20px 14px; }
}

/* ── MOBILE XS: ≤320px ── */
@media (max-width: 320px) {
  .wrap          { width: 95%; }
  .hero h1       { font-size: 22px; }
  .brand-name    { font-size: 14px; }
  .hero-pill     { font-size: 10.5px; padding: 5px 12px; }
  .stat-val      { font-size: 22px; }
  .fb-arrow      { width: 32px; height: 32px; }
  .fb-card       { padding: 16px 12px; min-height: 200px; }
  .fb-quote-mark { font-size: 30px; }
  .fb-form-head h3 { font-size: 17px; }
}
