/* ============ DESIGN SYSTEM TOKENS ============ */
:root{
  --navy-900:#0F1C49;
  --navy-800:#1A2A5E;
  --navy-700:#253773;
  --navy-100:#E3E8F2;

  --teal-700:#0099AA;
  --teal-600:#00BBCC;
  --teal-500:#2ECCDB;
  --teal-50:rgba(0,102,204,0.10);
  --teal-100:rgba(0,102,204,0.20);

  --gold-700:#CC8400;
  --gold-600:#edb45d;
  --gold-50:#FFF4E0;

  --link:#004BB9;
  --link-hover:#003A94;

  --ink-900:#0F1419;
  --ink-700:#2A3340;
  --ink-500:#5A6472;
  --ink-300:#A8AFBA;
  --ink-200:#D8DDE3;
  --ink-100:#EEF1F4;
  --ink-50:#F7F9FB;

  --white:#FFFFFF;
  --bg:#FFFFFF;
  --bg-alt:#F7F9FB;
  --bg-blue:rgba(0,102,204,0.08);

  --success:#0F7A4F;
  --danger:#B91C1C;

  --font-sans:"DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.94rem);
  --step-0:  clamp(1rem, 0.95rem + 0.27vw, 1.13rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.41rem);
  --step-2:  clamp(1.44rem, 1.32rem + 0.61vw, 1.76rem);
  --step-3:  clamp(1.73rem, 1.54rem + 0.94vw, 2.2rem);
  --step-4:  clamp(2.07rem, 1.79rem + 1.42vw, 2.75rem);
  --step-5:  clamp(2.49rem, 2.06rem + 2.14vw, 3.44rem);
  --step-6:  clamp(2.99rem, 2.37rem + 3.11vw, 4.3rem);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur-fast:180ms;
  --dur: 320ms;
  --dur-slow: 560ms;

  --container: 1240px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(15,20,25,.06), 0 2px 6px rgba(15,20,25,.04);
  --shadow: 0 4px 14px rgba(15,20,25,.08), 0 12px 32px rgba(15,20,25,.06);
  --shadow-lg: 0 12px 40px rgba(15,28,73,.14), 0 2px 8px rgba(15,28,73,.08);
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;overflow-x:hidden}
body{
  margin:0;
  font-family:var(--font-sans);
  font-size:var(--step-0);
  font-weight:400;
  line-height:1.6;
  color:var(--ink-900);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
p a{color:var(--link);text-decoration:underline;text-underline-offset:3px;text-decoration-thickness:1.5px;transition:color var(--dur-fast)}
p a:hover{color:var(--link-hover)}
button{font-family:inherit;cursor:pointer;border:none;background:none}
:focus-visible{outline:3px solid var(--teal-600);outline-offset:3px;border-radius:4px}

h1,h2,h3,h4{
  font-family:var(--font-sans);
  font-weight:700;
  line-height:1.1;
  letter-spacing:-0.02em;
  color:var(--navy-900);
  margin:0;
}
h1{font-size:var(--step-6);letter-spacing:-0.035em;line-height:1.05}
h2{font-size:var(--step-5);letter-spacing:-0.03em}
h3{font-size:var(--step-3);font-weight:600}
h4{font-size:var(--step-2);font-weight:600}
em{font-style:normal}
p{margin:0 0 1em}

/* ALIGNED: eyebrow default is navy (ADA-compliant on white); teal reserved for dark backgrounds */
.eyebrow{
  font-family:var(--font-sans);
  font-size:0.78rem;
  font-weight:600;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--navy-900);
  display:inline-flex;
  align-items:center;
  gap:0.6em;
}
.eyebrow::before{
  content:"";
  width:1.75rem;
  height:1px;
  background:var(--teal-600);
  display:inline-block;
}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 clamp(1.25rem, 3vw, 2rem);
}

.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:0.5rem;
  padding:0.95rem 1.65rem;
  border-radius:999px;
  font-weight:600;
  font-size:0.95rem;
  letter-spacing:0.01em;
  transition:transform var(--dur-fast) var(--ease), background var(--dur-fast), color var(--dur-fast), box-shadow var(--dur-fast);
  white-space:nowrap;
  line-height:1;
  min-height:48px;
}
.btn:active{transform:scale(.97)}
.btn-primary{background:var(--navy-900);color:var(--white)}
.btn-primary:hover{background:var(--navy-800);box-shadow:var(--shadow)}
.btn-accent{background:var(--teal-600);color:var(--navy-900)}
.btn-accent:hover{background:var(--teal-700);box-shadow:var(--shadow)}
.btn-gold{background:var(--gold-600);color:var(--navy-900)}
.btn-gold:hover{background:var(--gold-700);color:var(--white)}
.btn-ghost{background:transparent;color:var(--navy-900);border:1.5px solid var(--ink-200)}
.btn-ghost:hover{border-color:var(--navy-900);background:var(--white)}
.btn-on-dark{background:var(--white);color:var(--navy-900)}
.btn-outline-light{background:transparent;color:var(--white);border:1.5px solid rgba(255,255,255,.4)}
.btn-outline-light:hover{border-color:var(--white);background:rgba(255,255,255,.08)}
.btn svg{width:1.05em;height:1.05em;flex-shrink:0}

/* ============ TOP ANNOUNCEMENT ============ */
.announcement{
  background:var(--navy-900);
  color:var(--white);
  font-size:0.82rem;
  padding:0.5rem 0;
  text-align:center;
  letter-spacing:0.01em;
}
.announcement strong{color:var(--gold-600)}
.announcement a{text-decoration:underline;text-underline-offset:3px}

/* ============ HEADER ============ */
.header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.96);
  backdrop-filter:saturate(150%) blur(18px);
  -webkit-backdrop-filter:saturate(150%) blur(18px);
  border-bottom:1px solid var(--ink-100);
  transition:box-shadow var(--dur), background var(--dur), transform var(--dur) var(--ease);
}
.header.scrolled{box-shadow:0 1px 0 rgba(15,20,25,.04), 0 8px 24px rgba(15,20,25,.06)}
@media (max-width:820px){
  .header{
    position:fixed;
    top:0;left:0;right:0;
    background:var(--white);
    will-change:transform;
  }
  .header.header-hidden{transform:translateY(-100%)}
  body{padding-top:76px}
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  gap:1rem;padding:0.85rem 0;
  min-height:76px;
}
.brand{display:flex;align-items:center;gap:0.75rem;flex-shrink:0}
.brand-logo{
  height:52px;
  width:auto;
  max-width:260px;
  display:block;
  object-fit:contain;
}
/* ALIGNED: footer logo forced white via filter, CSS-sized (no hardcoded dims) */
.brand-logo-footer{
  height:auto;
  max-height:72px;
  width:auto;
  max-width:260px;
  display:block;
  filter:brightness(0) invert(1);
  object-fit:contain;
}
@media (max-width:640px){.brand-logo{height:44px;max-width:200px}}
@media (max-width:400px){.brand-logo{height:38px;max-width:170px}}

.nav-actions{display:flex;align-items:center;gap:0.6rem;flex-shrink:0}

.nav-phone{
  display:inline-flex;align-items:center;justify-content:center;gap:0.5rem;
  padding:0.65rem 1.1rem;
  color:var(--navy-900);
  font-weight:600;font-size:0.92rem;
  border-radius:999px;
  border:1.5px solid var(--ink-200);
  background:var(--white);
  transition:background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
  min-height:46px;
  line-height:1;
}
.nav-phone:hover{background:var(--navy-900);border-color:var(--navy-900);color:var(--white)}
.nav-phone:hover svg{color:var(--white)}
.nav-phone svg{color:var(--teal-600);width:1.15rem;height:1.15rem;flex-shrink:0;transition:color var(--dur-fast)}
@media (max-width:720px){
  .nav-phone{
    padding:0;
    width:46px;
    height:46px;
    min-height:46px;
    border-radius:50%;
  }
  .nav-phone span{display:none}
  .nav-phone svg{width:1.3rem;height:1.3rem}
}

.btn-schedule-header{padding:0.75rem 1.35rem;font-size:0.92rem;min-height:46px}
.btn-schedule-header .short-label{display:none}
@media (max-width:640px){.btn-schedule-header{padding:0.7rem 1.05rem;font-size:0.85rem}}
@media (max-width:480px){
  .btn-schedule-header{padding:0.65rem 0.9rem;font-size:0.8rem}
  .btn-schedule-header .full-label{display:none}
  .btn-schedule-header .short-label{display:inline}
}

/* ============ HERO ============ */
.hero{
  position:relative;
  padding:clamp(1rem, 2vw, 1.75rem) 0 clamp(2rem, 4vw, 3.5rem);
  background:var(--white);
}
.hero-banner{
  position:relative;
  max-width:var(--container);
  margin:0 auto;
  border-radius:clamp(18px, 2vw, 28px);
  overflow:hidden;
  background-image:url('https://www.islanddentalassociates.com/wp-content/uploads/2025/02/dentalimplants-banner1.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  background-color:var(--navy-900);
  box-shadow:0 10px 40px rgba(15,28,73,.08);
}
.hero-banner::before{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(
    90deg,
    rgba(15,28,73,0.90) 0%,
    rgba(15,28,73,0.72) 40%,
    rgba(15,28,73,0.45) 70%,
    rgba(15,28,73,0.35) 100%
  );
  pointer-events:none;
}
.hero-content{
  position:relative;
  z-index:1;
  padding:clamp(2.25rem,5vw,4rem) clamp(1.5rem,4vw,3.5rem);
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:clamp(2rem,4vw,3.5rem);
  align-items:center;
}
.hero-copy{color:var(--white)}
.hero-copy > *{animation:fadeUp 0.8s var(--ease-out) both}
.hero-copy > *:nth-child(1){animation-delay:.05s}
.hero-copy > *:nth-child(2){animation-delay:.15s}
.hero-copy > *:nth-child(3){animation-delay:.25s}
.hero-copy > *:nth-child(4){animation-delay:.35s}
.hero-copy > *:nth-child(5){animation-delay:.45s}
.hero-copy > *:nth-child(6){animation-delay:.55s}
@keyframes fadeUp{
  from{opacity:0;transform:translateY(20px)}
  to{opacity:1;transform:translateY(0)}
}
/* Eyebrow on dark hero — stays white */
.hero-copy .eyebrow{
  color:rgba(255,255,255,0.85);
  margin-bottom:1.25rem;
  font-weight:600;font-size:0.78rem;letter-spacing:0.18em;
}
.hero-copy .eyebrow::before{background:rgba(255,255,255,0.6)}
.hero h1{
  color:var(--white);
  margin:0 0 1.25rem;
  font-size:clamp(2rem, 4.2vw, 3.2rem);
}
.hero h1 em{
  color:var(--white);
  font-weight:700;
  position:relative;
  white-space:nowrap;
}
.hero h1 em::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0.05em;
  height:0.12em;
  background:var(--gold-600);
  border-radius:2px;
  z-index:-1;
}
.hero-lede{
  font-size:clamp(1rem, 1.2vw, 1.1rem);
  color:rgba(255,255,255,0.95);
  max-width:50ch;
  line-height:1.55;
  margin-bottom:1.5rem;
}
.hero-chips{
  display:flex;flex-wrap:wrap;gap:0.6rem 0.7rem;
  margin:1.5rem 0;padding:0;list-style:none;
}
.hero-chips li{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.18);
  padding:0.55rem 1rem;
  border-radius:999px;
  font-size:0.82rem;
  font-weight:500;
  display:inline-flex;align-items:center;gap:0.45rem;
  backdrop-filter:blur(4px);
  white-space:nowrap;
}
.hero-chips li svg{width:0.9rem;height:0.9rem;color:var(--gold-600);flex-shrink:0}
.hero-cta{display:flex;gap:0.85rem;flex-wrap:wrap;row-gap:0.85rem;margin-bottom:0.5rem}
.hero-cta .btn-primary{background:var(--white);color:var(--navy-900);font-weight:600}
.hero-cta .btn-primary:hover{background:var(--gold-600);color:var(--navy-900)}
.hero-cta .btn-ghost{background:transparent;color:var(--white);border:1.5px solid rgba(255,255,255,0.5)}
.hero-cta .btn-ghost:hover{background:rgba(255,255,255,0.12);border-color:var(--white)}

/* ============ HERO FORM CARD — LOCATION PICKER + FORM (SQUEEZE-SPECIFIC) ============ */
.hero-form{
  background:var(--white);
  color:var(--ink-900);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  animation:fadeUp 0.8s var(--ease-out) 0.3s both;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.hero-form-top{padding:1.25rem 1.5rem 0}
.hero-form .form-tag{
  display:inline-block;
  background:var(--bg-blue);
  color:var(--link);
  font-size:0.68rem;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;
  padding:0.35rem 0.75rem;border-radius:999px;
  margin-bottom:0.75rem;
}
.hero-form h3{
  font-size:1.4rem;margin:0 0 0.35rem;
  color:var(--navy-900);letter-spacing:-0.015em;
  font-weight:700;line-height:1.15;
}
.hero-form .form-sub{
  font-size:0.88rem;color:var(--ink-500);margin:0 0 1.25rem;line-height:1.5;
}

.loc-picker{padding:0 1.5rem 1.5rem}
.loc-picker-label{
  font-size:0.7rem;
  font-weight:700;
  color:var(--navy-900);
  letter-spacing:0.1em;
  text-transform:uppercase;
  margin-bottom:0.75rem;
  display:flex;
  align-items:center;
  gap:0.5rem;
}
.loc-picker-label .step-num{
  display:inline-grid;place-items:center;
  width:22px;height:22px;border-radius:50%;
  background:var(--navy-900);color:var(--white);
  font-size:0.72rem;font-weight:700;
  letter-spacing:0;
}
.loc-picker-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0.6rem;
}

/* Nearest-office hint banner (appears when ?loc=<city> detected) */
.loc-hint{
  display:none;
  align-items:center;
  gap:0.55rem;
  background:linear-gradient(90deg, rgba(255,165,0,0.10), rgba(255,165,0,0.03));
  border:1px solid rgba(255,165,0,0.30);
  border-radius:10px;
  padding:0.65rem 0.85rem;
  margin-bottom:0.75rem;
  font-size:0.8rem;
  color:var(--navy-900);
  line-height:1.35;
  animation:hintFadeIn 0.5s var(--ease-out) 0.3s both;
}
.loc-hint.visible{display:flex}
.loc-hint-icon{
  width:28px;height:28px;flex-shrink:0;
  background:var(--gold-600);color:var(--navy-900);
  border-radius:50%;display:grid;place-items:center;
}
.loc-hint-icon svg{width:0.95rem;height:0.95rem}
.loc-hint-text{flex:1;min-width:0}
.loc-hint-text strong{font-weight:700}
@keyframes hintFadeIn{
  from{opacity:0;transform:translateY(-4px)}
  to{opacity:1;transform:translateY(0)}
}

/* "Closest" badge on the recommended office card */
.loc-pick-btn .lp-nearest{
  display:none;
  position:absolute;
  top:-8px;left:50%;transform:translateX(-50%);
  background:var(--gold-600);
  color:var(--navy-900);
  font-size:0.6rem;
  font-weight:800;
  letter-spacing:0.08em;
  text-transform:uppercase;
  padding:3px 8px;
  border-radius:999px;
  white-space:nowrap;
  box-shadow:0 2px 6px rgba(0,0,0,0.12);
  z-index:2;
}
.loc-pick-btn.is-nearest .lp-nearest{display:block}
/* Hide the "Closest" badge once that office is actually selected — the navy fill + check mark already convey it */
.loc-pick-btn.is-nearest.selected .lp-nearest{display:none}

.loc-pick-btn{
  position:relative;
  background:var(--white);
  border:2px solid var(--ink-200);
  border-radius:12px;
  padding:0.9rem 0.75rem;
  text-align:center;
  cursor:pointer;
  transition:all var(--dur-fast);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:3px;
  min-height:72px;
  font-family:inherit;
}
.loc-pick-btn:hover{
  border-color:var(--teal-600);
  background:var(--teal-50);
  transform:translateY(-1px);
}
.loc-pick-btn.selected{
  border-color:var(--navy-900);
  background:var(--navy-900);
  color:var(--white);
}
.loc-pick-btn .lp-name{
  font-weight:700;
  font-size:0.95rem;
  color:var(--navy-900);
  letter-spacing:-0.005em;
  line-height:1.2;
}
.loc-pick-btn .lp-sub{
  font-size:0.72rem;
  color:var(--ink-500);
  font-weight:500;
}
.loc-pick-btn.selected .lp-name{color:var(--white)}
.loc-pick-btn.selected .lp-sub{color:var(--gold-600)}
.loc-pick-btn .lp-check{
  position:absolute;
  top:6px;right:6px;
  width:18px;height:18px;
  border-radius:50%;
  background:var(--gold-600);
  color:var(--navy-900);
  display:none;
  align-items:center;
  justify-content:center;
}
.loc-pick-btn .lp-check svg{width:10px;height:10px}
.loc-pick-btn.selected .lp-check{display:flex}

.hero-form-body{
  padding:0 1.5rem 1.5rem;
  flex:1;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height 0.5s var(--ease-out), opacity 0.3s var(--ease-out), padding 0.3s var(--ease-out);
}
.hero-form.location-selected .hero-form-body{max-height:1400px;
  opacity:1;
  padding-top:0;
}
.form-selected-banner{
  display:none;
  align-items:center;
  gap:0.6rem;
  background:var(--teal-50);
  border:1px solid rgba(0,187,204,0.2);
  border-radius:10px;
  padding:0.7rem 0.85rem;
  margin-bottom:1rem;
  font-size:0.82rem;
  color:var(--navy-900);
  font-weight:500;
}
.hero-form.location-selected .form-selected-banner{display:flex}
/* ALIGNED: teal-700 was used as text color here (3.7:1, AA large only) — swapping to link for consistency */
.form-selected-banner svg{width:1rem;height:1rem;color:var(--link);flex-shrink:0}
.form-selected-banner strong{font-weight:700}
.form-selected-banner .change-loc{
  margin-left:auto;
  color:var(--link);
  font-size:0.78rem;
  font-weight:600;
  text-decoration:underline;
  text-underline-offset:2px;
  cursor:pointer;
  background:none;
  border:none;
  padding:0;
  font-family:inherit;
}
.form-selected-banner .change-loc:hover{color:var(--link-hover)}
.field{margin-bottom:0.7rem}
.field label{
  display:block;
  font-size:0.7rem;font-weight:600;
  color:var(--navy-900);
  margin-bottom:0.35rem;letter-spacing:0.06em;text-transform:uppercase;
}
.input, .select, .textarea{
  width:100%;
  border:1.5px solid var(--ink-200);
  border-radius:10px;
  padding:0.8rem 0.95rem;
  font-size:0.95rem;
  background:var(--white);
  font-family:inherit;color:var(--ink-900);
  transition:border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.input:focus, .select:focus, .textarea:focus{
  outline:none;border-color:var(--teal-600);
  box-shadow:0 0 0 3px rgba(0,187,204,.15);
}
.input::placeholder,.textarea::placeholder{color:var(--ink-300)}
.select{
  appearance:none;
  -webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A6472' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 1rem center;
  padding-right:2.5rem;
}
.submit{
  width:100%;
  border:none;
  background:var(--navy-900);
  color:var(--white);
  border-radius:12px;
  padding:1rem 1.25rem;
  font-size:1rem;
  font-weight:700;
  cursor:pointer;
  letter-spacing:0.01em;
  transition:background var(--dur-fast), transform var(--dur-fast);
  margin-top:0.5rem;
  min-height:54px;
  display:inline-flex;align-items:center;justify-content:center;gap:0.5rem;
}
.submit:hover{background:var(--navy-800)}
.submit:active{transform:scale(0.98)}
.submit svg{width:1.15rem;height:1.15rem;transition:transform var(--dur-fast)}
.submit:hover svg{transform:translateX(3px)}
.form-offer{
  display:flex;align-items:center;gap:0.75rem;
  background:var(--gold-50);
  border:1px solid rgba(255,165,0,.3);
  border-radius:10px;
  padding:0.75rem 0.85rem;
  margin-top:0.9rem;
}
.form-offer-icon{
  width:32px;height:32px;flex-shrink:0;
  background:var(--gold-600);color:var(--navy-900);
  border-radius:50%;display:grid;place-items:center;
  font-weight:700;font-size:0.82rem;
  line-height:1;
}
.form-offer-text{font-size:0.78rem;color:var(--navy-900);line-height:1.4}
.form-offer-text strong{display:block;font-size:0.82rem;margin-bottom:1px}
.form-foot{font-size:0.72rem;color:var(--ink-500);margin-top:0.75rem;line-height:1.5}

@media (max-width:900px){
  .hero{padding:0}
  .hero-banner{
    border-radius:0;
    box-shadow:none;
    background-position:center 20%;
    max-width:100%;
    width:100%;
  }
  .hero-banner::before{
    background:linear-gradient(
      180deg,
      rgba(15,28,73,0.85) 0%,
      rgba(15,28,73,0.82) 100%
    );
  }
  .hero-content{grid-template-columns:1fr;padding:clamp(1.75rem,4vw,2.5rem) clamp(1.25rem,3vw,2rem)}
  .hero h1{
    font-size:clamp(1.65rem, 5.5vw, 2.1rem);
    line-height:1.2;
    margin-bottom:1.5rem;
  }
  .hero h1 em::after{
    bottom:0.02em;
    height:0.1em;
  }
  .hero-lede{font-size:0.95rem}
}

/* ============ TRUST STRIP ============ */
.hero-trust-strip{background:var(--white);padding:1.25rem 0 0}
.hero-trust{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
  padding:1.5rem 0;
  border-top:1px solid var(--ink-100);
  border-bottom:1px solid var(--ink-100);
}
.trust-item{
  display:flex;align-items:center;gap:0.75rem;
  padding:0 0.75rem;
  border-right:1px solid var(--ink-100);
}
.trust-item:last-child{border-right:none}
.trust-icon{
  width:38px;height:38px;flex-shrink:0;
  background:var(--bg-blue);color:var(--link);
  border-radius:50%;display:grid;place-items:center;
}
.trust-icon svg{width:1.1rem;height:1.1rem}
.trust-num{
  font-family:var(--font-sans);
  font-size:1.1rem;font-weight:700;
  color:var(--navy-900);line-height:1;letter-spacing:-0.01em;
}
.trust-label{font-size:0.78rem;color:var(--ink-500);margin-top:3px;line-height:1.25}
@media (max-width:820px){
  .hero-trust{grid-template-columns:repeat(2,1fr);gap:0.75rem 0}
  .trust-item:nth-child(2){border-right:none}
  .trust-item:nth-child(1),.trust-item:nth-child(2){padding-bottom:1rem;border-bottom:1px solid var(--ink-100)}
  .trust-item{padding:0.25rem 0.75rem}
}
@media (max-width:480px){
  .hero-trust{grid-template-columns:1fr;gap:0}
  .trust-item{border-right:none;border-bottom:1px solid var(--ink-100);padding:0.75rem}
  .trust-item:last-child{border-bottom:none}
}

/* ============ PROMO BAND ($500 CONSULT + $89/MO) ============ */
.promo-band{
  background:linear-gradient(90deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color:var(--white);
  padding:1.5rem 0;
  position:relative;
  overflow:hidden;
}
.promo-band::before{
  content:"";
  position:absolute;
  top:-40%;right:-5%;
  width:240px;height:240px;
  background:radial-gradient(circle, rgba(255,165,0,0.25), transparent 70%);
  pointer-events:none;
}
.promo-band-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  flex-wrap:wrap;
  position:relative;
  z-index:1;
}
.promo-band-copy{
  display:flex;
  align-items:center;
  gap:1.25rem;
  flex-wrap:wrap;
}
.promo-band-price{
  font-family:var(--font-sans);
  font-weight:700;
  font-size:clamp(2rem, 4vw, 2.75rem);
  letter-spacing:-0.02em;
  color:var(--gold-600);
  line-height:1;
  white-space:nowrap;
}
.promo-band-price .per{
  font-size:0.45em;
  font-weight:600;
  color:rgba(255,255,255,0.75);
  letter-spacing:0;
  margin-left:0.1em;
}
.promo-band-text{
  display:flex;
  flex-direction:column;
  line-height:1.25;
}
.promo-band-label{
  font-size:0.68rem;
  font-weight:700;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--gold-600);
  margin-bottom:4px;
}
.promo-band-headline{
  font-size:clamp(1rem, 1.8vw, 1.25rem);
  font-weight:600;
  color:var(--white);
  letter-spacing:-0.01em;
}
.promo-band-sub{
  font-size:0.8rem;
  color:rgba(255,255,255,0.72);
  margin-top:4px;
}
.promo-band .btn{flex-shrink:0}
.promo-band .btn-primary{
  background:var(--gold-600);
  color:var(--navy-900);
  font-weight:700;
}
.promo-band .btn-primary:hover{
  background:var(--white);
  color:var(--navy-900);
}
@media (max-width:820px){
  .promo-band{padding:1.25rem 0}
  .promo-band-inner{justify-content:flex-start;gap:1rem}
  .promo-band-copy{gap:1rem;flex:1;min-width:0}
  .promo-band-price{font-size:1.85rem}
  .promo-band-headline{font-size:0.95rem}
  .promo-band-sub{display:none}
  .promo-band .btn{width:100%;padding:0.85rem 1rem}
}
@media (max-width:480px){
  .promo-band-price{font-size:1.65rem}
  .promo-band-headline{font-size:0.9rem;line-height:1.2}
}

/* ============ AS SEEN ON ============ */
.seen-on{background:var(--white);padding:2.5rem 0;border-top:1px solid var(--ink-100);border-bottom:1px solid var(--ink-100)}
.seen-on-label{
  text-align:center;
  font-size:0.72rem;letter-spacing:0.2em;text-transform:uppercase;
  color:var(--ink-500);font-weight:600;
  margin-bottom:1.75rem;
}
.seen-on-grid{
  display:flex;flex-wrap:wrap;justify-content:center;align-items:center;
  gap:clamp(1.25rem, 3vw, 3rem) clamp(1.5rem, 3.5vw, 3.5rem);
}
.seen-on-grid img{
  height:clamp(42px, 6vw, 58px);
  width:auto;max-width:140px;object-fit:contain;
  opacity:0.75;transition:opacity var(--dur-fast);
  filter:grayscale(0.25);
}
.seen-on-grid img:hover{opacity:1;filter:grayscale(0)}

/* ============ SECTIONS ============ */
.section{padding:clamp(4rem,7vw,7rem) 0}
.section-head{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:end;gap:2rem;
  margin-bottom:3rem;
}
.section-head .head-left{max-width:720px}
.section-head h2{margin-top:0.9rem}
.section-head .lede{
  font-size:var(--step-1);
  color:var(--ink-500);
  margin-top:1rem;
  max-width:56ch;
  line-height:1.5;
}
@media (max-width:720px){
  .section-head{grid-template-columns:1fr}
  .section-head .head-right{justify-self:start}
}

/* ============ TREATMENT OPTIONS (TILES) ============ */
.tile-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.25rem;
}
@media (max-width:960px){.tile-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.tile-grid{grid-template-columns:1fr}}
.tile-grid.cols-3{grid-template-columns:repeat(3,1fr)}
@media (max-width:820px){.tile-grid.cols-3{grid-template-columns:1fr}}

.tile{
  position:relative;
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:1.75rem;
  display:flex;flex-direction:column;
  min-height:240px;
  border:1px solid var(--ink-100);
  transition:transform var(--dur) var(--ease), box-shadow var(--dur), border-color var(--dur);
  overflow:hidden;isolation:isolate;
  text-align:left;
}
.tile::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(135deg, var(--teal-50), transparent 70%);
  opacity:0;transition:opacity var(--dur);
}
.tile:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
  border-color:var(--teal-500);
}
.tile:hover::before{opacity:1}
.tile-icon{
  width:56px;height:56px;
  border-radius:var(--radius);
  background:var(--navy-100);
  color:var(--navy-900);
  display:grid;place-items:center;
  margin-bottom:1.25rem;
  transition:background var(--dur), color var(--dur);
}
.tile:hover .tile-icon{background:var(--navy-900);color:var(--gold-600)}
.tile-icon svg{width:1.5rem;height:1.5rem}
.tile-name{
  font-family:var(--font-sans);
  font-size:1.2rem;font-weight:600;
  color:var(--navy-900);
  margin-bottom:0.5rem;letter-spacing:-0.01em;
}
.tile-desc{
  font-size:0.92rem;color:var(--ink-500);
  line-height:1.55;margin:0;flex:1;
}

/* ============ WHY SECTION ============ */
.why{background:var(--navy-900);color:var(--white);position:relative;overflow:hidden}
.why::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(circle at 85% 15%, rgba(255,165,0,.15), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(0,187,204,.15), transparent 50%);
  pointer-events:none;
}
.why .container{position:relative}
.why h2{color:var(--white)}
.why h2 em{color:var(--gold-600);font-weight:700}
.why .lede{color:rgba(255,255,255,.75)}
/* Eyebrow on dark — teal accent is ADA-compliant at 7:1 on navy */
.why .eyebrow{color:var(--teal-500)}
.why .eyebrow::before{background:var(--teal-500)}

.pillars{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem;
  margin-top:3rem;
}
@media (max-width:900px){.pillars{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.pillars{grid-template-columns:1fr}}
.pillar{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius-lg);
  padding:1.75rem;
  transition:background var(--dur), border-color var(--dur), transform var(--dur) var(--ease);
}
.pillar:hover{
  background:rgba(255,255,255,.07);
  border-color:rgba(255,165,0,.35);
  transform:translateY(-4px);
}
.pillar-num{
  font-family:var(--font-sans);
  font-size:0.72rem;font-weight:600;
  color:var(--gold-600);
  letter-spacing:0.18em;text-transform:uppercase;
  margin-bottom:1rem;display:inline-block;
  padding:0.3rem 0.65rem;
  background:rgba(255,165,0,.15);
  border-radius:999px;
}
.pillar-title{
  font-family:var(--font-sans);
  font-size:1.3rem;font-weight:700;
  margin-bottom:0.5rem;color:var(--white);letter-spacing:-0.01em;
}
.pillar-desc{color:rgba(255,255,255,.7);font-size:0.92rem;line-height:1.55}

/* ============ COMPARE TABLE (SQUEEZE-SPECIFIC) ============ */
.compare-section{padding:clamp(4rem,7vw,7rem) 0;background:var(--white)}
.compare-wrap{
  background:var(--white);
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--ink-100);
  box-shadow:var(--shadow);
  position:relative;
}
.compare-table{
  width:100%;
  border-collapse:collapse;
  font-size:0.95rem;
  table-layout:fixed;
}
.compare-table thead th{
  padding:1.25rem 1.5rem;
  text-align:left;
  font-weight:700;
  font-size:1rem;
  letter-spacing:-0.005em;
  vertical-align:middle;
}
.compare-table thead th:first-child{
  background:var(--white);
  color:var(--ink-500);
  font-size:0.72rem;
  text-transform:uppercase;
  letter-spacing:0.14em;
  font-weight:600;
  width:38%;
}
.compare-table thead th.th-ida{
  background:linear-gradient(135deg,var(--teal-600),var(--teal-700));
  color:var(--white);
  width:31%;
}
.compare-table thead th.th-chain{
  background:var(--ink-100);
  color:var(--ink-500);
  width:31%;
}
.compare-table tbody td{
  padding:1rem 1.5rem;
  border-top:1px solid var(--ink-100);
  text-align:left;
  font-size:0.93rem;
  vertical-align:middle;
}
.compare-table tbody td:first-child{color:var(--navy-900);font-weight:600}
.compare-table tbody td.td-ida{background:rgba(0,187,204,0.06);color:var(--navy-900);font-weight:600}
.compare-table tbody td.td-chain{color:var(--ink-500)}
.compare-table tbody tr:hover td:not(:first-child){background:rgba(0,187,204,0.03)}
.compare-table tbody tr:hover td.td-ida{background:rgba(0,187,204,0.10)}
.check-pill{
  display:inline-flex;align-items:center;justify-content:center;
  width:24px;height:24px;border-radius:50%;
  background:#d4eddb;color:#1a7a3a;
  margin-right:0.6rem;
  flex-shrink:0;
  vertical-align:middle;
}
.check-pill svg{width:0.8rem;height:0.8rem}
.cross-pill{
  display:inline-flex;align-items:center;justify-content:center;
  width:24px;height:24px;border-radius:50%;
  background:#fbe2e2;color:#b53030;
  margin-right:0.6rem;
  flex-shrink:0;
  vertical-align:middle;
}
.cross-pill svg{width:0.8rem;height:0.8rem}
.compare-cell{display:inline-flex;align-items:center;gap:0}
/* ALIGNED: removed font-style:italic from compare-note */
.compare-note{
  text-align:center;
  font-size:0.82rem;
  color:var(--ink-500);
  margin-top:1.5rem;
}
@media (max-width:720px){
  .compare-table{font-size:0.82rem}
  .compare-table thead th,.compare-table tbody td{padding:0.8rem 0.8rem}
  .compare-table thead th{font-size:0.82rem}
  .compare-table thead th:first-child{font-size:0.65rem}
  .compare-table tbody td:first-child{font-size:0.82rem}
  .check-pill,.cross-pill{width:20px;height:20px;margin-right:0.4rem}
  .check-pill svg,.cross-pill svg{width:0.7rem;height:0.7rem}
}

/* ============ FEATURED SERVICE ============ */
.feature-service{padding:clamp(4rem,7vw,7rem) 0;position:relative}
.feature-service.feature-teal{background:var(--teal-50)}
.feature-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(2rem,5vw,5rem);
  align-items:center;
}
@media (max-width:900px){.feature-grid{grid-template-columns:1fr}}
.feature-grid.reverse .feature-visual{order:2}
@media (max-width:900px){.feature-grid.reverse .feature-visual{order:0}}

.feature-visual{
  position:relative;
  aspect-ratio:4/5;
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.feature-visual img{width:100%;height:100%;object-fit:cover}
.price-badge{
  position:absolute;top:1.5rem;right:1.5rem;
  background:var(--gold-600);color:var(--navy-900);
  padding:1rem 1.25rem;border-radius:var(--radius);
  text-align:center;box-shadow:var(--shadow);
}
.price-badge .from{font-size:0.68rem;letter-spacing:0.15em;text-transform:uppercase;font-weight:700;line-height:1}
.price-badge .amount{font-size:1.8rem;font-weight:700;line-height:1;margin-top:4px;letter-spacing:-0.02em}
.price-badge .sub{font-size:0.72rem;margin-top:3px;font-weight:600}

.feature-content h2{margin-bottom:1.25rem}
/* ALIGNED: feature em color was teal-700 (3.7:1, AA large only). Swapped to link for AAA compliance. */
.feature-content h2 em{color:var(--link);font-weight:700}
.feature-content .lede{
  font-size:var(--step-1);
  color:var(--ink-700);
  line-height:1.5;
  margin-bottom:1.75rem;
  max-width:50ch;
}
.feature-list{list-style:none;padding:0;margin:0 0 2rem;display:grid;gap:0.85rem}
.feature-list li{display:flex;align-items:flex-start;gap:0.75rem;font-size:0.96rem;color:var(--ink-700)}
/* ALIGNED: list checkmark was teal-700; swapped to link for consistency on white */
.feature-list svg{flex-shrink:0;margin-top:3px;width:1.15rem;height:1.15rem;color:var(--link)}
.feature-list strong{color:var(--navy-900);font-weight:600}
.feature-cta{display:flex;gap:0.75rem;flex-wrap:wrap;align-items:center}

/* ============ SEDATION CARDS (SQUEEZE-SPECIFIC) ============ */
.sedation-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem;
  margin-top:3rem;
}
@media (max-width:820px){.sedation-grid{grid-template-columns:1fr}}
.sedation-card{
  background:var(--white);
  border:1px solid var(--ink-100);
  border-radius:var(--radius-lg);
  padding:2rem;
  transition:transform var(--dur) var(--ease), box-shadow var(--dur), border-color var(--dur);
}
.sedation-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
  border-color:var(--teal-500);
}
.sedation-icon{
  width:48px;height:48px;
  border-radius:12px;
  background:var(--navy-100);
  color:var(--navy-900);
  display:grid;place-items:center;
  margin-bottom:1.25rem;
}
.sedation-icon svg{width:1.35rem;height:1.35rem}
.sedation-card h3{
  font-size:1.25rem;
  color:var(--navy-900);
  margin-bottom:0.5rem;
  font-weight:700;
  letter-spacing:-0.01em;
}
.sedation-card p{
  font-size:0.92rem;
  color:var(--ink-500);
  line-height:1.55;
  margin:0;
}

/* ============ VIDEO TESTIMONIALS ============ */
.videos{padding:clamp(4rem,7vw,7rem) 0;background:var(--white)}
.videos-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem;
  margin-top:2.5rem;
}
@media (max-width:880px){.videos-grid{grid-template-columns:repeat(2,1fr);gap:1rem}}
@media (max-width:560px){.videos-grid{grid-template-columns:1fr}}
.videos-grid .vid-big{grid-column:span 2;grid-row:span 2}
@media (max-width:880px){.videos-grid .vid-big{grid-column:span 2;grid-row:auto}}
@media (max-width:560px){.videos-grid .vid-big{grid-column:span 1}}

.vid-card{
  position:relative;
  aspect-ratio:16/10;
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:var(--navy-900);
  cursor:pointer;display:block;
  transition:transform var(--dur) var(--ease), box-shadow var(--dur);
  border:none;padding:0;width:100%;text-align:left;
}
.vid-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.vid-card img{width:100%;height:100%;object-fit:cover;transition:transform var(--dur-slow) var(--ease)}
.vid-card:hover img{transform:scale(1.05)}
.vid-card::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(15,28,73,0) 40%, rgba(15,28,73,.85));
  pointer-events:none;
}
.vid-play{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:clamp(52px, 8vw, 76px);height:clamp(52px, 8vw, 76px);
  background:rgba(255,255,255,.95);border-radius:50%;
  display:grid;place-items:center;z-index:2;
  transition:background var(--dur-fast), transform var(--dur-fast);
  box-shadow:0 6px 20px rgba(0,0,0,.3);
}
.vid-card:hover .vid-play{background:var(--teal-600);transform:translate(-50%,-50%) scale(1.08)}
.vid-play svg{width:40%;height:40%;color:var(--navy-900);margin-left:2px;transition:color var(--dur-fast)}
.vid-card:hover .vid-play svg{color:var(--white)}
.vid-caption{position:absolute;bottom:1rem;left:1.25rem;right:1.25rem;color:var(--white);z-index:2}
.vid-caption-name{font-size:0.95rem;font-weight:600;letter-spacing:-0.005em}
.vid-caption-sub{font-size:0.8rem;opacity:0.85;margin-top:2px}
.vid-big .vid-caption-name{font-size:1.2rem}
.vid-big .vid-caption-sub{font-size:0.88rem}

.vid-modal{
  position:fixed;inset:0;z-index:120;
  background:rgba(0,0,0,.92);
  display:grid;place-items:center;padding:clamp(1rem,3vw,3rem);
  opacity:0;pointer-events:none;
  transition:opacity var(--dur) var(--ease);
}
.vid-modal.open{opacity:1;pointer-events:auto}
.vid-modal-inner{
  position:relative;
  width:min(95vw, 1400px);
  max-height:85vh;
  aspect-ratio:16/9;
}
/* When viewport is narrow/tall, height becomes the constraint instead of width */
@media (max-aspect-ratio: 16/9){
  .vid-modal-inner{
    width:auto;
    height:min(85vh, 80vw * 9 / 16);
  }
}
.vid-modal iframe{
  width:100%;height:100%;border:none;
  border-radius:var(--radius);
  box-shadow:0 24px 80px rgba(0,0,0,0.5);
}
/* The data-video-embed div is the actual aspect-ratio carrier — iframe injects into it */
.vid-modal [data-video-embed]{
  width:100%;
  height:100%;
  display:block;
}
.vid-modal-close{
  position:absolute;top:-52px;right:0;width:44px;height:44px;
  background:rgba(255,255,255,.15);border-radius:50%;color:var(--white);
  display:grid;place-items:center;transition:background var(--dur-fast), transform var(--dur-fast);
  cursor:pointer;
}
.vid-modal-close:hover{background:rgba(255,255,255,.28);transform:scale(1.08)}
.vid-modal-close svg{width:1.35rem;height:1.35rem}

/* ============ REVIEWS ============ */
.reviews{background:var(--white)}
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem;
  margin-top:3rem;
}
@media (max-width:880px){.reviews-grid{grid-template-columns:1fr}}
.review{
  background:var(--white);
  border:1px solid var(--ink-100);
  border-radius:var(--radius-lg);
  padding:1.75rem;
  position:relative;
}
.review-mark{
  font-family:Georgia, serif;
  font-size:3rem;line-height:0.8;
  color:var(--teal-500);
  margin-bottom:0.5rem;font-weight:700;
  height:1.5rem;overflow:hidden;
}
.review-stars{color:var(--gold-600);letter-spacing:3px;font-size:0.95rem;margin-bottom:1rem}
/* ALIGNED: review text is upright (em reset handles italics globally) */
.review-text{
  font-family:var(--font-sans);
  font-size:var(--step-1);line-height:1.45;
  color:var(--navy-900);font-weight:400;
  margin-bottom:1.5rem;letter-spacing:-0.005em;
}
.review-author{
  display:flex;align-items:center;gap:0.75rem;
  padding-top:1.25rem;border-top:1px solid var(--ink-100);
}
.review-avatar{
  width:44px;height:44px;
  background:var(--navy-100);color:var(--navy-900);
  border-radius:50%;display:grid;place-items:center;
  font-weight:600;font-size:1rem;letter-spacing:-0.01em;
}
.review-meta{line-height:1.3}
.review-name{font-weight:600;font-size:0.95rem;color:var(--navy-900)}
.review-loc{font-size:0.82rem;color:var(--ink-500)}
.review-summary{display:flex;align-items:center;gap:0.75rem;flex-wrap:wrap}
.review-summary .big{font-size:2rem;font-weight:700;color:var(--navy-900);letter-spacing:-0.02em}
.review-summary .stars-big{color:var(--gold-600);font-size:1.15rem;letter-spacing:3px}

/* ============ CREDENTIALS ============ */
.creds{background:var(--bg-alt);border-top:1px solid var(--ink-100);border-bottom:1px solid var(--ink-100);padding:3.5rem 0}
.creds-label{
  text-align:center;
  font-size:0.78rem;letter-spacing:0.16em;text-transform:uppercase;
  color:var(--ink-500);font-weight:600;
  margin-bottom:2.25rem;
}
.creds-grid{
  display:flex;flex-wrap:wrap;justify-content:center;align-items:center;
  gap:clamp(1.5rem, 3.5vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  max-width:1100px;margin:0 auto;
}
.creds-grid a{display:inline-flex;align-items:center;justify-content:center;transition:transform var(--dur-fast)}
.creds-grid a:hover{transform:translateY(-2px)}
.creds-grid img{
  height:clamp(52px, 7vw, 72px);
  width:auto;max-width:160px;object-fit:contain;
  opacity:0.85;transition:opacity var(--dur-fast);
}
.creds-grid a:hover img{opacity:1}

/* ============ FINANCING ============ */
.financing-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(1.25rem,2.5vw,2rem);
  margin-top:3rem;
}
@media (max-width:820px){.financing-grid{grid-template-columns:1fr}}
.finance-card{
  background:var(--white);
  border:1px solid var(--ink-100);
  border-radius:var(--radius-lg);
  padding:clamp(1.75rem,3vw,2.5rem);
  position:relative;overflow:hidden;
  transition:transform var(--dur) var(--ease), box-shadow var(--dur);
}
.finance-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
/* ALIGNED: big number was teal-700 (3.7:1 — AA large only at this size). Swapped to link for full AAA. */
.finance-big{
  font-size:clamp(3.5rem,7vw,5rem);
  font-weight:700;
  color:var(--link);
  line-height:0.9;letter-spacing:-0.04em;
  margin-bottom:1rem;
}
.finance-title{
  font-size:1.35rem;color:var(--navy-900);font-weight:600;
  margin-bottom:0.75rem;letter-spacing:-0.01em;
}
.finance-desc{color:var(--ink-500);font-size:0.95rem;line-height:1.55;margin-bottom:1.5rem}
.finance-points{list-style:none;padding:0;margin:0 0 1.75rem;display:grid;gap:0.5rem}
.finance-points li{display:flex;align-items:center;gap:0.5rem;font-size:0.9rem;color:var(--ink-700)}
.finance-points svg{width:1rem;height:1rem;color:var(--teal-600);flex-shrink:0}

/* Financing partners row — informational, not action */
.finance-partners{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
  margin-top:2.5rem;
}
@media (max-width:720px){.finance-partners{grid-template-columns:repeat(2,1fr)}}
.partner-chip{
  background:var(--white);
  border:1px solid var(--ink-100);
  border-radius:var(--radius);
  padding:1.25rem 1rem;
  text-align:center;
  transition:border-color var(--dur-fast), transform var(--dur-fast);
}
.partner-chip:hover{border-color:var(--teal-500);transform:translateY(-2px)}
.partner-chip .p-name{font-size:0.95rem;font-weight:700;color:var(--navy-900);letter-spacing:-0.005em}
.partner-chip .p-desc{font-size:0.78rem;color:var(--ink-500);margin-top:4px;line-height:1.4}

/* ============ FAQ ============ */
.faq-grid{
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:clamp(2rem,4vw,4rem);
  align-items:start;
}
@media (max-width:820px){.faq-grid{grid-template-columns:1fr}}
.faq-list{display:grid;gap:0.75rem}
.faq-item{
  background:var(--white);
  border:1px solid var(--ink-100);
  border-radius:var(--radius);
  overflow:hidden;
  transition:border-color var(--dur-fast), box-shadow var(--dur-fast);
}
/* ALIGNED: open-state border was teal-500 — keeping as decorative accent (AA large on white 3.7:1; borders don't need AA-normal contrast, they're decorative) */
.faq-item[open]{border-color:var(--teal-500);box-shadow:var(--shadow-sm)}
.faq-item summary{
  list-style:none;cursor:pointer;
  padding:1.25rem 1.5rem;
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  font-size:1.05rem;font-weight:600;
  color:var(--navy-900);
  transition:color var(--dur-fast);letter-spacing:-0.005em;
}
.faq-item summary::-webkit-details-marker{display:none}
/* ALIGNED: hover color was teal-700 (fail on white for body text); swapped to link */
.faq-item summary:hover{color:var(--link)}
.faq-plus{
  width:28px;height:28px;flex-shrink:0;
  border-radius:50%;background:var(--navy-100);color:var(--navy-900);
  display:grid;place-items:center;
  transition:transform var(--dur) var(--ease), background var(--dur), color var(--dur);
  font-size:1.15rem;font-weight:400;line-height:1;
}
.faq-item[open] .faq-plus{transform:rotate(45deg);background:var(--teal-600);color:var(--white)}
.faq-item .faq-body{padding:0 1.5rem 1.5rem;color:var(--ink-700);font-size:0.95rem;line-height:1.65}

/* ============ LOCATIONS ============ */
.locations-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1.5rem;
  margin-top:3rem;
}
@media (max-width:820px){.locations-grid{grid-template-columns:1fr}}
.loc-card{
  background:var(--white);
  border:1px solid var(--ink-100);
  border-radius:var(--radius-lg);
  overflow:hidden;display:flex;flex-direction:column;
  transition:transform var(--dur) var(--ease), box-shadow var(--dur);
}
.loc-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.loc-map{aspect-ratio:4/3;background:var(--navy-100);position:relative;overflow:hidden}
.loc-map img{width:100%;height:100%;object-fit:cover;transition:transform var(--dur-slow) var(--ease)}
.loc-card:hover .loc-map img{transform:scale(1.03)}
.loc-map-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(15,28,73,0) 50%, rgba(15,28,73,.55) 100%);
  display:flex;align-items:flex-end;padding:1.25rem 1.5rem;pointer-events:none;
}
.loc-badge{
  background:var(--white);color:var(--navy-900);
  padding:0.4rem 0.85rem;border-radius:999px;
  font-size:0.78rem;font-weight:600;
  display:inline-flex;align-items:center;gap:0.4rem;
}
.loc-badge::before{
  content:"";width:8px;height:8px;
  background:var(--success);border-radius:50%;
  animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{box-shadow:0 0 0 0 rgba(15,122,79,0.4)}
  50%{box-shadow:0 0 0 6px rgba(15,122,79,0)}
}
.loc-body{padding:1.75rem;flex:1;display:flex;flex-direction:column}
.loc-name{font-size:1.45rem;font-weight:700;color:var(--navy-900);margin-bottom:0.25rem;letter-spacing:-0.01em}
.loc-area{font-size:0.85rem;color:var(--ink-500);margin-bottom:1.25rem}
.loc-info{display:grid;gap:0.75rem;margin-bottom:1.5rem;font-size:0.92rem;color:var(--ink-700)}
.loc-info-row{display:flex;align-items:flex-start;gap:0.65rem}
/* ALIGNED: loc-info icon was teal-700 — swapped to link for AAA on white */
.loc-info-row svg{width:1.1rem;height:1.1rem;color:var(--link);flex-shrink:0;margin-top:2px}
.loc-actions{display:grid;grid-template-columns:1fr 1fr;gap:0.6rem;margin-top:auto}
.loc-actions .btn{padding:0.75rem 1rem;font-size:0.85rem}

/* ============ MID-PAGE CTA BAND ============ */
.mid-cta-section{padding:clamp(3rem,5vw,5rem) 0;background:var(--teal-50)}
.mid-cta-band{
  background:linear-gradient(120deg,var(--navy-900),var(--navy-800) 60%,var(--teal-700));
  color:var(--white);
  border-radius:var(--radius-xl);
  padding:clamp(2rem,4vw,3rem);
  display:grid;
  grid-template-columns:1.3fr auto;
  gap:2rem;
  align-items:center;
  box-shadow:var(--shadow-lg);
  position:relative;
  overflow:hidden;
}
.mid-cta-band::after{
  content:"";
  position:absolute;
  bottom:-80px;right:-80px;
  width:280px;height:280px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,165,0,.18),transparent 70%);
  pointer-events:none;
}
.mid-cta-band > *{position:relative;z-index:1}
.mid-cta-band .eyebrow{color:var(--gold-600)}
.mid-cta-band .eyebrow::before{background:var(--gold-600)}
.mid-cta-band h2{color:var(--white);margin:0.75rem 0 0.5rem;font-size:clamp(1.75rem, 3.5vw, 2.5rem)}
.mid-cta-band h2 em{color:var(--gold-600);font-weight:700}
.mid-cta-band p{margin:0;color:rgba(255,255,255,.8);font-size:clamp(0.95rem, 1.1vw, 1.05rem);max-width:52ch}
.mid-cta-band .cta-row{display:flex;gap:0.75rem;flex-wrap:wrap;justify-content:flex-end}
@media (max-width:820px){
  .mid-cta-band{grid-template-columns:1fr;gap:1.5rem}
  .mid-cta-band .cta-row{justify-content:flex-start}
}

/* ============ FINAL CTA ============ */
.final-cta{
  background:
    radial-gradient(ellipse 700px 400px at 15% 20%, rgba(0,187,204,.12), transparent 55%),
    radial-gradient(ellipse 800px 500px at 85% 80%, rgba(255,165,0,.08), transparent 55%),
    var(--navy-900);
  color:var(--white);
  padding:clamp(4rem,8vw,7rem) 0;
  text-align:center;
  position:relative;overflow:hidden;
}
.final-cta h2{color:var(--white);font-size:var(--step-6);max-width:18ch;margin:0 auto 1.5rem}
.final-cta h2 em{color:var(--gold-600);font-weight:700}
.final-cta p{
  font-size:var(--step-1);
  color:rgba(255,255,255,.75);
  max-width:52ch;margin:0 auto 2.5rem;line-height:1.55;
}
.final-cta .eyebrow{color:var(--gold-600);justify-content:center}
.final-cta .eyebrow::before{background:var(--gold-600)}
.final-cta-btns{display:flex;gap:0.85rem;justify-content:center;flex-wrap:wrap}

/* ============ FOOTER ============ */
/* ALIGNED: navy gradient (not near-black); logo CSS-sized */
.footer{
  background:linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color:rgba(255,255,255,.7);
  padding:3rem 0 2rem;font-size:0.88rem;
}
.footer-top{
  display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:2.5rem;margin-bottom:2rem;
}
@media (max-width:720px){.footer-top{grid-template-columns:1fr;gap:1.75rem}}
.footer-about{margin:1rem 0 1.25rem;line-height:1.6;color:rgba(255,255,255,.6);font-size:0.85rem}
.footer-col h4{
  font-size:0.75rem;letter-spacing:0.14em;text-transform:uppercase;
  color:var(--white);font-weight:600;margin-bottom:0.85rem;
}
.footer-col ul{list-style:none;padding:0;margin:0;display:grid;gap:0.55rem}
.footer-col a{color:rgba(255,255,255,.65);transition:color var(--dur-fast);font-size:0.88rem}
.footer-col a:hover{color:var(--teal-500)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);padding-top:1.5rem;
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:1rem;
  font-size:0.78rem;color:rgba(255,255,255,.5);
}
.footer-legal{display:flex;gap:1.5rem;flex-wrap:wrap}
.footer-legal a:hover{color:var(--white)}

/* ============ MODALS ============ */
.modal-backdrop{
  position:fixed;inset:0;z-index:100;
  overflow:hidden;
  background:rgba(15,28,73,.65);
  backdrop-filter:blur(8px);
  display:grid;place-items:center;padding:1.25rem;
  opacity:0;pointer-events:none;
  transition:opacity var(--dur) var(--ease);
}
.modal-backdrop.open{opacity:1;pointer-events:auto}
.modal{
  background:var(--white);
  border-radius:var(--radius-xl);
  max-width:560px;width:100%;overflow:hidden;
  transform:translateY(20px) scale(.98);
  transition:transform var(--dur) var(--ease-out);
  max-height:90vh;display:flex;flex-direction:column;
}
.modal-backdrop.open .modal{transform:translateY(0) scale(1)}
.modal-header{
  padding:1.5rem 1.75rem 1rem;
  display:flex;align-items:flex-start;justify-content:space-between;gap:1rem;
  border-bottom:1px solid var(--ink-100);
  flex-shrink:0;
}
.modal-title{font-size:1.4rem;font-weight:700;color:var(--navy-900);line-height:1.15;letter-spacing:-0.02em}
.modal-sub{font-size:0.9rem;color:var(--ink-500);margin-top:0.35rem}
.modal-body{padding:1.5rem 1.75rem;overflow-x:hidden;overflow-y:auto;flex:1;-webkit-overflow-scrolling:touch}
/* Mobile full-screen sheet */
@media (max-width:640px){
  .modal-backdrop{
    padding:0;
    backdrop-filter:none;
    background:var(--white);
    align-items:stretch;
  }
  .modal{
    max-width:100%;
    max-height:none;
    height:100vh;
    height:100dvh;
    border-radius:0;
    transform:translateY(16px);
    box-shadow:none;
  }
  .modal-backdrop.open .modal{transform:translateY(0)}
  .modal-header{
    position:sticky;top:0;z-index:2;
    background:var(--white);
    padding:1rem 1.25rem;
    padding-top:calc(1rem + env(safe-area-inset-top, 0px));
  }
  .modal-title{font-size:1.15rem}
  .modal-sub{font-size:0.82rem;margin-top:0.2rem}
  .modal-body{
    padding:1.25rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
  }
}
.btn-close{
  width:40px;height:40px;display:grid;place-items:center;
  border-radius:50%;background:var(--ink-100);color:var(--navy-900);
  border:1.5px solid var(--ink-200);
  transition:background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
  flex-shrink:0;cursor:pointer;
}
.btn-close:hover{background:var(--navy-900);border-color:var(--navy-900);color:var(--white)}
.btn-close svg{width:1.15rem;height:1.15rem}
@media (max-width:640px){
  .btn-close{width:44px;height:44px}
  .btn-close svg{width:1.25rem;height:1.25rem}
}

/* Modal brand lockup — clarifies which business the user is booking with */
.modal-brand{
  display:flex;align-items:center;gap:0.55rem;
  padding:0.75rem 1.75rem;
  background:var(--navy-900);
  color:var(--white);
  font-size:0.72rem;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.modal-brand-mark{
  width:26px;height:26px;
  display:grid;place-items:center;
  flex-shrink:0;
}
.modal-brand-mark img{
  width:100%;height:100%;
  object-fit:contain;
  display:block;
}
.modal-brand-meta{color:rgba(255,255,255,.6);font-weight:500;letter-spacing:0.04em;text-transform:none}
@media (max-width:640px){
  .modal-brand{
    padding:0.75rem 1.25rem;
    padding-top:calc(0.75rem + env(safe-area-inset-top, 0px));
    position:sticky;top:0;z-index:3;
  }
  .modal-header{padding-top:1rem !important}
}

/* Back button for the appointment form (returns to location picker) */
.modal-back{
  display:inline-flex;align-items:center;gap:0.4rem;
  background:none;border:none;padding:0.4rem 0.6rem;
  margin-left:-0.6rem;
  color:var(--link);font-size:0.85rem;font-weight:600;
  cursor:pointer;font-family:inherit;
  border-radius:6px;
  transition:background var(--dur-fast), color var(--dur-fast);
}
.modal-back:hover{background:var(--bg-blue);color:var(--link-hover)}
.modal-back svg{width:1rem;height:1rem}.modal-header .modal-back{margin-bottom:0.35rem}
.modal-body .loc-choice{
  display:flex;align-items:center;gap:1rem;
  padding:1.1rem 1.25rem;
  border:1.5px solid var(--ink-200);border-radius:var(--radius);
  background:var(--white);width:100%;text-align:left;
  transition:all var(--dur-fast);margin-bottom:0.75rem;
}
.modal-body .loc-choice:hover{
  border-color:var(--teal-600);background:var(--teal-50);
  transform:translateY(-1px);box-shadow:var(--shadow-sm);
}
.loc-choice-icon{
  width:44px;height:44px;flex-shrink:0;
  background:var(--navy-100);color:var(--navy-900);
  border-radius:50%;display:grid;place-items:center;
}
.loc-choice-icon svg{width:1.2rem;height:1.2rem}
.loc-choice-text{flex:1;min-width:0}
.loc-choice-name{font-size:1.1rem;font-weight:600;color:var(--navy-900);line-height:1.2}
.loc-choice-addr{font-size:0.85rem;color:var(--ink-500);margin-top:2px}
.loc-choice-arrow{color:var(--ink-300);transition:color var(--dur-fast),transform var(--dur-fast)}
.loc-choice:hover .loc-choice-arrow{color:var(--link);transform:translateX(4px)}

/* ============ APPOINTMENT REQUEST FORM (in modal) ============ */
.appt-form{display:flex;flex-direction:column;gap:0.85rem}
.appt-form-loc{
  display:flex;align-items:center;gap:0.65rem;
  background:var(--teal-50);
  border:1px solid rgba(0,187,204,0.2);
  border-radius:10px;
  padding:0.7rem 0.9rem;
  font-size:0.85rem;
  color:var(--navy-900);
}
.appt-form-loc svg{width:1rem;height:1rem;color:var(--link);flex-shrink:0}
.appt-form-loc .loc-label{font-weight:500;flex:1;min-width:0}
.appt-form-loc .loc-label strong{font-weight:700;display:block;line-height:1.2}
.appt-form-loc .loc-label .addr{font-size:0.78rem;color:var(--ink-500);font-weight:400;margin-top:1px}
.appt-form-loc .change-btn{
  background:none;border:none;padding:0;
  color:var(--link);font-size:0.8rem;font-weight:600;
  text-decoration:underline;text-underline-offset:2px;
  cursor:pointer;font-family:inherit;flex-shrink:0;
}
.appt-form-loc .change-btn:hover{color:var(--link-hover)}
.appt-field label{
  display:block;font-size:0.7rem;font-weight:600;
  color:var(--navy-900);margin-bottom:0.35rem;
  letter-spacing:0.06em;text-transform:uppercase;
}
.appt-field .req{color:var(--danger);margin-left:2px}
.appt-input,.appt-select,.appt-textarea{
  width:100%;
  border:1.5px solid var(--ink-200);
  border-radius:10px;
  padding:0.8rem 0.95rem;
  font-size:1rem;
  background:var(--white);
  font-family:inherit;color:var(--ink-900);
  transition:border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.appt-input:focus,.appt-select:focus,.appt-textarea:focus{
  outline:none;border-color:var(--teal-600);
  box-shadow:0 0 0 3px rgba(0,187,204,.15);
}
.appt-input::placeholder,.appt-textarea::placeholder{color:var(--ink-300)}
.appt-select{
  appearance:none;-webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A6472' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 1rem center;
  padding-right:2.5rem;
}
.appt-textarea{resize:vertical;min-height:92px}
.appt-row-2{display:grid;grid-template-columns:1fr 1fr;gap:0.85rem}
@media (max-width:480px){.appt-row-2{grid-template-columns:1fr}}
.appt-submit{
  width:100%;border:none;
  background:var(--navy-900);color:var(--white);
  border-radius:12px;
  padding:1rem 1.25rem;
  font-size:1rem;font-weight:700;
  cursor:pointer;letter-spacing:0.01em;
  transition:background var(--dur-fast), transform var(--dur-fast);
  margin-top:0.35rem;min-height:54px;
  display:inline-flex;align-items:center;justify-content:center;gap:0.5rem;
  font-family:inherit;
}
.appt-submit:hover{background:var(--navy-800)}
.appt-submit:active{transform:scale(0.98)}
.appt-submit svg{width:1.15rem;height:1.15rem}
.appt-foot{font-size:0.72rem;color:var(--ink-500);margin:0;line-height:1.5}
.appt-success{
  text-align:center;padding:1rem 0 0.5rem;
}
.appt-success-icon{
  width:56px;height:56px;margin:0 auto 1rem;
  background:#d4eddb;color:#1a7a3a;
  border-radius:50%;display:grid;place-items:center;
}
.appt-success-icon svg{width:1.75rem;height:1.75rem}
.appt-success h3{font-size:1.3rem;color:var(--navy-900);margin:0 0 0.5rem;font-weight:700;letter-spacing:-0.01em}
.appt-success p{color:var(--ink-500);font-size:0.95rem;line-height:1.55;margin:0 0 1.25rem}
.appt-success .call-cta{
  display:inline-flex;align-items:center;gap:0.5rem;
  background:var(--navy-900);color:var(--white);
  padding:0.85rem 1.5rem;border-radius:999px;
  font-weight:600;font-size:0.95rem;text-decoration:none;
  transition:background var(--dur-fast);
}
.appt-success .call-cta:hover{background:var(--navy-800)}

/* ============ STICKY MOBILE CTA BAR ============ */
.mobile-cta-bar{
  display:none;
  position:fixed;bottom:0;left:0;right:0;z-index:70;
  background:var(--white);border-top:1px solid var(--ink-100);
  box-shadow:0 -4px 16px rgba(15,28,73,.08);
  padding:0.6rem 0.6rem calc(0.6rem + env(safe-area-inset-bottom, 0.2rem));
}
.mobile-cta-bar-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:0.4rem}
.mobile-cta-btn{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:0.15rem;padding:0.65rem 0.5rem;
  border-radius:12px;font-family:var(--font-sans);
  font-weight:600;font-size:0.78rem;letter-spacing:0.01em;
  line-height:1.1;
  transition:background var(--dur-fast), transform var(--dur-fast);
  text-align:center;min-height:56px;
}
.mobile-cta-btn:active{transform:scale(0.97)}
.mobile-cta-btn svg{width:1.15rem;height:1.15rem;flex-shrink:0}
.mobile-cta-btn.primary{background:var(--navy-900);color:var(--white)}
.mobile-cta-btn.primary:hover{background:var(--navy-800)}
.mobile-cta-btn.secondary{background:var(--bg-blue);color:var(--navy-900)}
.mobile-cta-btn.secondary svg{color:var(--navy-900);stroke:var(--navy-900)}
.mobile-cta-btn.secondary:hover{background:rgba(0,102,204,0.18)}
.mobile-cta-btn .cta-label{font-size:0.75rem;font-weight:700;letter-spacing:0.01em}
@media (max-width:820px){
  .mobile-cta-bar{display:block}
  body{padding-bottom:72px}
}

/* ============ FLOATING DESKTOP FAB ============ */
.fab{
  position:fixed;right:1.25rem;bottom:1.25rem;z-index:60;
  display:flex;flex-direction:column;gap:0.6rem;align-items:flex-end;
}
.fab-btn{
  background:var(--teal-600);color:var(--navy-900);
  border-radius:999px;padding:0.85rem 1.25rem;
  font-weight:600;font-size:0.9rem;
  box-shadow:var(--shadow-lg);
  display:inline-flex;align-items:center;gap:0.5rem;
  transition:background var(--dur-fast), transform var(--dur-fast);
}
.fab-btn:hover{background:var(--teal-700);transform:translateY(-2px)}
.fab-btn.call{background:var(--navy-900);color:var(--white)}
.fab-btn.call:hover{background:var(--navy-800)}
.fab-btn svg{width:1.05rem;height:1.05rem}
@media (max-width:820px){.fab{display:none}}

.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s var(--ease-out), transform .7s var(--ease-out)}
.reveal.in{opacity:1;transform:translateY(0)}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms !important;transition-duration:.01ms !important}
  .reveal{opacity:1;transform:none}
}
/* Inline-link styled button — for in-paragraph CTAs that need to look like links */
button.link-btn{
  background:none;
  border:none;
  padding:0;
  margin:0;
  font:inherit;
  color:var(--link);
  text-decoration:underline;
  text-underline-offset:3px;
  text-decoration-thickness:1.5px;
  cursor:pointer;
  transition:color var(--dur-fast);
}
button.link-btn:hover{color:var(--link-hover)}

/* nav-phone as <button> — match the <a> baseline so layout doesn't shift */
button.nav-phone{font-family:inherit;cursor:pointer}

/* GHL iframe wrappers */
.ghl-hero-iframe-wrap{border-radius:var(--radius-sm);overflow:hidden;background:var(--white)}
.ghl-hero-iframe-wrap iframe{width:100%;max-width:100%;display:block}
.ghl-form-wrap{border-radius:var(--radius);overflow:hidden;border:1px solid var(--ink-200);background:var(--white)}
.ghl-form-wrap iframe{width:100%;max-width:100%;display:block}

/* ============ EMERGENCY HERO SPECIFICS ============ */
.hero-urgent-badge{
  display:inline-flex;align-items:center;gap:0.55rem;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.25);
  color:#fff;
  padding:0.4rem 0.85rem;
  border-radius:999px;
  font-size:0.72rem;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;
  margin-bottom:1.5rem;
  backdrop-filter:blur(6px);
}
.hero-urgent-pulse{
  width:10px;height:10px;border-radius:50%;
  background:#dc2626;
  box-shadow:0 0 0 0 rgba(220,38,38,0.7);
  animation:pulseUrgent 2s ease-in-out infinite;
  flex-shrink:0;
}
@keyframes pulseUrgent{
  0%,100%{box-shadow:0 0 0 0 rgba(220,38,38,0.7)}
  50%{box-shadow:0 0 0 8px rgba(220,38,38,0)}
}
.hero-tagline{
  font-size:1.05rem;
  font-weight:600;
  color:var(--gold-600);
  letter-spacing:-0.005em;
  margin:0 0 1.25rem;
}
.hero-checks{
  list-style:none;padding:0;margin:1.5rem 0 0;
  display:grid;grid-template-columns:repeat(2,auto);gap:0.5rem 1.5rem;
  justify-content:start;
}
.hero-checks li{
  display:flex;align-items:center;gap:0.45rem;
  font-size:0.85rem;
  color:rgba(255,255,255,0.92);
  font-weight:500;
}
.hero-checks li svg{
  width:1rem;height:1rem;
  color:var(--gold-600);
  flex-shrink:0;
}

/* Emergency hotline card (replaces hero form on this page) */
.hero-emergency-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg);
  padding:1.5rem;
  display:flex;flex-direction:column;gap:1rem;
  animation:fadeUp 0.8s var(--ease-out) 0.3s both;
}
.he-card-header{display:flex;flex-direction:column;gap:0.65rem}
.he-card-eyebrow{
  font-size:0.7rem;font-weight:700;
  letter-spacing:0.14em;text-transform:uppercase;
  color:var(--ink-500);
}
.he-card-phone{
  display:flex;align-items:center;justify-content:center;gap:0.6rem;
  background:var(--navy-900);color:var(--white);
  border:none;border-radius:12px;
  padding:1rem 1.25rem;
  font-family:inherit;
  font-size:1.1rem;font-weight:700;
  cursor:pointer;
  transition:background var(--dur-fast),transform var(--dur-fast);
  width:100%;
}
.he-card-phone:hover{background:var(--navy-800)}
.he-card-phone:active{transform:scale(0.98)}
.he-card-phone svg{width:1.25rem;height:1.25rem;color:var(--gold-600)}

.he-card-hours{
  display:grid;grid-template-columns:1fr 1fr;gap:0.5rem 1rem;
  padding:0.75rem 0;
  border-top:1px solid var(--ink-100);
  border-bottom:1px solid var(--ink-100);
}
.he-hours-row{
  display:flex;justify-content:space-between;align-items:baseline;
  gap:0.5rem;font-size:0.82rem;
}
.he-hours-day{color:var(--ink-500);font-weight:500}
.he-hours-time{color:var(--navy-900);font-weight:700;letter-spacing:-0.005em}

.he-card-divider{
  position:relative;text-align:center;
  font-size:0.7rem;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--ink-500);
  margin:0.25rem 0;
}
.he-card-divider::before,.he-card-divider::after{
  content:"";position:absolute;top:50%;width:calc(50% - 7rem);height:1px;background:var(--ink-200);
}
.he-card-divider::before{left:0}
.he-card-divider::after{right:0}

.he-card-checks{
  list-style:none;padding:0;margin:0;display:grid;gap:0.5rem;
}
.he-card-checks li{
  display:flex;align-items:flex-start;gap:0.55rem;
  font-size:0.86rem;color:var(--ink-700);
  line-height:1.4;
}
.he-card-checks li svg{
  width:1rem;height:1rem;
  color:var(--success);
  flex-shrink:0;margin-top:3px;
}

@media (max-width:900px){
  .hero-emergency-card{padding:1.25rem}
  .he-card-phone{font-size:1rem}
  .hero-checks{grid-template-columns:1fr}
}

/* ============ TILE TAGS (Emergency) ============ */
.tile-tag{
  display:inline-block;
  font-size:0.72rem;font-weight:700;
  letter-spacing:0.06em;text-transform:uppercase;
  color:var(--link);
  margin-top:auto;
  padding-top:0.75rem;
}
.tile-tag-urgent{color:var(--danger)}
.tile-tag-gold{color:var(--gold-600)}

.tile.tile-cta{
  background:linear-gradient(135deg,var(--navy-900),var(--navy-800));
  border-color:var(--navy-900);
}
.tile.tile-cta::before{display:none}
.tile.tile-cta .tile-name{color:var(--white)}
.tile.tile-cta .tile-desc{color:rgba(255,255,255,0.85)}
.tile.tile-cta:hover{
  border-color:var(--gold-600);
  transform:translateY(-4px);
}
.tile.tile-cta:hover .tile-icon{background:var(--gold-700);color:var(--navy-900)}

/* ============ COVERAGE / FINANCING (Your Care Is Covered) ============ */
.coverage-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;
  margin-top:3rem;
}
@media (max-width:820px){.coverage-grid{grid-template-columns:1fr}}
.coverage-card{
  background:var(--white);
  border:1px solid var(--ink-100);
  border-radius:var(--radius-lg);
  padding:clamp(1.75rem,3vw,2.5rem);
  transition:transform var(--dur) var(--ease),box-shadow var(--dur);
}
.coverage-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.coverage-icon{
  width:56px;height:56px;border-radius:var(--radius);
  background:var(--navy-100);color:var(--navy-900);
  display:grid;place-items:center;
  margin-bottom:1.25rem;
}
.coverage-icon svg{width:1.5rem;height:1.5rem}
.coverage-icon-gold{background:var(--gold-50);color:var(--gold-700)}
.coverage-card h3{
  font-size:1.35rem;color:var(--navy-900);
  margin-bottom:0.75rem;letter-spacing:-0.01em;
}
.coverage-card p{color:var(--ink-500);font-size:0.95rem;line-height:1.55;margin:0 0 1rem}
.insurance-list{
  list-style:none;padding:0;margin:1.25rem 0 0;
  display:grid;grid-template-columns:1fr 1fr;gap:0.5rem 1rem;
}
.insurance-list li{
  font-size:0.88rem;color:var(--navy-900);font-weight:500;
  position:relative;padding-left:1.1rem;
}
.insurance-list li::before{
  content:"";
  position:absolute;left:0;top:0.6rem;
  width:6px;height:6px;border-radius:50%;
  background:var(--teal-600);
}
.coverage-financing .financing-big{
  font-size:clamp(3.5rem,7vw,5rem);
  font-weight:700;
  color:var(--gold-600);
  line-height:0.9;letter-spacing:-0.04em;
  margin:0.5rem 0 0.25rem;
}
.coverage-financing .financing-big-sub{
  font-size:0.9rem;font-weight:600;
  color:var(--ink-700);
  margin-bottom:1rem;
}

/* ============ IMPLANTS LP SPECIFICS ============ */

/* Hero "ticker" chips under CTA buttons */
.hero-tickers{
  display:flex;flex-wrap:wrap;gap:1.25rem;
  margin-top:1.75rem;
  font-size:0.82rem;color:rgba(255,255,255,0.85);
  font-weight:500;
}
.hero-tickers span{
  display:inline-flex;align-items:center;gap:0.4rem;
}
.hero-tickers .pulse-dot{
  width:8px;height:8px;border-radius:50%;background:var(--gold-600);
  animation:pulseUrgent 2s ease-in-out infinite;
}

/* Track Record band */
.track-record{
  background:var(--navy-900);color:var(--white);
  padding:2.5rem 0;
  position:relative;overflow:hidden;
}
.track-record::before{
  content:"";
  position:absolute;
  top:-30%;left:-5%;
  width:280px;height:280px;
  background:radial-gradient(circle,rgba(255,165,0,0.18),transparent 70%);
  pointer-events:none;
}
.track-record-inner{
  display:grid;grid-template-columns:auto 1fr;
  gap:2rem;align-items:center;
  position:relative;z-index:1;
}
@media (max-width:820px){.track-record-inner{grid-template-columns:1fr;gap:1.5rem}}
.track-record-headline{
  display:flex;flex-direction:column;gap:0.4rem;
}
.tr-eyebrow{
  font-size:0.7rem;font-weight:700;letter-spacing:0.16em;text-transform:uppercase;
  color:var(--gold-600);
}
.tr-stat{
  font-size:clamp(2.5rem,5vw,3.5rem);
  font-weight:700;line-height:1;letter-spacing:-0.025em;
  color:var(--white);
}
.tr-stars{color:var(--gold-600);font-size:1.2rem;letter-spacing:3px;margin-top:0.25rem}
.tr-sub{color:rgba(255,255,255,0.75);font-size:0.95rem;margin-top:0.25rem}

.track-record-metrics{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;
}
@media (max-width:600px){.track-record-metrics{grid-template-columns:repeat(2,1fr);gap:0.85rem}}
.tr-metric{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:14px;padding:1rem 1.1rem;
  text-align:left;
}
.tr-metric-value{
  font-size:1.5rem;font-weight:700;
  color:var(--gold-600);
  letter-spacing:-0.015em;
  line-height:1;
  margin-bottom:0.4rem;
}
.tr-metric-label{
  font-size:0.78rem;color:rgba(255,255,255,0.7);
  letter-spacing:0.04em;line-height:1.3;
}

/* $500 Off limited-time promo banner */
.promo-500{
  background:var(--bg-alt);
  border-top:1px solid var(--ink-100);
  border-bottom:1px solid var(--ink-100);
  border-left:4px solid var(--gold-600);
  padding:1.75rem 0;
}
.promo-500-inner{
  display:grid;grid-template-columns:auto 1fr auto;
  gap:1.5rem;align-items:center;
}
@media (max-width:820px){.promo-500-inner{grid-template-columns:1fr;gap:1rem;text-align:center}}
.promo-500-icon{
  width:56px;height:56px;border-radius:50%;
  background:var(--gold-600);color:var(--navy-900);
  display:grid;place-items:center;
}
.promo-500-icon svg{width:1.5rem;height:1.5rem}
.promo-500-text{
  display:flex;flex-direction:column;gap:0.2rem;
}
.promo-500-eyebrow{
  font-size:0.7rem;font-weight:700;letter-spacing:0.15em;text-transform:uppercase;
  color:var(--gold-700);
}
.promo-500-headline{
  font-size:clamp(1.1rem,2vw,1.35rem);
  font-weight:700;color:var(--navy-900);
  letter-spacing:-0.01em;line-height:1.25;
}
.promo-500-sub{
  font-size:0.88rem;color:var(--ink-700);
}

/* Tile-tag styling already exists; reuse */

/* Reviews block (3 reviews from source) */
.reviews-three{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;
  margin-top:3rem;
}
@media (max-width:880px){.reviews-three{grid-template-columns:1fr}}
.review-card{
  background:var(--white);
  border:1px solid var(--ink-100);
  border-radius:var(--radius-lg);
  padding:1.75rem;
  position:relative;
  transition:transform var(--dur) var(--ease), box-shadow var(--dur);
}
.review-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.review-card-stars{color:var(--gold-600);letter-spacing:3px;font-size:0.95rem;margin-bottom:1rem}
.review-card-text{
  font-family:var(--font-sans);
  font-size:1.05rem;line-height:1.5;
  color:var(--navy-900);font-weight:400;
  margin-bottom:1.5rem;letter-spacing:-0.005em;
}
.review-card-author{
  display:flex;align-items:center;gap:0.65rem;
  padding-top:1rem;border-top:1px solid var(--ink-100);
}
.review-card-avatar{
  width:42px;height:42px;
  background:var(--navy-100);color:var(--navy-900);
  border-radius:50%;display:grid;place-items:center;
  font-weight:600;font-size:0.95rem;letter-spacing:-0.01em;
}
.review-card-meta{line-height:1.3}
.review-card-name{font-weight:600;font-size:0.92rem;color:var(--navy-900)}
.review-card-sub{font-size:0.8rem;color:var(--ink-500)}

/* Process — 6 steps */
.process-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;
  margin-top:3rem;
  counter-reset:step;
}
@media (max-width:880px){.process-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.process-grid{grid-template-columns:1fr}}
.process-card{
  background:var(--white);
  border:1px solid var(--ink-100);
  border-radius:var(--radius-lg);
  padding:1.75rem;
  position:relative;
  transition:transform var(--dur) var(--ease), box-shadow var(--dur), border-color var(--dur);
}
.process-card:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:var(--teal-500)}
.process-num{
  display:inline-grid;place-items:center;
  width:42px;height:42px;border-radius:50%;
  background:var(--navy-900);color:var(--gold-600);
  font-size:1.15rem;font-weight:700;letter-spacing:-0.02em;
  margin-bottom:1rem;
}
.process-title{
  font-size:1.15rem;font-weight:700;
  color:var(--navy-900);letter-spacing:-0.01em;
  margin-bottom:0.4rem;
}
.process-desc{
  font-size:0.9rem;color:var(--ink-500);line-height:1.5;margin:0;
}
.process-tag{
  display:inline-block;
  margin-top:0.85rem;
  background:var(--bg-blue);color:var(--link);
  font-size:0.7rem;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;
  padding:0.25rem 0.6rem;border-radius:999px;
}

/* Dream Team section */
.dream-team{
  background:linear-gradient(135deg,var(--navy-900),var(--navy-800));
  color:var(--white);padding:clamp(4rem,7vw,7rem) 0;
  position:relative;overflow:hidden;
}
.dream-team::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(circle at 85% 15%, rgba(255,165,0,.12), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(0,187,204,.15), transparent 50%);
  pointer-events:none;
}
.dream-team .container{position:relative}
.dream-team h2{color:var(--white)}
.dream-team h2 em{color:var(--gold-600);font-weight:700}
.dream-team .lede{color:rgba(255,255,255,.75)}
.dream-team .eyebrow{color:var(--teal-500)}
.dream-team .eyebrow::before{background:var(--teal-500)}

.team-roles{
  display:flex;flex-wrap:wrap;gap:0.6rem;
  margin:2rem 0 3rem;
}
.team-roles li{
  list-style:none;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  padding:0.55rem 1rem;border-radius:999px;
  font-size:0.88rem;font-weight:500;color:rgba(255,255,255,0.92);
  display:inline-flex;align-items:center;gap:0.5rem;
}
.team-roles li svg{
  width:1rem;height:1rem;color:var(--gold-600);
}

.team-benefits{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem;
}
@media (max-width:900px){.team-benefits{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.team-benefits{grid-template-columns:1fr}}
.team-benefit{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--radius-lg);
  padding:1.5rem;
  transition:background var(--dur),border-color var(--dur), transform var(--dur) var(--ease);
}
.team-benefit:hover{
  background:rgba(255,255,255,0.07);
  border-color:rgba(255,165,0,0.35);
  transform:translateY(-3px);
}
.team-benefit-icon{
  width:44px;height:44px;border-radius:12px;
  background:rgba(255,165,0,0.18);color:var(--gold-600);
  display:grid;place-items:center;
  margin-bottom:0.85rem;
}
.team-benefit-icon svg{width:1.2rem;height:1.2rem}
.team-benefit-title{
  font-size:1.05rem;font-weight:700;
  color:var(--white);margin-bottom:0.35rem;
  letter-spacing:-0.005em;
}
.team-benefit-desc{
  color:rgba(255,255,255,0.72);
  font-size:0.88rem;line-height:1.5;margin:0;
}

/* Offers grid (3 cards) */
.offers-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem;
  margin-top:3rem;
}
@media (max-width:880px){.offers-grid{grid-template-columns:1fr}}
.offer-card{
  background:var(--white);
  border:1px solid var(--ink-100);
  border-radius:var(--radius-lg);
  padding:2rem 1.75rem;
  text-align:center;
  position:relative;
  transition:transform var(--dur) var(--ease), box-shadow var(--dur), border-color var(--dur);
}
.offer-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
  border-color:var(--gold-600);
}
.offer-card.offer-highlight{
  background:var(--navy-900);
  border-color:var(--navy-900);
  color:var(--white);
}
.offer-card.offer-highlight .offer-title{color:var(--white)}
.offer-card.offer-highlight .offer-desc{color:rgba(255,255,255,0.78)}
.offer-icon{
  width:60px;height:60px;border-radius:50%;
  background:var(--navy-100);color:var(--navy-900);
  display:grid;place-items:center;
  margin:0 auto 1.25rem;
}
.offer-card.offer-highlight .offer-icon{
  background:var(--gold-600);color:var(--navy-900);
}
.offer-icon svg{width:1.5rem;height:1.5rem}
.offer-title{
  font-size:1.2rem;font-weight:700;
  color:var(--navy-900);
  margin-bottom:0.6rem;letter-spacing:-0.01em;
}
.offer-desc{
  color:var(--ink-500);font-size:0.92rem;line-height:1.55;margin:0 0 1rem;
}
.offer-value-tag{
  display:inline-block;
  background:var(--gold-600);color:var(--navy-900);
  font-size:0.7rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;
  padding:0.3rem 0.7rem;border-radius:999px;
}

/* Payment 4-card grid */
.payment-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem;
  margin-top:3rem;
}
@media (max-width:880px){.payment-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:480px){.payment-grid{grid-template-columns:1fr}}
.payment-card{
  background:var(--white);
  border:1px solid var(--ink-100);
  border-radius:var(--radius-lg);
  padding:1.5rem;
  transition:transform var(--dur) var(--ease), box-shadow var(--dur), border-color var(--dur);
}
.payment-card:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:var(--teal-500)}
.payment-icon{
  width:48px;height:48px;border-radius:12px;
  background:var(--bg-blue);color:var(--link);
  display:grid;place-items:center;
  margin-bottom:1rem;
}
.payment-icon svg{width:1.25rem;height:1.25rem}
.payment-title{
  font-size:1.05rem;font-weight:700;
  color:var(--navy-900);margin-bottom:0.35rem;
  letter-spacing:-0.005em;
}
.payment-desc{
  color:var(--ink-500);font-size:0.88rem;line-height:1.5;margin:0;
}
.payment-tag{
  display:inline-block;margin-top:0.85rem;
  background:var(--gold-50);color:var(--gold-700);
  font-size:0.7rem;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;
  padding:0.25rem 0.6rem;border-radius:999px;
}

/* 2,300+ smiles trust block */
.smiles-block{
  background:var(--navy-900);color:var(--white);
  padding:clamp(3rem,5vw,4.5rem) 0;
  text-align:center;
  position:relative;overflow:hidden;
}
/* Seamless adjoin to final-cta — both are navy, so reduce padding at the seam */
.smiles-block + .final-cta{padding-top:clamp(2rem,4vw,3rem)}
.smiles-block:has(+ .final-cta){padding-bottom:clamp(1.5rem,3vw,2.5rem)}
.smiles-block::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,165,0,.15), transparent 50%);
  pointer-events:none;
}
.smiles-block .container{position:relative;z-index:1}
.smiles-icon{
  width:72px;height:72px;border-radius:50%;
  background:var(--gold-600);color:var(--navy-900);
  display:grid;place-items:center;
  margin:0 auto 1.5rem;
}
.smiles-icon svg{width:2rem;height:2rem}
.smiles-block h2{color:var(--white);margin-bottom:1rem}
.smiles-block h2 em{color:var(--gold-600);font-weight:700}
.smiles-block p{
  color:rgba(255,255,255,0.8);
  max-width:60ch;margin:0 auto 1.75rem;
  font-size:1.05rem;line-height:1.5;
}
.smiles-rating{
  font-size:0.95rem;font-weight:600;color:var(--gold-600);
  letter-spacing:0.08em;
  margin-bottom:2rem;
}
.smiles-list{
  display:flex;flex-wrap:wrap;justify-content:center;
  gap:0.65rem 1.25rem;
  margin-bottom:2rem;list-style:none;padding:0;
}
.smiles-list li{
  display:inline-flex;align-items:center;gap:0.4rem;
  font-size:0.92rem;color:rgba(255,255,255,0.92);
}
.smiles-list svg{
  width:1rem;height:1rem;color:var(--gold-600);
  flex-shrink:0;
}

/* ============ TYPES OF IMPLANTS — photo tiles ============ */
.types-section{
  padding:clamp(4rem,7vw,6rem) 0 clamp(1.5rem,3vw,2.5rem);
  background:var(--white);
}
.types-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem;
  margin-top:3rem;
}
@media (max-width:1024px){.types-grid{grid-template-columns:repeat(2,1fr);gap:1.25rem}}
@media (max-width:560px){.types-grid{grid-template-columns:1fr}}

.type-card{
  background:var(--white);
  border:1px solid var(--ink-100);
  border-radius:var(--radius-lg);
  overflow:hidden;
  display:flex;flex-direction:column;
  transition:transform var(--dur) var(--ease), box-shadow var(--dur), border-color var(--dur);
}
.type-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
  border-color:var(--teal-500);
}

.type-photo{
  position:relative;
  aspect-ratio:4/3;
  background:var(--navy-100);
  overflow:hidden;
}
.type-photo img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  transition:transform var(--dur) var(--ease);
}
.type-card:hover .type-photo img{transform:scale(1.04)}

.type-body{
  padding:1.5rem;
  display:flex;flex-direction:column;flex:1;
  gap:0.6rem;
}
.type-name{
  font-size:1.15rem;font-weight:700;
  color:var(--navy-900);letter-spacing:-0.01em;
  line-height:1.25;
}
.type-desc{
  font-size:0.9rem;
  color:var(--ink-500);line-height:1.5;
  margin:0;flex:1;
}
.type-tag{
  display:inline-block;align-self:flex-start;
  font-size:0.72rem;font-weight:700;
  letter-spacing:0.06em;text-transform:uppercase;
  color:var(--link);
  margin-top:0.25rem;
}
.type-tag.type-tag-gold{color:var(--gold-700)}
.type-tag.type-tag-teal{color:var(--teal-700)}

/* "Pop the offer" — gold-treatment tile for the Free CT Scan service */
.tile.tile-offer-pop{
  background:linear-gradient(135deg,var(--gold-600),var(--gold-700));
  color:var(--navy-900);
  border-color:var(--gold-600);
}
.tile.tile-offer-pop::before{display:none}
.tile.tile-offer-pop .tile-icon{
  background:var(--navy-900);color:var(--gold-600);
}
.tile.tile-offer-pop .tile-name{color:var(--navy-900);font-weight:800}
.tile.tile-offer-pop .tile-desc{color:rgba(0,18,50,0.82)}
.tile.tile-offer-pop .tile-tag{
  background:var(--navy-900);color:var(--gold-600);
  padding:0.3rem 0.7rem;border-radius:999px;
  font-size:0.72rem;font-weight:700;letter-spacing:0.08em;
}
.tile.tile-offer-pop:hover{
  border-color:var(--navy-900);
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(255,165,0,0.32);
}

/* ============ v3 ADDITIONS — review changes ============ */

/* #9 Hero service tagline (Dental Implants in [Long Island]) */
.hero-service-tagline{
  display:inline-block;
  margin:0.5rem 0 0.75rem;
  padding:0.45rem 0.95rem;
  background:rgba(255,165,0,0.18);
  border:1px solid rgba(255,165,0,0.4);
  border-radius:999px;
  font-size:0.85rem;
  font-weight:600;
  letter-spacing:0.02em;
  color:var(--white);
  backdrop-filter:blur(8px);
}
.hero-service-tagline [data-dynamic-city]{
  color:var(--gold-600);
  font-weight:700;
}

/* #14 H1 last line "Same Day. Not some day." — keep gold accent on Same Day */
.h1-same-day{
  font-style:normal;
  position:relative;
  display:inline-block;
}
.h1-same-day::after{
  content:"";
  position:absolute;
  left:0;right:0;
  bottom:0.05em;
  height:0.12em;
  background:var(--gold-600);
  border-radius:2px;
}

/* #10 Form fineprint */
.form-fineprint{
  margin:0.6rem 0 0;
  font-size:0.78rem;
  color:var(--ink-500);
  font-style:italic;
  letter-spacing:0.01em;
}

/* #7+#8 Wider stat for combined "Implant Placement & Teeth Replacement" */
.tr-metric.tr-metric-wide{
  grid-column:span 2;
}
@media (max-width:760px){
  .tr-metric.tr-metric-wide{grid-column:span 1}
}

/* #6 Expiry pill - WCAG AAA contrast (solid danger-red, white text, 11.3:1) */
.promo-500-expires{
  display:inline-block;
  margin-left:0.5rem;
  padding:0.22rem 0.7rem;
  background:#B91C1C;
  border:none;
  border-radius:999px;
  font-size:0.78rem;
  font-weight:800;
  color:#FFFFFF;
  letter-spacing:0.04em;
  text-transform:uppercase;
  white-space:nowrap;
  box-shadow:0 2px 8px rgba(185,28,28,0.35);
}

/* #5 Three reasons sub-lede */
.lede-sub{
  margin:0.85rem 0 0;
  font-size:0.98rem;
  line-height:1.55;
  color:var(--ink-500);
  font-weight:500;
  max-width:780px;
}

/* #1 Office photo strip */
.office-photo-strip{
  margin:2.5rem 0 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.25rem;
}
.office-photo-card{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:0 12px 32px rgba(15,28,73,0.12);
  aspect-ratio:16/10;
  background:var(--bg-alt);
}
.office-photo-card img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.6s var(--ease-out);
}
.office-photo-card:hover img{transform:scale(1.04)}
.office-photo-caption{
  position:absolute;
  bottom:0;left:0;right:0;
  padding:1.25rem 1.5rem 1.1rem;
  background:linear-gradient(180deg, transparent 0%, rgba(15,28,73,0.85) 70%);
  color:var(--white);
}
.office-photo-name{
  display:block;
  font-weight:700;
  font-size:1.1rem;
  letter-spacing:-0.01em;
  margin-bottom:0.15rem;
}
.office-photo-meta{
  display:block;
  font-size:0.85rem;
  color:rgba(255,255,255,0.78);
  font-weight:500;
}
@media (max-width:720px){
  .office-photo-strip{grid-template-columns:1fr;gap:1rem}
}

/* #4 Showcase strip (zirconia bridge + happy patients) */
.showcase-strip{
  margin:1.5rem 0 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.25rem;
}
.showcase-card{
  position:relative;
  display:block;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:0 12px 32px rgba(15,28,73,0.10);
  aspect-ratio:4/3;
  background:var(--bg-alt);
  text-decoration:none;
  cursor:pointer;
  transition:transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.showcase-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 48px rgba(15,28,73,0.18);
}
.showcase-card img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.6s var(--ease-out);
}
.showcase-card:hover img{transform:scale(1.03)}
.showcase-cta{
  display:inline-flex;align-items:center;gap:0.4rem;
  margin-top:0.75rem;
  padding:0.4rem 0.85rem;
  background:rgba(255,165,0,0.18);
  border:1px solid rgba(255,165,0,0.4);
  border-radius:999px;
  font-size:0.78rem;
  font-weight:700;
  color:var(--gold-600);
  letter-spacing:0.02em;
  width:fit-content;
  transition:background var(--dur), border-color var(--dur), gap var(--dur);
}
.showcase-cta svg{width:0.85rem;height:0.85rem}
.showcase-card:hover .showcase-cta{
  background:var(--gold-600);
  color:var(--navy-900);
  border-color:var(--gold-600);
  gap:0.55rem;
}
.showcase-caption{
  position:absolute;
  bottom:0;left:0;right:0;
  padding:1.4rem 1.5rem 1.2rem;
  background:linear-gradient(180deg, transparent 0%, rgba(15,28,73,0.88) 75%);
  color:var(--white);
}
.showcase-eyebrow{
  display:block;
  font-size:0.7rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--gold-600);
  margin-bottom:0.3rem;
}
.showcase-title{
  display:block;
  font-weight:700;
  font-size:1.05rem;
  letter-spacing:-0.01em;
  line-height:1.3;
}
@media (max-width:720px){
  .showcase-strip{grid-template-columns:1fr;gap:1rem}
}

/* #3 Process office banner */
.process-office-banner{
  margin:0 0 2.5rem;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
}
.process-office-img{
  border-radius:var(--radius);
  overflow:hidden;
  aspect-ratio:16/10;
  box-shadow:0 8px 24px rgba(15,28,73,0.10);
}
.process-office-img img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
}
@media (max-width:720px){
  .process-office-banner{grid-template-columns:1fr}
}

/* ============ PROCESS OFFICE BANNER — image captions ============ */
.process-office-img{
  position:relative;
}
.process-office-img-caption{
  position:absolute;
  bottom:0;left:0;right:0;
  padding:1.25rem 1.4rem 1rem;
  background:linear-gradient(180deg, transparent 0%, rgba(15,28,73,0.86) 75%);
  color:var(--white);
}
.process-office-eyebrow{
  display:block;
  font-size:0.68rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--gold-600);
  margin-bottom:0.25rem;
}
.process-office-title{
  display:block;
  font-weight:700;
  font-size:0.98rem;
  letter-spacing:-0.01em;
  line-height:1.3;
}

/* ============ PATIENT RESULTS — videos + before/after ============ */
.patient-results{background:var(--bg-alt)}
.patient-videos{
  margin:2.5rem 0 0;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1.25rem;
}
@media (max-width:880px){
  .patient-videos{grid-template-columns:1fr 1fr;gap:1rem}
}
@media (max-width:560px){
  .patient-videos{grid-template-columns:1fr}
}
.patient-videos .vid-card{
  position:relative;
  aspect-ratio:4/3;
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:none;
  background:var(--navy-900);
  cursor:pointer;
  padding:0;
  width:100%;
  transition:transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.patient-videos .vid-card img{
  width:100%;height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
  transition:transform var(--dur-slow) var(--ease);
}
.patient-videos .vid-card:hover img{transform:scale(1.04)}

/* Before & After cards */
.patient-bna{
  margin:2.5rem 0 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.5rem;
}
.bna-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:0 12px 32px rgba(15,28,73,0.10);
  border:1px solid var(--ink-100);
  transition:transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.bna-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 48px rgba(15,28,73,0.14);
}
.bna-photo{
  aspect-ratio:2/1;
  overflow:hidden;
  background:linear-gradient(135deg, var(--bg-alt), #e8edf5);
  display:flex;
  align-items:center;
  justify-content:center;
}
.bna-photo img{
  width:100%;height:100%;
  object-fit:contain;
  object-position:center;
  display:block;
  transition:transform 0.6s var(--ease-out);
}
.bna-card:hover .bna-photo img{transform:scale(1.02)}
.bna-body{padding:1.5rem 1.75rem 1.75rem}
.bna-eyebrow{
  display:block;
  font-size:0.7rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--gold-700);
  margin-bottom:0.4rem;
}
.bna-title{
  font-size:1.25rem;
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--navy-900);
  margin:0 0 0.5rem;
}
.bna-desc{
  margin:0;
  color:var(--ink-500);
  font-size:0.95rem;
  line-height:1.55;
}
@media (max-width:760px){
  .patient-bna{grid-template-columns:1fr;gap:1rem}
}

/* ============ OUR LOCATIONS section ============ */
.locations-section{background:var(--white)}
.loc-cards{
  margin:2.5rem 0 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.5rem;
}
.loc-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--ink-100);
  box-shadow:0 12px 32px rgba(15,28,73,0.08);
  transition:transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.loc-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 48px rgba(15,28,73,0.14);
  border-color:var(--teal-500);
}
.loc-map{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
  background:linear-gradient(135deg, var(--navy-900), var(--teal-700));
}
.loc-map img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.6s var(--ease-out);
}
.loc-card:hover .loc-map img{transform:scale(1.04)}
.loc-map-overlay{
  position:absolute;
  top:1rem;left:1rem;
}
.loc-badge{
  display:inline-block;
  padding:0.4rem 0.85rem;
  background:rgba(15,28,73,0.92);
  color:var(--white);
  border-radius:999px;
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.04em;
  backdrop-filter:blur(8px);
}
.loc-body{padding:1.75rem 1.75rem 1.75rem}
.loc-name{
  font-size:1.45rem;
  font-weight:700;
  letter-spacing:-0.02em;
  color:var(--navy-900);
  margin:0 0 0.25rem;
}
.loc-area{
  font-size:0.85rem;
  color:var(--teal-700);
  font-weight:600;
  letter-spacing:0.02em;
  margin-bottom:1.25rem;
}
.loc-info{
  display:flex;
  flex-direction:column;
  gap:0.85rem;
  padding-top:1.25rem;
  border-top:1px solid var(--ink-100);
  margin-bottom:1.5rem;
}
.loc-info-row{
  display:flex;
  gap:0.75rem;
  font-size:0.9rem;
  color:var(--ink-700);
  line-height:1.5;
  align-items:flex-start;
}
.loc-info-row svg{
  width:1.05rem;height:1.05rem;
  color:var(--teal-700);
  flex-shrink:0;
  margin-top:0.15rem;
}
.loc-info-row a{text-decoration:none;transition:color var(--dur)}
.loc-info-row a:hover{color:var(--teal-700)}
.loc-actions{
  display:flex;
  gap:0.75rem;
  flex-wrap:wrap;
}
.loc-actions .btn{
  flex:1;
  min-width:140px;
  justify-content:center;
}
@media (max-width:760px){
  .loc-cards{grid-template-columns:1fr;gap:1rem}
  .loc-body{padding:1.5rem}
}

.tile-icon .di{width:1.5rem;height:1.5rem;font-size:1.5rem}
