@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
  --red: #CC1A1A;
  --red-dark: #A01414;
  --red-light: #E02020;
  --navy: #111827;
  --charcoal: #1F2937;
  --body: #374151;
  --muted: #6B7280;
  --border: #E5E7EB;
  --light: #F9FAFB;
  --light2: #F3F4F6;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--body);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: -0.01em;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ─── NAV ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

/* Top ribbon */
.nav-ribbon {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-ribbon-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ribbon-left {
  font-size: 13px;
  color: rgba(255,255,255,0.46);
  font-family: 'Inter', sans-serif;
}
.ribbon-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ribbon-call {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.ribbon-call:hover { color: #fff; }

/* Logo band */
.nav-logo-band {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav-logo-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
  transition: transform 0.5s ease;
}
.nav-logo:hover {
  transform: scale(1.12);
}
.nav-logo-text { line-height: 1; }
.nav-logo-zenith {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  display: block;
}
.nav-logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0;
  margin-top: 3px;
  display: block;
}
.nav-trust-badges {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: var(--body);
  white-space: nowrap;
}
.nav-trust-badge svg { color: var(--red); flex-shrink: 0; }

/* Menu bar */
.nav-menubar {
  background: var(--charcoal);
  position: relative;
}
.nav-menubar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav-links {
  display: flex;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 13px 24px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: color 0.18s, background 0.18s, border-color 0.18s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-bottom-color: var(--red);
  background: rgba(255,255,255,0.06);
}

/* Footer logo text overrides (dark background) */
.site-footer .nav-logo { color: #fff; }
.site-footer .nav-logo-zenith { color: #fff; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-sm  { padding: 9px 18px;  font-size: 14px; }
.btn-md  { padding: 12px 24px; font-size: 16px; }
.btn-lg  { padding: 14px 30px; font-size: 18px; }

.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 2px 12px rgba(204,26,26,0.3);
}
.btn-red:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(204,26,26,0.4);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  border-color: #fff;
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--red);
  border-color: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

/* ─── SECTION LAYOUT ─── */
.section { padding: 88px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-white  { background: var(--white); }
.section-light  { background: var(--light); }
.section-light2 { background: var(--light2); }
.section-dark   { background: var(--navy); }
.section-red    { background: var(--red); }

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.section-label-white { color: rgba(255,255,255,0.7); }
.section-label-white::before { background: rgba(255,255,255,0.7); }

.section-title {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-title-white { color: #fff; }
.section-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 540px;
}
.section-sub-white { color: rgba(255,255,255,0.65); }
.section-header { margin-bottom: 52px; }
.section-header-center { text-align: center; }
.section-header-center .section-label,
.section-header-center .section-sub { margin-left: auto; margin-right: auto; }
.section-header-center .section-label { justify-content: center; }
.section-header-center .section-label::before { display: none; }

/* ─── HERO (page-level) ─── */
.page-hero {
  background: var(--navy);
  padding: 230px 24px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(204,26,26,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 0% 0%, rgba(204,26,26,0.07) 0%, transparent 60%);
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.page-hero-breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.page-hero-breadcrumb span { color: var(--red); }
.page-hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.page-hero h1 em { color: var(--red); font-style: normal; }
.page-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 32px;
}
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--red);
  padding: 13px 24px;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.trust-item svg { fill: rgba(255,255,255,0.85); flex-shrink: 0; }

/* ─── CARDS ─── */
.card-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 0 0 1px rgba(204,26,26,0.15);
}
.service-card-icon {
  width: 52px; height: 52px;
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.1;
}
.service-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 18px;
}
.service-card-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  text-decoration: none;
}
.service-card:hover .service-card-link { gap: 10px; }

/* ─── ICON BOX ─── */
.icon-box {
  width: 52px; height: 52px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box-red   { background: rgba(204,26,26,0.1); border: 1px solid rgba(204,26,26,0.2); }
.icon-box-dark  { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); }
.icon-box svg   { fill: var(--red); }
.icon-box-dark svg { fill: rgba(255,255,255,0.8); }

/* ─── WHY CARDS ─── */
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-card h3 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
}
.why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* ─── PROCESS ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 31px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(204,26,26,0.2));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 4px 16px rgba(204,26,26,0.3), 0 0 0 6px rgba(204,26,26,0.08);
}
.process-step h3 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

/* ─── TESTIMONIALS ─── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: rgba(204,26,26,0.08);
  line-height: 1;
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { fill: #E8B000; }
.testimonial-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 22px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.author-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.author-role { font-size: 13px; color: var(--muted); }

/* ─── AREA CHIPS ─── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 8px;
}
.area-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-align: center;
}
.area-chip:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* ─── SERVICE PAGE CONTENT LAYOUT ─── */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

/* ─── FAQ ─── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--red); }
.faq-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  fill: var(--muted);
  transition: transform 0.3s, fill 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); fill: var(--red); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding-bottom: 18px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

/* ─── PRICING ─── */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.pricing-card:hover { border-color: var(--red); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--red); }
.pricing-badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.pricing-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price sup { font-size: 28px; font-weight: 700; color: var(--muted); }
.pricing-from { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--body); }
.pricing-features .check { width: 16px; height: 16px; fill: #22c55e; flex-shrink: 0; }

/* ─── SIGNS LIST ─── */
.signs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.sign-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
}
.sign-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 6px;
}
.sign-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.sign-item p { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--red);
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E") repeat;
  background-size: 200px;
  opacity: 0.05;
  pointer-events: none;
}
.cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.8); }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy);
  padding: 64px 24px 36px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  margin-top: 18px;
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--red-light); }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 12px;
}
.footer-contact-row svg { fill: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact-row a,
.footer-contact-row span {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-contact-row a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-social { display: flex; gap: 12px; align-items: center; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.social-icon:hover { background: var(--red); color: #fff; }

/* ─── MOBILE CTA BAR (hidden on desktop) ─── */
.mobile-cta-bar { display: none; }

/* ─── LOGO SVG INLINE ─── */
.logo-svg { width: 72px; height: auto; flex-shrink: 0; }

/* ─── DIVIDER ─── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin-bottom: 24px;
}

/* ─── MISC ─── */
.text-red { color: var(--red); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--muted); }
.font-display { font-family: 'Barlow Condensed', sans-serif; }
.uppercase { text-transform: uppercase; }

/* ─── HAMBURGER / MOBILE NAV ─── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .card-grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-top  { grid-template-columns: 1fr 1fr; gap: 36px; }
  .areas-grid  { grid-template-columns: repeat(4,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .process-grid::before { display: none; }
}

@media (max-width: 768px) {
  .service-layout { grid-template-columns: 1fr; gap: 40px; }
  .service-layout > *:last-child { position: static !important; }
  .page-hero { padding: 155px 20px 56px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .section { padding: 64px 20px; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .signs-grid  { grid-template-columns: 1fr; }
  .areas-grid  { grid-template-columns: repeat(3,1fr); }
  .trust-bar-inner { gap: 20px; }
  .service-card { padding: 20px 16px; }
  .service-card-icon { width: 40px; height: 40px; margin-bottom: 12px; }
  .service-card h3 { font-size: 17px; }
  .service-card p { font-size: 13px; margin-bottom: 12px; }
  .why-card { padding: 20px 16px; gap: 10px; }
  .why-card h3 { font-size: 17px; }
  .why-card p { font-size: 13px; line-height: 1.6; }
  .icon-box { width: 40px; height: 40px; }
  .cta-band-inner { flex-direction: column; }
  .nav-links { display: none; }
  .ribbon-right { display: none; }
  .ribbon-left { text-align: center; width: 100%; color: rgba(255,255,255,0.8); font-size: 12px; }
  .nav-trust-badges { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle span { background: var(--navy); }
  /* Collapse the menubar row — toggle is now in the logo band */
  .nav-menubar { height: 0; overflow: visible; }
  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0; right: 0;
    background: #fff;
    border-top: 3px solid var(--red);
    padding: 8px 0 16px;
    z-index: 50;
    gap: 0;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  }
  .nav-links.nav-open a { padding: 13px 24px; border-bottom: 1px solid var(--border); border-left: 3px solid transparent; color: var(--navy); }
  .nav-links.nav-open a:last-child { border-bottom: none; }
  .nav-links.nav-open a:hover,
  .nav-links.nav-open a.active { border-left-color: var(--red); color: var(--red); background: rgba(204,26,26,0.04); }

  /* Mobile sticky CTA bar */
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    height: 56px;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.3);
  }
  .mobile-cta-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-right: 1px solid rgba(255,255,255,0.2);
  }
  .mobile-cta-quote {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--navy);
    color: #fff;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  body { padding-bottom: 56px; }

  /* Quote page mobile — form first, benefits compact */
  .quote-layout { grid-template-columns: 1fr !important; gap: 28px !important; }
  .quote-form-col { order: -1; }
  .quote-benefit-item { padding: 12px 14px !important; gap: 10px !important; }
  .quote-benefit-title { font-size: 14px !important; }
  .quote-benefit-desc { font-size: 12px !important; margin-top: 2px !important; }
  .quote-call-block { padding: 14px 18px !important; margin-top: 16px !important; }

  /* Footer mobile — centered layout */
  .footer-top { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-about .nav-logo { justify-content: center; }
  .footer-about p { margin: 18px auto 0; text-align: center; }
  .footer-links { align-items: center; }
  .footer-contact-row { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 480px) {
  .card-grid-4 { grid-template-columns: 1fr; }
  .areas-grid  { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: 1fr; }
}
