/* ============================================================
   forensicss.com — Main Stylesheet
   Mobile-first, no framework, pure CSS
   ============================================================ */

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --red:          #c1121f;
  --red-dark:     #9b0e19;
  --red-light:    #fdecea;
  --dark:         #0d1b2a;
  --dark-2:       #162336;
  --dark-3:       #1e2d42;
  --gold:         #c9a84c;
  --gold-dark:    #a8863a;
  --white:        #ffffff;
  --light:        #eef2f7;
  --light-2:      #e2e8f0;
  --border:       #d0d9e4;
  --text:         #1a2e4a;
  --text-muted:   #4a6080;
  --text-light:   #8099b3;
  --font:         Arial, 'Helvetica Neue', sans-serif;
  --radius:       6px;
  --radius-lg:    12px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.06);
  --shadow:       0 4px 20px rgba(0,0,0,.09);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.14);
  --transition:   0.25s ease;
  --max-width:    1140px;
  --header-h:     72px;
}

/* ─��� Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
h1,h2,h3,h4,h5,h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--dark);
}

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

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn--outline:hover {
  background: var(--red);
  color: var(--white);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: var(--white);
}
.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--dark);
}
.btn--lg { padding: 16px 36px; font-size: 17px; }
.btn--sm { padding: 9px 18px; font-size: 13px; }

/* ── Section Wrappers ─────────────────────────────────────── */
.section { padding: 72px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 96px 0; }
.section--dark { background: var(--dark); }
.section--dark-2 { background: var(--dark-2); }
.section--light { background: var(--light); }
.section--white { background: var(--white); }
.section--red { background: var(--red); }

/* ── Section Heading ──────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(24px, 4vw, 32px); color: var(--dark); margin-bottom: 14px; }
.section-head p { color: var(--text-muted); max-width: 680px; margin-inline: auto; font-size: 16px; }
.section-head--left { text-align: left; }
.section-head--left p { margin-inline: 0; }
.divider {
  width: 56px; height: 3px;
  background: var(--red);
  margin: 0 auto 18px;
  border-radius: 2px;
}
.section-head--left .divider { margin-left: 0; }
.section-head--dark h2 { color: var(--white); }
.section-head--dark p { color: rgba(255,255,255,.65); }

/* ── Top Bar ──────────────────────────────────────────────── */
.top-bar {
  background: var(--dark);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid #222;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar__left { color: rgba(255,255,255,.55); }
.top-bar__right { display: flex; gap: 20px; }
.top-bar__phone,
.top-bar__email { color: var(--gold); font-weight: 600; }
.top-bar__phone:hover,
.top-bar__email:hover { color: var(--white); }

/* ── Site Header ───────────────────────────��──────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}
.site-header__logo img { height: auto; width: 96px; }

/* ── Main Nav ─────────────────────────────────────────────── */
.main-nav { display: none; }
.main-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav__list > li { position: relative; }
.main-nav__list > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav__list > li > a:hover,
.main-nav__list > li.active > a { color: var(--red); background: var(--red-light); }
.nav-arrow { font-size: 10px; opacity: .6; }

/* Nav CTA button */
.nav-cta-btn {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
}
.nav-cta-btn:hover {
  background: var(--red-dark) !important;
  color: var(--white) !important;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 900;
  padding: 8px 0;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  color: var(--text);
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.dropdown li a:hover {
  background: var(--red-light);
  color: var(--red);
  border-left-color: var(--red);
}

/* Mobile toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
}
.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ── Hero (Page Hero) ─────────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(225,90,94,.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.page-hero__body { flex: 1; min-width: 260px; }
.page-hero__image { flex: 0 0 380px; max-width: 100%; }
.page-hero__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.page-hero__badge {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-hero h1 span { color: var(--red); }
.page-hero__sub {
  color: var(--red);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.page-hero__text {
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 540px;
}
.page-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
}
.trust-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-item__num {
  display: block;
  color: var(--red);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}
.trust-item__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
}

/* ── Cards Grid ───────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.card__icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}
.card h3 {
  color: var(--red);
  font-size: 17px;
  margin-bottom: 10px;
}
.card p { color: var(--text-muted); font-size: 14px; line-height: 1.75; margin: 0; }

/* ── Two Column ───────────────────────────────────────────── */
.two-col {
  display: flex;
  gap: 56px;
  align-items: center;
  flex-wrap: wrap;
}
.two-col__text { flex: 1; min-width: 260px; }
.two-col__text h2 { font-size: clamp(22px, 3.5vw, 28px); margin-bottom: 12px; }
.two-col__text p { color: var(--text-muted); line-height: 1.85; margin-bottom: 20px; }
.two-col__media { flex: 0 0 44%; max-width: 100%; }
.two-col__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.two-col--reverse { flex-direction: row-reverse; }

/* ── Checklist ────────────────────────────────────────────── */
.checklist { list-style: none; padding: 0; }
.checklist li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
}

/* ── Process Steps ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.step {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}
.step__num {
  font-size: 48px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
  opacity: .9;
}
.step h3 { font-size: 17px; color: var(--dark); margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 14px; line-height: 1.75; margin: 0; }

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  background: none;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--red); }
.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  display: none;
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
}
.faq__item.open .faq__answer { display: block; }

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 {
  color: var(--white);
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 18px;
}
.cta-section p {
  color: rgba(255,255,255,.65);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 34px;
  line-height: 1.85;
}
.cta-section__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-section__btns .btn--primary { color: #ffffff !important; }
.cta-license {
  color: rgba(255,255,255,.4);
  font-size: 13px;
  line-height: 1.7;
}
.cta-license strong { color: var(--gold); }

/* ── Pre-footer Strip ─────────────────────────────────────── */
.prefooter {
  background: var(--red);
  padding: 32px 0;
}
.prefooter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.prefooter__text h3 { color: var(--white); font-size: 20px; margin-bottom: 4px; }
.prefooter__text p { color: rgba(255,255,255,.8); font-size: 14px; margin: 0; }
.prefooter__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--dark-2);
  color: rgba(255,255,255,.6);
  padding-top: 64px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-col--brand img {
  margin-bottom: 16px;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 14px;
  display: block;
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.footer-license {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,.45);
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}
.footer-license strong { color: var(--gold); }
.footer-col__heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--red); }
.footer-contact li {
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
}
.footer-contact a { color: var(--gold); }
.footer-contact a:hover { color: var(--white); }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer__bottom p { font-size: 13px; color: rgba(255,255,255,.35); margin: 0; }
.site-footer__bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer__bottom nav a { font-size: 13px; color: rgba(255,255,255,.4); }
.site-footer__bottom nav a:hover { color: var(--red); }

/* ── Blog Cards ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--light); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 22px 20px; }
.blog-card__cat {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 30px;
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a { color: var(--dark); }
.blog-card h3 a:hover { color: var(--red); }
.blog-card__excerpt { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.blog-card__meta { font-size: 13px; color: var(--text-light); }

/* ── Breadcrumbs ──────────────────────────────────────────── */
.breadcrumbs {
  padding: 14px 0;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs li:not(:last-child)::after { content: '›'; color: var(--border); }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs [aria-current] { color: var(--red); font-weight: 600; }

/* ── Pagination ───────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 48px 0 0;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text);
  transition: all var(--transition);
}
.pagination a:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.pagination .current { background: var(--red); color: var(--white); border-color: var(--red); }

/* ── Contact Form ─────────────────────────────────────────── */
.contact-form { max-width: 680px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225,90,94,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-disclaimer { font-size: 13px; color: var(--text-muted); margin-top: 12px; line-height: 1.6; }

/* ── License Block ────────────────────────────────────────── */
.license-block {
  display: inline-block;
  background: var(--dark);
  border: 1px solid rgba(228,192,110,.3);
  border-radius: var(--radius);
  padding: 18px 24px;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.6);
}
.license-block strong { color: var(--gold); }

/* ── Page Title Banner ────────────────────────────────────── */
.page-banner {
  background: var(--dark);
  padding: 48px 0;
  text-align: center;
  position: relative;
}
.page-banner h1 {
  color: var(--white);
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 10px;
}
.page-banner p { color: rgba(255,255,255,.6); font-size: 16px; margin: 0; }

/* ── Tag / Badge ──────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.badge--red { background: var(--red-light); color: var(--red); }
.badge--dark { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }

/* ── 404 ──────────────────────────────────────────────────── */
.error-404 {
  text-align: center;
  padding: 100px 20px;
}
.error-404__code {
  font-size: 120px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 16px;
  opacity: .15;
}
.error-404 h1 { font-size: 32px; margin-bottom: 16px; }
.error-404 p { color: var(--text-muted); max-width: 440px; margin: 0 auto 32px; }

/* ── Utilities ────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-red    { color: var(--red); }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }
.fw-700      { font-weight: 700; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (768px+)
   ════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {

  .main-nav { display: flex; }
  .nav-toggle { display: none; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid  { grid-template-columns: repeat(2, 1fr); }
  .form-row   { grid-template-columns: 1fr 1fr; }

  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }

  .trust-item { border-right: 1px solid var(--border); }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — Desktop (1024px+)
   ════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {

  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .blog-grid  { grid-template-columns: repeat(3, 1fr); }

  .site-footer__grid { grid-template-columns: 1.8fr 1fr 1fr 1.2fr; }

  .top-bar__left { display: block; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE NAV OVERLAY (all screens when open)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  .top-bar__left { display: none; }
  .top-bar__right { gap: 12px; font-size: 12px; }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    overflow-y: auto;
    z-index: 999;
    padding: 20px;
    flex-direction: column;
    border-top: 1px solid var(--border);
  }
  .main-nav.open { display: flex; }

  .main-nav__list { flex-direction: column; gap: 0; width: 100%; }
  .main-nav__list > li > a {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .has-dropdown .dropdown {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    background: var(--light);
  }
  .dropdown li a { font-size: 15px; padding: 11px 16px; }
  .nav-cta-btn {
    margin-top: 16px !important;
    text-align: center !important;
    padding: 14px 20px !important;
    border-radius: var(--radius) !important;
    display: block !important;
  }

  .page-hero__inner { flex-direction: column; }
  .page-hero__image { flex: 0 0 100%; order: -1; }

  .two-col { flex-direction: column; gap: 32px; }
  .two-col--reverse { flex-direction: column; }
  .two-col__media { flex: 0 0 100%; }

  .prefooter__inner { flex-direction: column; text-align: center; }

  .section { padding: 48px 0; }
  .section--lg { padding: 64px 0; }

  .cta-section { padding: 56px 0; }
  .cta-section__btns { flex-direction: column; align-items: center; }

  .trust-bar__inner { overflow-x: auto; }
  .trust-item { flex: 0 0 140px; border-right: 1px solid var(--border); }

  .page-hero { padding: 48px 0; }
}

/* ── Force white text on all primary buttons always ─────── */
.btn--primary,
.btn--primary:hover,
.btn--primary:focus,
.btn--primary:active { color: #ffffff !important; }

/* ── Sidebar CTA card — force white text ────────────────── */
.sidebar-card--cta h3,
.sidebar-card--cta h2 { color: #ffffff !important; }
.sidebar-card--cta p  { color: rgba(255,255,255,.75) !important; }

/* ═══════════════════════════════════════════════════════════
   HERO SLIDER — used on all pages
═══════════════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  background: var(--dark);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.hero-slide.active .hero-slide__bg { transform: scale(1); }
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.75) 0%, rgba(0,0,0,.45) 60%, rgba(0,0,0,.2) 100%);
}
.hero-slider__content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
}
.hero-slider__content .container { max-width: 800px; }
.hero-slider__content .page-hero__badge { display: inline-block; margin-bottom: 20px; }
.hero-slider__content h1 {
  color: var(--white);
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 800;
}
.hero-slider__content h1 span { color: var(--red); }
.hero-slider__content p {
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 580px;
}
.hero-slider__btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--red); border-color: var(--red); }
.hero-arrow--prev { left: 20px; }
.hero-arrow--next { right: 20px; }
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.hero-dot.active { background: var(--red); transform: scale(1.3); }
@media (max-width: 767px) {
  .hero-slider { height: 480px; }
  .hero-slider__content h1 { font-size: 26px; }
  .hero-slider__content p { font-size: 15px; margin-bottom: 24px; }
  .hero-arrow { display: none; }
  .hero-dots { bottom: 16px; }
}
