/* ============================================================
   HSA THRIVE v2 — PREMIUM STYLESHEET
   Brand: #002E6E (navy) | #FFD300 (gold) | #fff
   Font: Poppins (body) | Georgia/serif (accent headlines)
   ============================================================ */

:root {
  --navy: #002E6E;
  --navy-dark: #001A44;
  --navy-mid: #003d94;
  --gold: #FFD300;
  --gold-dark: #e6bc00;
  --white: #ffffff;
  --off-white: #f7f9ff;
  --grey-light: #f0f2f8;
  --grey: #8892a4;
  --text: #1a2540;
  --text-muted: #5a6478;
  --border: rgba(0,46,110,0.1);
  --shadow-sm: 0 2px 8px rgba(0,46,110,0.08);
  --shadow-md: 0 8px 30px rgba(0,46,110,0.12);
  --shadow-lg: 0 20px 60px rgba(0,46,110,0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---- SECTION PADDING ---- */
.section-pad { padding: 110px 0; }
@media (max-width: 768px) { .section-pad { padding: 70px 0; } }

/* ---- TYPOGRAPHY HELPERS ---- */
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.title-gold { color: var(--gold); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-header { margin-bottom: 60px; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }
.w-full { width: 100%; }

/* ---- BUTTONS ---- */
.btn-primary-v2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary-v2:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,211,0,0.35);
}
.btn-ghost-v2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-ghost-v2:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}
.btn-outline-v2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline-v2:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg-v2 { padding: 17px 38px; font-size: 1.05rem; }

/* ---- REVEAL ANIMATIONS ---- */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-reveal="up"] { transform: translateY(40px); }
[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal].revealed { opacity: 1; transform: translate(0); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}
.navbar-brand img { height: 50px; }
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar-nav .nav-link {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.navbar-nav .nav-link:hover { background: var(--grey-light); color: var(--navy); }
.navbar-nav .nav-link.active { color: var(--navy); font-weight: 600; }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--navy) !important; color: var(--white) !important; }

/* Dropdown */
.nav-item.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 100;
}
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.dropdown-item:hover { background: var(--off-white); color: var(--navy); }

/* Mobile Nav */
.navbar-toggler {
  display: none;
  background: var(--gold);
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
}
.toggler-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 4px 0;
  border-radius: 2px;
  transition: var(--transition);
}
@media (max-width: 991px) {
  .navbar-toggler { display: block; }
  .navbar-collapse {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
  }
  .navbar-collapse.open { display: block; }
  .navbar-nav { flex-direction: column; align-items: stretch; gap: 2px; }
  .navbar-nav .nav-link { padding: 12px 16px; }
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: 1px solid var(--border);
    margin-top: 4px;
    opacity: 1;
    pointer-events: all;
  }
  .nav-cta { text-align: center; }
}

/* ============================================================
   HERO v2
   ============================================================ */
.hero-v2 {
  min-height: 100vh;
  background: var(--white);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,46,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,46,110,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,211,0,0.12) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 24px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,211,0,0.12);
  border: 1px solid rgba(255,211,0,0.4);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.headline-accent {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--navy);
  font-style: italic;
}
.headline-gold { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-sub strong { color: var(--navy); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-avatars { display: flex; }
.av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  margin-left: -8px;
}
.av:first-child { margin-left: 0; }
.av2 { background: #0052CC; }
.av3 { background: #003d94; }
.av4 { background: #001A44; }
.hero-trust p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.hero-trust strong { color: var(--navy); }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-card-stack { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.hero-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,46,110,0.15), transparent);
  border-radius: var(--radius-lg);
}
.stat-float {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-weight: 700;
  white-space: nowrap;
  animation: float-card 4s ease-in-out infinite;
}
.stat-f1 {
  top: 24px;
  left: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  animation-delay: 0s;
}
.stat-f2 {
  bottom: 30px;
  right: 16px;
  animation-delay: 2s;
}
.stat-num { font-size: 2rem; color: var(--navy); line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.stat-f2 strong { display: block; font-size: 1.2rem; color: var(--navy); }
.stat-f2 span { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0% { opacity: 1; height: 50px; }
  50% { opacity: 0.3; height: 30px; }
  100% { opacity: 1; height: 50px; }
}

@media (max-width: 991px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; text-align: center; padding: 60px 24px; }
  .hero-headline { font-size: 2.5rem; }
  .hero-sub { max-width: 100%; }
  .hero-actions, .hero-trust { justify-content: center; }
  .stat-f1 { left: -10px; top: 20px; }
  .stat-f2 { right: -10px; bottom: 20px; }
  .hero-img-wrap img { height: 320px; }
  .hero-scroll-hint { display: none; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  padding: 32px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.trust-label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 600;
  margin-bottom: 20px;
}
.logo-strip {
  display: flex;
  gap: 0;
  overflow: hidden;
  position: relative;
}
.logo-strip::before, .logo-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}
.logo-strip::before { left: 0; background: linear-gradient(to right, var(--off-white), transparent); }
.logo-strip::after { right: 0; background: linear-gradient(to left, var(--off-white), transparent); }
.logo-item {
  flex-shrink: 0;
  padding: 0 40px;
  animation: logo-scroll 20s linear infinite;
}
.brand-mock {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(0,46,110,0.3);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@keyframes logo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ============================================================
   ABOUT v2
   ============================================================ */
.about-v2 { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-img-container img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-exp-badge strong { display: block; font-size: 2.5rem; font-weight: 800; line-height: 1; }
.about-exp-badge span { font-size: 0.78rem; font-weight: 600; line-height: 1.4; }
.about-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}
.about-body { font-size: 0.98rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.about-pillars { display: flex; flex-direction: column; gap: 12px; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text);
  font-weight: 500;
}
@media (max-width: 991px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-img-container img { height: 320px; }
  .about-exp-badge { right: 10px; bottom: -15px; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-block {
  text-align: center;
  padding: 30px;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.stat-block:last-child { border-right: none; }
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: inline;
}
.stat-suffix { font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat-desc {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block { border-bottom: 1px solid rgba(255,255,255,0.1); border-right: none; }
}

/* ============================================================
   SERVICES v2
   ============================================================ */
.services-v2 {
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 34px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ic, var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc-icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--ic, var(--navy)) 12%, white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ic, var(--navy));
  margin-bottom: 20px;
}
.svc-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--grey);
  margin-bottom: 12px;
}
.svc-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}
.svc-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.svc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.svc-features span {
  font-size: 0.73rem;
  font-weight: 600;
  background: var(--off-white);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}
.svc-link:hover { color: var(--gold-dark); gap: 12px; }
@media (max-width: 991px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS v2
   ============================================================ */
.process-v2 { background: var(--white); }
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}
.process-line {
  position: absolute;
  top: 46px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--navy));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.ps-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--grey);
  margin-bottom: 8px;
}
.ps-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(255,211,0,0.25);
}
.process-step h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .process-timeline { grid-template-columns: 1fr; gap: 30px; }
  .process-line { display: none; }
  .process-step { text-align: left; display: flex; gap: 20px; align-items: flex-start; }
  .ps-icon { flex-shrink: 0; margin: 0; }
}

/* ============================================================
   TESTIMONIALS v2
   ============================================================ */
.testimonials-v2 { background: var(--navy); }
.testimonials-v2 .section-eyebrow { color: var(--gold); }
.testimonials-v2 .section-title { color: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.test-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-5px);
  border-color: rgba(255,211,0,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.test-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.test-quote {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.test-author strong { display: block; color: var(--white); font-size: 0.93rem; }
.test-author span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
@media (max-width: 991px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WHY v2
   ============================================================ */
.why-v2 { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.why-left .section-title { margin-bottom: 16px; }
.why-left p { color: var(--text-muted); line-height: 1.8; margin-bottom: 30px; }
.why-right { display: flex; flex-direction: column; gap: 28px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-item:hover { box-shadow: var(--shadow-md); transform: translateX(5px); }
.wi-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,46,110,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-item h5 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.why-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
@media (max-width: 991px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   BLOGS v2
   ============================================================ */
.blogs-v2 { background: var(--white); }
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.bc-img {
  height: 200px;
  overflow: hidden;
}
.bc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .bc-img img { transform: scale(1.06); }
.bc-placeholder {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}
.bc-placeholder span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.bc-body { padding: 24px; }
.bc-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.bc-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,211,0,0.15);
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 20px;
}
.bc-date { font-size: 0.78rem; color: var(--grey); }
.blog-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 10px; line-height: 1.45; }
.blog-card h3 a { color: var(--navy); transition: var(--transition); }
.blog-card h3 a:hover { color: var(--gold-dark); }
.blog-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.bc-read {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.bc-read:hover { color: var(--gold-dark); gap: 10px; }
@media (max-width: 991px) { .blogs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .blogs-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ v2
   ============================================================ */
.faq-v2 { background: var(--off-white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}
.faq-left .section-title { margin-bottom: 16px; }
.faq-left p { color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.faq-right { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(0,46,110,0.2); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.faq-q:hover { background: var(--off-white); }
.faq-chevron { transition: transform 0.3s ease; flex-shrink: 0; color: var(--gold); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a.open { max-height: 200px; }
.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
@media (max-width: 991px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   CTA BANNER v2
   ============================================================ */
.cta-v2 {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,211,0,0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-badge {
  display: inline-block;
  background: rgba(255,211,0,0.15);
  border: 1px solid rgba(255,211,0,0.4);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 600;
  margin-bottom: 28px;
}
.cta-v2 h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-v2 p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   LEAD FORM v2
   ============================================================ */
.lead-v2 { background: var(--white); }
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.lead-left .section-title { margin-bottom: 16px; }
.lead-left p { color: var(--text-muted); line-height: 1.8; margin-bottom: 30px; }
.lead-contact-items { display: flex; flex-direction: column; gap: 14px; }
.lci {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text);
  font-weight: 500;
}
.lead-form {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.lf-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.lf-group input,
.lf-group select,
.lf-group textarea {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
}
.lf-group input:focus,
.lf-group select:focus,
.lf-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,46,110,0.08);
}
.lf-group textarea { resize: none; }
.lf-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 12px;
}
@media (max-width: 991px) { .lead-grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 576px) { .lf-row { grid-template-columns: 1fr; } .lead-form { padding: 24px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 0.9rem;
}
.social-icon:hover { background: var(--gold); color: var(--navy); }
.footer-col h6 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-link:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }
@media (max-width: 991px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ============================================================
   ADMIN BADGE (floating, logged-in only)
   ============================================================ */
.admin-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: var(--gold);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 500;
  transition: var(--transition);
}
.admin-float:hover { background: var(--gold); color: var(--navy); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 4px; }


/* ============================================================
   MOBILE RESPONSIVENESS FIXES (added)
   - Reduce container side-padding on small phones to free up
     valuable horizontal space inside cards/forms.
   - Prevent horizontal overflow site-wide.
   ============================================================ */
html, body { overflow-x: hidden; }
@media (max-width: 480px) {
  .container { padding: 0 16px; }
}
@media (max-width: 360px) {
  .container { padding: 0 12px; }
}


/* ============================================================
   RESPONSIVE FIXES PASS 2 (added)
   Addresses:
   - Polished mobile navbar (slide-in, backdrop, animated
     hamburger-to-X, better spacing)
   - About / Services / Contact pages using inline
     grid-template-columns that broke mobile layout
   - Tools index grid needing mobile breakpoints
   ============================================================ */

/* ---------- MOBILE NAVBAR — POLISHED ---------- */
@media (max-width: 991px) {

  /* Animated hamburger bars */
  .navbar-toggler {
    width: 44px;
    height: 40px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 1001;
  }
  .navbar-toggler .toggler-bar {
    width: 22px;
    height: 2px;
    background: var(--navy);
    margin: 3px 0;
    border-radius: 2px;
    transform-origin: center;
    transition: transform .35s cubic-bezier(.65,.05,.36,1), opacity .2s;
  }
  .navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
  }
  .navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Backdrop layer that appears when menu is open */
  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .48);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 998;
    animation: navFade .25s ease;
  }
  @keyframes navFade {
    from { opacity: 0 }
    to   { opacity: 1 }
  }
  body.nav-open { overflow: hidden; }

  /* The slide-in menu panel itself */
  .navbar-collapse {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: 0;
    width: min(320px, 86vw);
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    border-top: none;
    padding: 90px 26px 32px;
    box-shadow: -16px 0 48px rgba(0, 18, 50, .18);
    transform: translateX(100%);
    transition: transform .38s cubic-bezier(.65,.05,.36,1);
    display: block !important;
    opacity: 1;
    pointer-events: none;
    overflow-y: auto;
    z-index: 999;
  }
  .navbar-collapse.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  /* Nav link layout inside the slide-in */
  .navbar-collapse .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .navbar-collapse .nav-item {
    border-bottom: 1px solid var(--border);
  }
  .navbar-collapse .nav-item:last-child {
    border-bottom: none;
    margin-top: 14px;
  }
  .navbar-collapse .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 4px;
    font-size: .98rem;
    font-weight: 600;
    color: var(--navy);
    border-radius: 0;
    letter-spacing: .005em;
    transition: color .2s, padding-left .25s;
  }
  .navbar-collapse .nav-link:hover {
    background: transparent;
    color: var(--navy);
    padding-left: 8px;
  }

  /* Dropdown inside mobile menu */
  .navbar-collapse .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--off-white);
    border-radius: 10px;
    margin: 4px 0 10px;
    padding: 6px;
    opacity: 1;
    pointer-events: auto;
    min-width: auto;
  }
  .navbar-collapse .dropdown-item {
    padding: 11px 14px;
    font-size: .88rem;
    border-radius: 7px;
    color: var(--text);
  }
  .navbar-collapse .dropdown-item:hover {
    background: var(--white);
    color: var(--navy);
  }

  /* CTA button in mobile menu — make it a proper button again */
  .navbar-collapse .nav-cta {
    display: block !important;
    margin: 6px 0 0 !important;
    padding: 14px 22px !important;
    text-align: center !important;
    border-radius: 10px !important;
    font-size: .95rem !important;
  }
  .navbar-collapse .nav-cta:hover {
    padding-left: 22px !important;
  }
}

/* ---------- RESPONSIVE GRID FIXES (beat inline styles) ---------- */
/* 
  Several pages use inline style="display:grid;grid-template-columns:…"
  on .about-grid or similar containers. Inline styles beat external
  CSS normally, so we use !important ONLY within mobile breakpoints
  to restore the intended responsive behaviour.
*/

/* About grid — used on about.php (Story + Mission/Vision/Values),
   contact.php (form + location split), and every service page
   (the How It Works + Why Us row). */
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 50px !important;
  }
}
@media (max-width: 768px) {
  .about-grid {
    gap: 36px !important;
  }
}

/* Tools index grid — new responsive class */
.tools-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 991px) {
  .tools-index-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 576px) {
  .tools-index-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* Contact page form-field row — inline grid 1fr 1fr */
@media (max-width: 576px) {
  .hero-form-card form > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* ---------- TOOLS INDEX — section titles on mobile ---------- */
@media (max-width: 576px) {
  /* The "🔍 SEO Tools", "🤖 AI-Powered Tools" etc. headings use
     inline font-size:1.4rem — fine on desktop, bit large on mobile.
     No need to override; 1.4rem reads well. But margin below was 60px
     which compounds on small screens. */
  .tool-hero + section > .container > div[id][style*="margin-bottom:60px"] {
    margin-bottom: 40px !important;
  }
}

/* ---------- TOOLS INDEX — sub-nav chip row (hero nav) ---------- */
@media (max-width: 576px) {
  .tool-hero .container nav[style*="flex-wrap"] {
    gap: 8px !important;
    font-size: .72rem !important;
  }
}

/* ---------- TOOLS INDEX HERO — tighter on mobile ---------- */
@media (max-width: 576px) {
  .tool-hero h1 + p,
  .tool-hero p { font-size: .88rem; padding: 0 8px; }
}


/* ============================================================
   PASS 2.1 — MOBILE MENU DROPDOWN OVERFLOW FIX
   The Services submenu was rendering leftward off the panel
   because the nested <ul class="dropdown-menu"> has browser-
   default padding-left:40px and each <li> had default list
   styling. Below resets those inside the mobile menu only.
   ============================================================ */

@media (max-width: 991px) {
  /* Outer list reset — kill browser list defaults inside nav */
  .navbar-collapse .navbar-nav,
  .navbar-collapse .navbar-nav ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  .navbar-collapse .navbar-nav li,
  .navbar-collapse .dropdown-menu li {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

  /* Rebuild dropdown as a clean nested card */
  .navbar-collapse .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: 1px solid var(--border) !important;
    background: var(--off-white) !important;
    border-radius: 10px !important;
    padding: 6px !important;
    margin: 6px 0 14px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
  }

  /* Items inside — full width, contained, padded properly */
  .navbar-collapse .dropdown-menu > li {
    display: block;
    width: 100%;
  }
  .navbar-collapse .dropdown-item {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 11px 12px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text);
    background: transparent;
    border-radius: 7px;
    text-align: left;
    white-space: normal;           /* allow wrap instead of clipping */
    overflow-wrap: break-word;
    line-height: 1.4;
    margin: 0;
  }
  .navbar-collapse .dropdown-item:hover,
  .navbar-collapse .dropdown-item:focus {
    background: var(--white);
    color: var(--navy);
    padding-left: 16px;            /* subtle hover shift */
  }

  /* Make the Services parent link visually a section header
     rather than a tappable link (since the submenu is always open) */
  .navbar-collapse .nav-item.dropdown > .nav-link {
    color: var(--navy);
    font-weight: 700;
    pointer-events: none;          /* stop accidental taps */
  }
  .navbar-collapse .nav-item.dropdown > .nav-link svg {
    display: none;                 /* hide the down-chevron icon */
  }
}



/* ============================================================
   PASS 2.1 — TOOL SIDEBAR POLISH (re-added)
   "Other Tools" list + "Need Expert Help?" CTA card
   ============================================================ */

/* ---- "Other Tools" widget ---- */
.tool-sidebar .widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0, 18, 50, .03);
}

.tool-sidebar .widget h4 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--navy);
  margin: 0 0 16px;
  padding: 0 0 12px;
  border-bottom: 0;
  position: relative;
  display: block;
  font-weight: 700;
}
.tool-sidebar .widget h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
}

.tool-sidebar .other-tools {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tool-sidebar .other-tools a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  padding: 11px 12px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s, padding-left .2s;
  line-height: 1.35;
}
.tool-sidebar .other-tools a:hover {
  background: var(--off-white);
  border-color: var(--border);
  color: var(--navy);
  padding-left: 16px;
}
.tool-sidebar .other-tools a .tool-emoji {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 9px;
  font-size: 1.05rem;
  transition: background .2s, transform .2s;
}
.tool-sidebar .other-tools a:hover .tool-emoji {
  background: var(--navy);
  transform: scale(1.05);
}

/* ---- "Need Expert Help?" CTA — completely re-skinned ---- */
.tool-sidebar .widget[style*="var(--navy)"] {
  background: linear-gradient(145deg, var(--navy) 0%, #001a44 100%) !important;
  border: none !important;
  padding: 28px 22px !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 18, 50, .22);
}

.tool-sidebar .widget[style*="var(--navy)"]::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 211, 0, .18) 0%, transparent 70%);
  pointer-events: none;
}
.tool-sidebar .widget[style*="var(--navy)"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.tool-sidebar .widget[style*="var(--navy)"] > div { position: relative; z-index: 2; }

.tool-sidebar .widget[style*="var(--navy)"] > div > div:first-child {
  font-size: 2.4rem !important;
  margin-bottom: 14px !important;
  line-height: 1;
  display: inline-block;
  filter: drop-shadow(0 4px 14px rgba(255, 211, 0, .35));
}

.tool-sidebar .widget[style*="var(--navy)"] h4 {
  color: #fff !important;
  font-size: 1.1rem !important;
  text-transform: none !important;
  letter-spacing: -.01em !important;
  padding-bottom: 0 !important;
  margin-bottom: 8px !important;
  font-weight: 800 !important;
  border-bottom: none !important;
}
.tool-sidebar .widget[style*="var(--navy)"] h4::after { display: none !important; }

.tool-sidebar .widget[style*="var(--navy)"] p {
  color: rgba(255, 255, 255, .72) !important;
  font-size: .85rem !important;
  line-height: 1.7 !important;
  margin: 0 0 20px !important;
}

.tool-sidebar .widget[style*="var(--navy)"] a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 13px 20px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: .88rem !important;
  text-decoration: none !important;
  text-align: center !important;
  width: 100%;
  transition: transform .2s, box-shadow .2s, background .2s !important;
  box-shadow: 0 4px 14px rgba(255, 211, 0, .3);
}
.tool-sidebar .widget[style*="var(--navy)"] a:hover {
  background: #ffdc33 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 211, 0, .4);
}
.tool-sidebar .widget[style*="var(--navy)"] a::after {
  content: '→';
  font-size: 1rem;
  transition: transform .2s;
}
.tool-sidebar .widget[style*="var(--navy)"] a:hover::after {
  transform: translateX(4px);
}

.tool-sidebar .widget[style*="var(--navy)"] > div::after {
  content: '⚡ 2-hour response · Free audit · No obligation';
  display: block;
  margin-top: 14px;
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .02em;
  text-align: center;
  line-height: 1.5;
}

/* Sidebar stacked layout on tablet/mobile */
@media (max-width: 991px) {
  .tool-sidebar {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .tool-sidebar .widget { margin-bottom: 0; }
}
@media (max-width: 640px) {
  .tool-sidebar { grid-template-columns: 1fr; }
}
