/* ═══════════════════════════════════════════════════
   Signal Pathway Solutions — Shared Stylesheet
   Light mode only. Clean build.
═══════════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────── */
:root {
  --bg:       #EFF4FA;
  --bg-mid:   #E4EDF6;
  --card:     #FFFFFF;
  --navy:     #0F1E2E;
  --body:     #3D5A73;
  --muted:    #5C7A94;
  --faint:    #8AA5BE;
  --blue:     #51B7EA;
  --blue-dk:  #3A9FD4;
  --teal:     #7BC1A5;
  --teal-dk:  #5EAA8A;
  --border:   rgba(22,50,80,0.12);
  --border-md:rgba(22,50,80,0.20);
  --shadow:   0 2px 20px rgba(15,30,46,0.08);
  --shadow-md:0 6px 36px rgba(15,30,46,0.13);
  --r:        10px;
  --r-lg:     18px;
  --r-xl:     24px;
}

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

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(38px, 5vw, 68px); }
h2 { font-size: clamp(28px, 3.5vw, 46px); }
h3 { font-size: clamp(19px, 2vw, 24px); }
h4 { font-size: 16px; font-family: 'Sora', sans-serif; font-weight: 600; }
p  { color: var(--body); line-height: 1.8; }
em { font-style: italic; color: var(--blue); }
strong { color: var(--navy); font-weight: 600; }
.em-teal em { color: var(--teal); }

/* ── LAYOUT ─────────────────────────────────────── */
.wrap    { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.wrap-sm { max-width: 760px;  margin: 0 auto; padding: 0 32px; }
section  { padding: 88px 0; }
.bg-mid  { background: var(--bg-mid); }
.bg-white{ background: var(--card); }

/* ── EYEBROW / DIVIDER ──────────────────────────── */
.eyebrow {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--blue); display: block; margin-bottom: 12px;
}
.eyebrow.teal { color: var(--teal); }
.divider {
  width: 40px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  margin-bottom: 18px;
}
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head.center .divider { margin-left: auto; margin-right: auto; }
.section-desc { font-size: 17px; color: var(--muted); max-width: 520px; line-height: 1.85; margin-top: 14px; }
.section-head.center .section-desc { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--r); font-size: 14px;
  font-weight: 600; font-family: 'Sora', sans-serif;
  border: none; transition: all 0.2s; white-space: nowrap;
}
.btn-blue  { background: var(--blue); color: #fff; }
.btn-blue:hover  { background: var(--blue-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(81,183,234,0.35); }
.btn-teal  { background: var(--teal); color: #fff; }
.btn-teal:hover  { background: var(--teal-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(123,193,165,0.35); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--border-md);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: rgba(81,183,234,0.05); }
.btn-ghost {
  background: transparent; color: var(--blue);
  border: 1.5px solid rgba(81,183,234,0.4);
}
.btn-ghost:hover { background: rgba(81,183,234,0.07); border-color: var(--blue); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 15px 32px; font-size: 15px; }

/* ── CARDS ───────────────────────────────────────── */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px; transition: all 0.22s;
}
.card:hover { border-color: var(--border-md); box-shadow: var(--shadow); transform: translateY(-2px); }
.card-blue  { border-color: rgba(81,183,234,0.3); }
.card-teal  { border-color: rgba(123,193,165,0.3); }
.card-blue.featured {
  border-color: rgba(81,183,234,0.45);
  box-shadow: 0 0 0 1px rgba(81,183,234,0.2), var(--shadow);
}
.card-teal.featured {
  border-color: rgba(123,193,165,0.45);
  box-shadow: 0 0 0 1px rgba(123,193,165,0.2), var(--shadow);
}

/* ── TAGS ────────────────────────────────────────── */
.tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 5px;
}
.tag-blue { background: rgba(81,183,234,0.1); color: var(--blue); border: 1px solid rgba(81,183,234,0.25); }
.tag-teal { background: rgba(123,193,165,0.1); color: var(--teal); border: 1px solid rgba(123,193,165,0.25); }

/* ── CHECK LIST ──────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--body);
}
.check-list li::before {
  content: '✓'; color: var(--teal); font-weight: 700;
  font-size: 13px; flex-shrink: 0; margin-top: 2px;
}

/* ── NAVIGATION ──────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(15,30,46,0.06);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 32px;
  height: 68px; display: flex; align-items: center; gap: 8px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; margin-right: auto; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-a {
  padding: 7px 13px; font-size: 13.5px; font-weight: 500;
  color: var(--body); border-radius: 7px; transition: all 0.18s;
}
.nav-a:hover { color: var(--navy); background: var(--bg-mid); }
.nav-a.active { color: var(--blue); font-weight: 600; }
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; margin-left: 8px;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: all 0.2s; display: block;
}

/* Mobile menu */
.mob-menu {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
}
.mob-menu.open { display: flex; }
.mob-a {
  font-size: 15px; font-weight: 500; color: var(--navy);
  padding: 11px 0; border-bottom: 1px solid var(--border);
}
.mob-a:last-child { border-bottom: none; }
.mob-a:hover { color: var(--blue); }

/* ── LEAD BAR ────────────────────────────────────── */
.lead-bar {
  background: linear-gradient(135deg, #0D1F35 0%, #0B2218 100%);
  padding: 8px 0;
}
.lead-bar-in {
  max-width: 1120px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.lead-left { display: flex; align-items: center; gap: 10px; }
.lead-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); }
.lead-title { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.88); }
.lead-sub   { font-size: 11px; color: rgba(255,255,255,0.5); }

/* ── PAGE OFFSET (below fixed nav + lead bar) ───── */
.page-top { padding-top: calc(68px + 37px); }
.page-top-simple { padding-top: 68px; }

/* ── PAGE HERO (inner pages) ────────────────────── */
.page-hero {
  background: var(--bg-mid);
  padding: 72px 0 60px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero h1 em { color: var(--blue); }
.page-hero-desc { font-size: 17px; color: var(--muted); max-width: 520px; line-height: 1.8; }
.breadcrumb {
  font-size: 12px; color: var(--faint); margin-bottom: 20px;
  display: flex; align-items: center; gap: 6px;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb span { color: var(--faint); }

/* ── PRICING CARD ────────────────────────────────── */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pkg-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px; position: relative;
  display: flex; flex-direction: column; transition: all 0.22s;
}
.pkg-card:hover { border-color: var(--border-md); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pkg-card.star {
  border-color: rgba(81,183,234,0.45);
  box-shadow: 0 0 0 1px rgba(81,183,234,0.2), var(--shadow);
}
.pkg-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 14px;
  border-radius: 0 0 8px 8px; white-space: nowrap;
}
.pkg-badge.teal { background: var(--teal); }
.pkg-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.pkg-label.teal { color: var(--teal); }
.pkg-price {
  font-family: 'DM Serif Display', serif;
  font-size: 52px; color: var(--navy); line-height: 1;
  margin-bottom: 6px;
}
.pkg-price sup { font-size: 22px; vertical-align: super; }
.pkg-tagline { font-size: 13px; color: var(--muted); margin-bottom: 20px; font-style: italic; }
.pkg-hr { height: 1px; background: var(--border); margin-bottom: 20px; }
.pkg-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; flex: 1; }
.pkg-list li { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: var(--body); }
.pkg-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.pkg-note {
  font-size: 12px; color: var(--muted); font-style: italic;
  padding: 10px 12px; background: var(--bg);
  border-left: 2px solid var(--border-md); border-radius: 0 6px 6px 0;
  margin-bottom: 20px;
}
.pkg-actions { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.pkg-actions .btn { justify-content: center; }

/* ── STEPS ───────────────────────────────────────── */
.steps-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  position: relative; text-align: center;
}
.steps-row::before {
  content: ''; position: absolute; top: 24px; left: 16%; right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--teal), transparent);
}
.step-n {
  width: 48px; height: 48px; border-radius: 50%;
  margin: 0 auto 14px; display: flex; align-items: center;
  justify-content: center; font-family: 'DM Serif Display', serif;
  font-size: 19px; background: var(--card); border: 2px solid;
  position: relative;
}
.step-n.b { border-color: var(--blue); color: var(--blue); }
.step-n.t { border-color: var(--teal); color: var(--teal); }
.step h4 { margin-bottom: 6px; font-size: 15px; }
.step p  { font-size: 13px; color: var(--muted); }

/* ── TESTIMONIALS ────────────────────────────────── */
.test-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 28px; transition: all 0.2s;
}
.test-card:hover { border-color: var(--border-md); box-shadow: var(--shadow); }
.test-q { font-family: 'DM Serif Display', serif; font-size: 44px; color: var(--blue); opacity: 0.2; line-height: 0.8; margin-bottom: 8px; }
.test-text { font-size: 14px; color: var(--body); line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.test-author { font-size: 12px; font-weight: 700; color: var(--navy); letter-spacing: 0.05em; }
.test-role { font-size: 11px; color: var(--muted); }

/* ── FAQ ─────────────────────────────────────────── */
.faq-grid { display: flex; flex-direction: column; gap: 2px; max-width: 740px; margin: 0 auto; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 18px 22px;
  background: none; border: none; font-size: 15px; font-weight: 600;
  color: var(--navy); cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Sora', sans-serif;
}
.faq-q:hover { color: var(--blue); }
.faq-icon { font-size: 20px; color: var(--blue); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 18px; font-size: 14px; color: var(--muted); line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* ── CTA BAND ────────────────────────────────────── */
.cta-band {
  background: var(--navy); padding: 72px 0; text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p  { color: rgba(255,255,255,0.65); max-width: 480px; margin: 0 auto 32px; }

/* ── FOOTER ──────────────────────────────────────── */
.footer { background: #0A1520; padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr) 1.1fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65; max-width: 220px; margin-top: 14px; }
.footer-col-title {
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.footer-grid > div a {
  display: block; font-size: 13px;
  color: rgba(255,255,255,0.45); margin-bottom: 8px; transition: color 0.18s;
}
.footer-grid > div a:hover { color: #fff; }
.footer-grid > div span { display: block; font-size: 12px; color: rgba(255,255,255,0.28); margin-bottom: 6px; }
.footer-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }

/* Social links */
.social-links { display: flex; gap: 10px; margin-top: 14px; }
.social-link {
  width: 32px; height: 32px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  border: none; background: transparent;
  color: rgba(255,255,255,0.45); transition: all 0.18s;
}
.social-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.social-link svg { width: 17px; height: 17px; fill: currentColor; }

/* Google review badge */
.google-review-btn {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 12px;
  padding: 8px 13px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  text-decoration: none; transition: all 0.18s;
}
.google-review-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.gr-stars { color: #FBBC05; font-size: 11px; letter-spacing: 1px; display: block; line-height: 1; }
.gr-label { color: rgba(255,255,255,0.5); font-size: 11px; font-weight: 500; display: block; margin-top: 2px; }

/* Footer bottom */
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 8px; padding: 18px 0;
  font-size: 11.5px; color: rgba(255,255,255,0.2);
}

/* ── STATS STRIP ─────────────────────────────────── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden;
}
.stat-item { background: var(--card); padding: 28px 20px; text-align: center; }
.stat-n { font-family: 'DM Serif Display', serif; font-size: 38px; color: var(--blue); line-height: 1; margin-bottom: 4px; }
.stat-n.teal { color: var(--teal); }
.stat-l { font-size: 12px; color: var(--muted); }

/* ── REVEAL ANIMATION ────────────────────────────── */
.rv { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.rv.show { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.08s; }
.rv-d2 { transition-delay: 0.16s; }
.rv-d3 { transition-delay: 0.24s; }
.rv-d4 { transition-delay: 0.32s; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 64px 0; }
  .wrap, .wrap-sm { padding: 0 20px; }
  .lead-bar-in { flex-direction: column; text-align: center; gap: 10px; }
  .pkg-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; gap: 28px; }
  .steps-row::before { display: none; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Centered Hero Logo ─────────────────────────────── */
.hero-logo-center { display:block; height:200px; width:auto; max-width:85%; margin:0 auto 40px; }
.hero-center { text-align:center; }
.hero-center .hero-desc { max-width:600px; margin-left:auto; margin-right:auto; }
.hero-center .hero-ctas { justify-content:center; }
.hero-tagline-large {
  font-family:'DM Serif Display',serif;
  font-size:clamp(40px,6vw,80px);
  color:var(--navy);
  line-height:1.08;
  margin:0 auto 28px;
  max-width:900px;
  letter-spacing:-0.5px;
}
.hero-tagline-large em { font-style:italic; color:var(--blue); }

/* ── Google Review Band ─────────────────────────────── */
.review-band {
  background:var(--card);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:48px 0;
}
.review-band-inner {
  display:flex; align-items:center; justify-content:space-between;
  gap:40px; flex-wrap:wrap;
}
.review-stars-row { display:flex; gap:4px; margin-bottom:8px; }
.review-star { color:#FBBC05; font-size:24px; }
.review-headline { font-size:22px; font-weight:700; color:var(--navy); font-family:'DM Serif Display',serif; }
.review-sub { font-size:14px; color:var(--muted); margin-top:6px; }
.review-g-logo { display:flex; align-items:center; gap:10px; }
.review-cta-col { display:flex; flex-direction:column; align-items:flex-end; gap:12px; }
.review-badge {
  display:inline-flex; align-items:center; gap:12px;
  background:#fff; border:1px solid var(--border);
  border-radius:12px; padding:14px 20px;
  box-shadow:0 2px 12px rgba(15,30,46,0.07);
  text-decoration:none; transition:box-shadow 0.2s;
}
.review-badge:hover { box-shadow:0 4px 20px rgba(15,30,46,0.13); }
.review-badge-text { display:flex; flex-direction:column; }
.review-badge-stars { color:#FBBC05; font-size:16px; letter-spacing:2px; }
.review-badge-label { font-size:12px; font-weight:600; color:var(--navy); }
.review-badge-sub { font-size:11px; color:var(--muted); }
@media (max-width:768px) {
  .review-band-inner { flex-direction:column; text-align:center; align-items:center; }
  .review-cta-col { align-items:center; }
  .hero-logo-center { height:130px; max-width:80%; }
}


/* ══════════════════════════════════════════════════════════════
   MOBILE — comprehensive overrides (beats inline styles)
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Force ALL inline grids to single column ── */
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Hero ── */
  .hero { min-height: auto !important; padding-top: 32px !important; padding-bottom: 48px !important; }
  .hero-logo-center { height: 110px !important; margin-bottom: 24px !important; }
  .hero-tagline-large { font-size: clamp(32px, 9vw, 48px) !important; line-height: 1.12 !important; }
  .hero-desc { font-size: 15px !important; }
  .hero-ctas { flex-direction: column !important; gap: 10px !important; }
  .hero-ctas .btn { width: 100% !important; justify-content: center !important; text-align: center !important; }
  .svc-cards-grid { grid-template-columns: 1fr !important; }

  /* ── Page hero (inner pages) ── */
  .page-hero { padding: 40px 0 32px !important; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 42px) !important; }

  /* ── Nav ── */
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex !important; }
  .nav-inner { padding: 0 20px; }

  /* ── Buttons ── */
  .btn-lg { padding: 14px 24px !important; font-size: 15px !important; }

  /* ── Sections ── */
  section { padding: 48px 0 !important; }
  .wrap, .wrap-sm { padding: 0 18px !important; }

  /* ── Pricing cards ── */
  .pkg-grid { grid-template-columns: 1fr !important; }
  .pkg-card { padding: 28px 24px !important; }

  /* ── Steps ── */
  .steps-row { grid-template-columns: 1fr !important; gap: 24px !important; }
  .steps-row::before { display: none !important; }

  /* ── Testimonials ── */
  [style*="repeat(3,1fr)"] { grid-template-columns: 1fr !important; }

  /* ── Lead magnet ── */
  [style*="justify-content:space-between"] { flex-direction: column !important; align-items: flex-start !important; }

  /* ── Bundle price summary bar ── */
  [style*="linear-gradient(135deg,var(--navy)"] { padding: 28px 20px !important; }

  /* ── About page 2-col layout ── */
  [style*="1fr 1.6fr"] { grid-template-columns: 1fr !important; }
  [style*="1fr 1.4fr"] { grid-template-columns: 1fr !important; }
  [style*="1.5fr 1fr"] { grid-template-columns: 1fr !important; }

  /* ── Stats strip ── */
  .stats-strip { grid-template-columns: 1fr 1fr !important; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column !important; text-align: center !important; gap: 8px !important; }

  /* ── FAQ grid ── */
  .faq-grid { grid-template-columns: 1fr !important; }

  /* ── Review band ── */
  .review-band-inner { flex-direction: column !important; align-items: center !important; text-align: center !important; }
  .review-cta-col { align-items: center !important; }
  .review-badge { width: 100% !important; justify-content: center !important; }

  /* ── Credentials strip ── */
  [style*="gap:48px"] { gap: 24px !important; flex-direction: column !important; align-items: center !important; }

  /* ── Dividers between credentials ── */
  [style*="width:1px;height:40px"] { display: none !important; }

  /* ── Service pages sticky sidebar ── */
  [style*="position:sticky"] { position: relative !important; top: auto !important; }
  [style*="grid-template-columns:1.4fr"] { grid-template-columns: 1fr !important; }

  /* ── Bundle page price bar ── */
  [style*="justify-content:space-between;align-items:center;flex-wrap:wrap"] {
    flex-direction: column !important;
    text-align: center !important;
    gap: 16px !important;
  }

  /* ── Blog grid ── */
  [style*="repeat(3,1fr)"] { grid-template-columns: 1fr !important; }

  /* ── Contact form ── */
  .contact-grid { grid-template-columns: 1fr !important; }

  /* ── Prevent horizontal overflow ── */
  body { overflow-x: hidden !important; }
  img { max-width: 100% !important; }
  .wrap { max-width: 100% !important; overflow: hidden !important; }

  /* ── General flex row → column ── */
  .hero-ctas,
  [style*="display:flex"][style*="gap:12px"] { flex-wrap: wrap !important; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(26px, 8vw, 36px) !important; }
  h2 { font-size: clamp(22px, 7vw, 30px) !important; }
  .hero-logo-center { height: 90px !important; }
  .hero-tagline-large { font-size: clamp(28px, 9vw, 40px) !important; }
  .stats-strip { grid-template-columns: 1fr 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .pkg-card { padding: 24px 18px !important; }
  section { padding: 40px 0 !important; }
  .wrap, .wrap-sm { padding: 0 16px !important; }
  .btn { font-size: 14px !important; padding: 12px 20px !important; }
  .btn-lg { padding: 14px 22px !important; }
}
