/* ============================================================
   NJ First Mobile Wound Care — Main Stylesheet
   ============================================================ */

/* ── CSS Variables ── */
:root {
  /* Brand */
  --red:        #C0392B;
  --red-dark:   #96281B;
  --red-light:  #E74C3C;
  --red-bg:     #fdf2f1;
  --red-glow:   rgba(192, 57, 43, 0.25);

  /* Neutrals */
  --dark:       #0f172a;
  --text:       #1e293b;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --bg:         #f8fafc;
  --white:      #ffffff;

  /* Footer */
  --footer-bg: #0f172a;

  /* Typography */
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --container: 1200px;
  --section-py: 96px;
  --section-py-mobile: 64px;

  /* Radii */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.09);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.13);
  --shadow-xl: 0 16px 64px rgba(0,0,0,.16);
  --shadow-red: 0 4px 20px rgba(192,57,43,.35);

  /* Transitions */
  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Header height */
  --header-h: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
blockquote { quotes: none; }

/* ── Scroll Progress Bar ── */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── Section Base ── */
.section { padding-block: var(--section-py); }
.section--light { background: var(--bg); }

/* ── Section Header ── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-bg);
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--r-full);
  transition: all var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn svg { flex-shrink: 0; width: 18px; height: 18px; }

.btn--primary {
  background: linear-gradient(135deg, var(--red-light), var(--red-dark));
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(192,57,43,.45);
}
.btn--primary:active { transform: translateY(0); }

.btn--glass {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255,255,255,.35);
  color: var(--white);
}
.btn--glass:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
}
.btn--white:hover {
  background: var(--red-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── Call Button — PRIMARY CTA ── */
.btn--call {
  background: linear-gradient(135deg, #ff5555, var(--red), var(--red-dark));
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 24px rgba(192,57,43,.5), 0 0 0 0 rgba(192,57,43,.4);
  animation: call-pulse 2.8s ease infinite;
  border-color: transparent;
}
.btn--call:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 36px rgba(192,57,43,.6);
  animation: none;
}
.btn--call:active { transform: translateY(-1px); }

.btn--call-urgency {
  color: var(--red);
  font-weight: 800;
}

@keyframes call-pulse {
  0%   { box-shadow: 0 4px 24px rgba(192,57,43,.5), 0 0 0 0 rgba(192,57,43,.4); }
  70%  { box-shadow: 0 4px 24px rgba(192,57,43,.5), 0 0 0 14px rgba(192,57,43,0); }
  100% { box-shadow: 0 4px 24px rgba(192,57,43,.5), 0 0 0 0 rgba(192,57,43,0); }
}

.btn--lg { font-size: 16px; padding: 16px 36px; }
.btn--sm { font-size: 13px; padding: 10px 20px; }

/* ── Animate on scroll ── */
[data-anim] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-anim="fade-right"] { transform: translateX(-32px); }
[data-anim="fade-left"]  { transform: translateX(32px); }
[data-anim].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

/* Logo */
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 44px; width: auto; object-fit: contain; }
.nav__logo-fallback {
  display: none;
  flex-direction: column;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  color: var(--dark);
  line-height: 1.2;
}
.nav__logo-fallback em {
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  color: var(--red);
  letter-spacing: 0.05em;
}

/* Nav Menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline: auto;
}
.nav__link {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--r-full);
  transition: color var(--ease), background var(--ease);
}
.nav__link:hover,
.nav__link.active {
  color: var(--red);
  background: var(--red-bg);
}

/* Right side */
.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  transition: color var(--ease);
}
.nav__phone svg { color: var(--red); }
.nav__phone:hover { color: var(--red); }

/* Mobile "Call Now" button shown in header on small screens */
.nav__call-btn {
  font-size: 14px;
  padding: 10px 20px;
  gap: 6px;
}
.nav__call-btn svg { width: 15px; height: 15px; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 40px;
  height: 40px;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--ease);
  transform-origin: center;
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,20,.82) 0%,
    rgba(10,10,20,.62) 55%,
    rgba(10,10,20,.35) 100%
  );
}

.hero__container {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 80px;
}

.hero__content { max-width: 620px; }

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 18px;
  border-radius: var(--r-full);
  margin-bottom: 28px;
}
.hero__tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,.25);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,.25); }
  50%       { box-shadow: 0 0 0 6px rgba(74,222,128,.1); }
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__title-accent {
  color: transparent;
  background: linear-gradient(135deg, #ff7b7b, #ffb347);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero__medicare {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.3);
  padding: 5px 12px;
  border-radius: var(--r-full);
  margin-bottom: 40px;
}
.hero__medicare svg { color: #4ade80; width: 14px; height: 14px; }

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  transition: all var(--ease);
  animation: bounce 2.5s ease infinite;
}
.hero__scroll:hover { color: var(--white); border-color: var(--white); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  transition: background var(--ease);
}
.trust-strip__item:last-child { border-right: none; }
.trust-strip__item:hover { background: var(--bg); }
.trust-strip__item--accent {
  background: var(--red-bg);
}
.trust-strip__item--accent:hover { background: #fde8e6; }

.trust-strip__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--red-bg);
  color: var(--red);
}
.trust-strip__item--accent .trust-strip__icon {
  background: var(--red);
  color: var(--white);
}
.trust-strip__icon svg { width: 20px; height: 20px; }

.trust-strip__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-strip__text strong {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.trust-strip__text span {
  font-size: 12px;
  color: var(--muted);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: all var(--ease);
  cursor: default;
}
.service-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--red);
  transform: translateY(-4px);
}
.service-card:hover .service-card__icon {
  background: var(--red);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-bg);
  color: var(--red);
  transition: all var(--ease-bounce);
}
.service-card__icon svg { width: 28px; height: 28px; }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

/* Services Footer */
.services__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 36px;
  background: linear-gradient(135deg, var(--red-bg), #fff5f4);
  border: 1px solid rgba(192,57,43,.15);
  border-radius: var(--r-xl);
  flex-wrap: wrap;
}

.medicare-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}
.medicare-banner svg {
  width: 24px;
  height: 24px;
  color: var(--red);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Visuals */
.about__visuals {
  position: relative;
}
.about__img-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}
.about__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about__visuals:hover .about__img-main img { transform: scale(1.03); }

.about__img-float {
  position: absolute;
  bottom: -32px;
  right: -40px;
  width: 48%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  aspect-ratio: 1;
}
.about__img-float img { width: 100%; height: 100%; object-fit: cover; }

.about__badge {
  position: absolute;
  top: 32px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-red);
}
.about__badge svg { width: 16px; height: 16px; }

/* Content */
.about__content { padding-right: 8px; }

.about__text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-block: 28px 36px;
}
.about__checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

.about__check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.about__check-icon svg { width: 16px; height: 16px; }

/* ============================================================
   HOW IT WORKS / STEPS
   ============================================================ */
.steps-section { background: var(--bg); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--red-bg), var(--border), var(--red-bg));
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--muted);
  margin-bottom: 28px;
  transition: all var(--ease);
  box-shadow: var(--shadow-sm);
}

.step:hover .step__num,
.step.is-visible .step__num {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
  transform: scale(1.08);
}

.step__body h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.step__body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.contact { background: var(--white); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact__desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-block: 16px 32px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all var(--ease);
}
.contact__detail--cta {
  background: var(--red-bg);
  border-color: rgba(192,57,43,.2);
}
.contact__detail--cta:hover {
  background: #fde8e6;
  transform: translateX(4px);
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  box-shadow: var(--shadow-xs);
}
.contact__detail-icon svg { width: 20px; height: 20px; }

.contact__detail div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact__detail span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact__detail strong {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}
.contact__detail--cta strong { color: var(--red); font-size: 18px; }

.contact__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
}
.contact__img img { width: 100%; height: 100%; object-fit: cover; }

/* Form Card */
.contact__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.contact__card-header {
  padding: 32px 36px 24px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
}
.contact__card-header h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
.contact__card-header p { font-size: 14px; opacity: .85; }

.contact__options {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Call / Form option rows */
.contact__option {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 20px;
  border-radius: var(--r-lg);
  transition: all var(--ease);
  text-decoration: none;
}

.contact__option--call {
  background: linear-gradient(135deg, var(--red-light), var(--red-dark));
  color: var(--white);
  box-shadow: var(--shadow-red);
  animation: call-pulse 2.8s ease infinite;
}
.contact__option--call:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 8px 36px rgba(192,57,43,.55);
  animation: none;
}

.contact__option--form {
  border: 2px solid var(--border);
  color: var(--text);
  background: var(--bg);
  margin-top: 4px;
}
.contact__option--form:hover {
  border-color: var(--red);
  background: var(--red-bg);
  transform: translateY(-2px);
}

.contact__option-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,.2);
}
.contact__option--call .contact__option-icon { background: rgba(255,255,255,.18); }
.contact__option--form .contact__option-icon {
  background: var(--red-bg);
  color: var(--red);
}
.contact__option-icon svg { width: 24px; height: 24px; }
.contact__option--call .contact__option-icon svg { color: var(--white); }

.contact__option-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.contact__option-text strong {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  display: block;
}
.contact__option--call .contact__option-text strong { color: var(--white); font-size: 20px; }
.contact__option-text span {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  opacity: .85;
}
.contact__option--call .contact__option-text span { color: rgba(255,255,255,.9); font-size: 16px; font-weight: 700; }
.contact__option-text em {
  font-style: normal;
  font-size: 12px;
  opacity: .7;
}
.contact__option--call .contact__option-text em { color: rgba(255,255,255,.75); }

.contact__option-arrow {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: .7;
}
.contact__option--call .contact__option-arrow { color: var(--white); opacity: .9; }
.contact__option--form .contact__option-arrow { color: var(--muted); }

/* Divider */
.contact__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 20px;
}
.contact__divider::before,
.contact__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.contact__divider span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--bg); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-xs);
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.review-card--featured {
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-red);
  transform: scale(1.03);
}
.review-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 16px 48px rgba(192,57,43,.45);
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.review-card__stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}
.review-card--featured .review-card__stars { color: #fde68a; }
.review-card__stars svg { width: 18px; height: 18px; }

.review-card__quote-icon {
  width: 36px;
  height: 36px;
  opacity: .15;
  flex-shrink: 0;
}
.review-card--featured .review-card__quote-icon { opacity: .3; color: var(--white); }

.review-card__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  font-style: italic;
  flex: 1;
}
.review-card--featured .review-card__text { color: rgba(255,255,255,.9); }

.review-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.review-card--featured .review-card__author { border-color: rgba(255,255,255,.2); }

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red-bg);
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card--featured .review-card__avatar {
  background: rgba(255,255,255,.2);
  color: var(--white);
}

.review-card__author div { display: flex; flex-direction: column; gap: 2px; }
.review-card__author strong {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.review-card--featured .review-card__author strong { color: var(--white); }
.review-card__author span { font-size: 12px; color: var(--muted); }
.review-card--featured .review-card__author span { color: rgba(255,255,255,.7); }

/* ============================================================
   URGENCY CTA
   ============================================================ */
.urgency-cta {
  position: relative;
  overflow: hidden;
  padding-block: 100px;
  text-align: center;
}
.urgency-cta__media {
  position: absolute;
  inset: 0;
}
.urgency-cta__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.urgency-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(150,40,27,.92) 0%,
    rgba(192,57,43,.88) 100%
  );
}
.urgency-cta__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
}
.urgency-cta__title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.urgency-cta__sub {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-bottom: 44px;
  letter-spacing: 0.02em;
}
.urgency-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,.75);
  padding-top: 72px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__col--brand {}

.footer__logo { height: 48px; width: auto; object-fit: contain; margin-bottom: 20px; }
.footer__logo-fallback {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  display: block;
}

.footer__desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
  max-width: 320px;
}

.footer__medicare {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.25);
  padding: 8px 16px;
  border-radius: var(--r-full);
}
.footer__medicare svg { width: 14px; height: 14px; }

.footer__col-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color var(--ease), transform var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer__links a:hover { color: var(--white); transform: translateX(4px); }

.footer__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  transition: color var(--ease);
}
.footer__phone svg { color: var(--red-light); width: 20px; height: 20px; }
.footer__phone:hover { color: var(--red-light); }

.footer__area {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
}
.footer__area svg { width: 14px; height: 14px; color: var(--red-light); }

.footer__cta { margin-top: 4px; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-block: 24px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

.footer__top-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  transition: color var(--ease);
}
.footer__top-link:hover { color: var(--white); }
.footer__top-link svg { width: 16px; height: 16px; }

/* ============================================================
   FLOATING & SCROLL ELEMENTS
   ============================================================ */
.float-call {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff5555, var(--red), var(--red-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 0 22px 0 8px;
  height: 56px;
  border-radius: var(--r-full);
  box-shadow: 0 4px 24px rgba(192,57,43,.55), 0 0 0 0 rgba(192,57,43,.4);
  transition: all var(--ease);
  text-decoration: none;
  white-space: nowrap;
  animation: float-ring 3s ease infinite;
}
.float-call:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 36px rgba(192,57,43,.65);
  animation: none;
}

.float-call__icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-call svg { width: 22px; height: 22px; }

@keyframes float-ring {
  0%   { box-shadow: 0 4px 24px rgba(192,57,43,.55), 0 0 0 0 rgba(192,57,43,.4); }
  70%  { box-shadow: 0 4px 24px rgba(192,57,43,.55), 0 0 0 14px rgba(192,57,43,0); }
  100% { box-shadow: 0 4px 24px rgba(192,57,43,.55), 0 0 0 0 rgba(192,57,43,0); }
}

.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--ease);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--red); transform: translateY(-3px); }
.scroll-top svg { width: 22px; height: 22px; }

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .nav__menu { display: none; }
  .nav__phone { display: none; }
  .nav__call-btn { display: none; } /* hidden on tablet, shown on mobile via override below */
  .nav__toggle { display: flex; }

  /* Mobile menu open */
  .nav__menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    inset-inline: 0;
    background: var(--white);
    padding: 20px 24px 32px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
    border-top: 1px solid var(--border);
    animation: slide-down 0.3s ease;
  }

  @keyframes slide-down {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav__menu.open .nav__link {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: var(--r-md);
    display: block;
  }

  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__item:nth-child(2) { border-right: none; }
  .trust-strip__item:nth-child(3) { border-top: 1px solid var(--border); }
  .trust-strip__item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

  .services__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__visuals { max-width: 500px; margin-inline: auto; }
  .about__img-float { right: -16px; }
  .about__badge { left: -8px; }

  .steps::before { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px 48px; }
  .step { align-items: flex-start; text-align: left; flex-direction: row; gap: 20px; }
  .step__num { flex-shrink: 0; width: 64px; height: 64px; font-size: 18px; margin-bottom: 0; }

  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact__card { position: static; }

  .reviews__grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .review-card--featured { transform: none; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__col--brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  :root { --section-py: 56px; }

  .container { padding-inline: 16px; }
  .nav__logo img { height: 48px; }
  .nav__logo-fallback { font-size: 18px; }
  .nav__logo-fallback em { font-size: 12px; }
  .nav__cta { display: none; }

  /* Mobile header: logo + call button only — no hamburger */
  .nav__toggle { display: none !important; }
  .nav__right { justify-content: flex-end; }
  .nav__call-btn { display: flex !important; padding: 10px 16px; font-size: 13px; }
  .nav__call-btn svg { width: 14px; height: 14px; }

  .hero__btns { flex-direction: column; }
  .hero__btns .btn { justify-content: center; text-align: center; }

  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .trust-strip__item { padding: 20px 16px; gap: 12px; }
  .trust-strip__icon { width: 36px; height: 36px; }
  .trust-strip__text strong { font-size: 13px; }

  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-card { padding: 24px 16px; gap: 12px; }
  .service-card__icon { width: 52px; height: 52px; }
  .service-card h3 { font-size: 13px; }

  .services__footer { flex-direction: column; text-align: center; padding: 24px; }

  .about__img-float { width: 42%; right: -8px; }
  .about__badge { display: none; }

  .steps { grid-template-columns: 1fr; gap: 28px; }
  .step { flex-direction: row; gap: 16px; text-align: left; }
  .step__num { width: 56px; height: 56px; font-size: 16px; margin-bottom: 0; flex-shrink: 0; }

  .contact__detail strong { font-size: 15px; }
  .contact__detail--cta strong { font-size: 16px; }
  .contact__form iframe { min-height: 480px; }

  .urgency-cta { padding-block: 72px; }
  .urgency-cta__btns { flex-direction: column; align-items: center; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 10px; }

  .float-call { bottom: 80px; right: 16px; height: 50px; padding: 0 16px 0 6px; font-size: 13px; }
  .float-call__icon { width: 36px; height: 36px; }
  .float-call svg { width: 18px; height: 18px; }
  .scroll-top { bottom: 20px; right: 16px; width: 42px; height: 42px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-anim] { opacity: 1 !important; transform: none !important; }
}
