/* ═══════════════════════════════════════════════════
   R&T Legacy Fire Prevention — Main Stylesheet
   Fonts: Bebas Neue (headings) + DM Sans (body)
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Variables ──────────────────────────────────── */
:root {
  --red:      #B81C22;
  --red-dark: #8B0000;
  --black:    #0E0E0E;
  --dark:     #1A1A1A;
  --dgray:    #2C2C2C;
  --mgray:    #555;
  --lgray:    #999;
  --xlight:   #F4F4F4;
  --white:    #FFFFFF;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w:    1140px;
  --radius:   4px;
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--dgray);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--black);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; font-family: var(--font-body); font-weight: 700; }
p  { margin-bottom: 1rem; }

.text-red   { color: var(--red); }
.text-white { color: var(--white); }
.text-gray  { color: var(--mgray); }
.text-center { text-align: center; }
.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}

/* ── Layout ─────────────────────────────────────── */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 110px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── Nav ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 2px solid var(--red);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.4); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}
.nav-logo span { color: var(--red); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-cta { margin-left: 8px; }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 66px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(184,28,34,0.12) 0%, transparent 60%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.015) 80px,
      rgba(255,255,255,0.015) 81px
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  border-left: 3px solid var(--red);
  padding-left: 10px;
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 span { color: var(--red); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin-bottom: 38px;
  line-height: 1.7;
}
.hero-rule {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin-bottom: 32px;
}

/* ── Trust strip ────────────────────────────────── */
.trust-strip {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}
.trust-strip ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-strip li {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 6px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-strip li:last-child { border-right: none; }
.trust-strip li span { color: var(--red); margin-right: 6px; }

/* ── Section headers ────────────────────────────── */
.section-header { margin-bottom: 48px; }
.section-header .label { margin-bottom: 10px; display: block; }
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  font-size: 1.05rem;
  color: var(--mgray);
  max-width: 580px;
}
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ── Service cards ───────────────────────────────── */
.svc-card {
  background: var(--xlight);
  border-top: 3px solid var(--red);
  padding: 28px 24px;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.svc-card-icon {
  width: 40px;
  height: 3px;
  background: var(--red);
  margin-bottom: 16px;
}
.svc-card h4 { margin-bottom: 10px; }
.svc-card p  { font-size: 0.93rem; color: var(--mgray); margin: 0; }

/* ── Why choose ─────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.why-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--xlight);
  align-items: flex-start;
}
.why-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--red);
  line-height: 1;
  min-width: 44px;
  opacity: 0.6;
}
.why-text h4 { margin-bottom: 4px; font-size: 0.95rem; }
.why-text p  { font-size: 0.87rem; color: var(--mgray); margin: 0; }

/* ── Service detail (services page) ────────────── */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  border: 1px solid #E5E5E5;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.svc-detail-label {
  background: var(--black);
  color: var(--white);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-detail-label h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.svc-detail-label .label { color: rgba(255,255,255,0.4); }
.svc-detail-body {
  background: var(--xlight);
  padding: 28px 28px;
}
.svc-detail-body p { font-size: 0.93rem; margin-bottom: 12px; }
.svc-detail-body p:last-child { margin: 0; }
.svc-detail-body strong { color: var(--black); }

/* ── FAQ ─────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid #E5E5E5; }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q:hover { color: var(--red); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 20px 0;
  font-size: 0.95rem;
  color: var(--mgray);
  line-height: 1.75;
}
.faq-a ul { margin: 10px 0 10px 16px; list-style: disc; }
.faq-a ul li { margin-bottom: 4px; }
.faq-item.open .faq-a { display: block; }

/* ── Contact form ────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-full { grid-column: 1 / -1; }
label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
}
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid #DDDDDD;
  border-radius: var(--radius);
  transition: border-color 0.2s;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--red);
}
textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.8rem;
  color: var(--lgray);
  margin-top: 10px;
}

/* ── Callout / CTA blocks ────────────────────────── */
.callout {
  background: var(--black);
  color: var(--white);
  padding: 64px 0;
}
.callout h2 { color: var(--white); margin-bottom: 14px; }
.callout p  { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 32px; max-width: 560px; }
.callout.red-bg { background: var(--red); }
.callout.red-bg p { color: rgba(255,255,255,0.8); }

/* ── Testimonials ────────────────────────────────── */
.testimonials { background: var(--xlight); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  border-left: 4px solid var(--red);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--red);
  opacity: 0.2;
  position: absolute;
  top: 8px;
  left: 18px;
  line-height: 1;
}
.testi-body {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--dgray);
  margin-bottom: 16px;
  font-style: italic;
}
.testi-attr {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
}

/* ── About / story ───────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.memorial-block {
  border-left: 3px solid var(--red);
  padding: 18px 20px;
  background: var(--xlight);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.memorial-block p {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--mgray);
  margin: 0;
}
.memorial-name {
  font-family: var(--font-body);
  font-style: normal !important;
  font-weight: 700;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red) !important;
  margin-bottom: 8px !important;
}
.story-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hugo-photo {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.standards-list { margin-top: 24px; }
.standard-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #E8E8E8;
}
.standard-item:last-child { border-bottom: none; }
.standard-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 8px;
  flex-shrink: 0;
}
.standard-item h4 { font-size: 0.92rem; margin-bottom: 2px; }
.standard-item p  { font-size: 0.85rem; color: var(--mgray); margin: 0; }

/* ── Service areas ───────────────────────────────── */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.area-card {
  padding: 24px 20px;
  border: 1px solid #E5E5E5;
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}
.area-card:hover { border-color: var(--red); background: var(--xlight); }
.area-card h4 { margin-bottom: 8px; color: var(--red); }
.area-card p  { font-size: 0.88rem; color: var(--mgray); margin: 0; }

/* ── Stats bar ───────────────────────────────────── */
.stats-bar {
  background: var(--red);
  padding: 40px 0;
}
.stats-bar .grid-4 { align-items: center; text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 3.2rem;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ── Page hero (interior pages) ─────────────────── */
.page-hero {
  background: var(--black);
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,28,34,0.1) 0%, transparent 50%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 720px; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 540px; }
.page-hero .label { margin-bottom: 12px; }

/* ── Footer ──────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 2px solid var(--red);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { }
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--red); }
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer-contact a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--white); }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.footer-badges { display: flex; gap: 8px; }
.badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  color: rgba(255,255,255,0.4);
}

/* ── Animations ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── Utility ─────────────────────────────────────── */
.bg-black  { background: var(--black); }
.bg-dark   { background: var(--dark); }
.bg-light  { background: var(--xlight); }
.bg-red    { background: var(--red); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.inline-check { color: var(--red); margin-right: 6px; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4,
  .why-grid, .testi-grid, .story-grid,
  .footer-grid, .area-grid,
  .form-grid { grid-template-columns: 1fr; }
  .svc-detail { grid-template-columns: 1fr; }
  .hugo-photo { max-width: 240px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--black);
    padding: 20px 24px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .trust-strip li { padding: 6px 14px; font-size: 0.65rem; }
  .stats-bar .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 600px) {
  .section, .section-lg { padding: 56px 0; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .testi-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   CONVERSION AUDIT IMPROVEMENTS
   ════════════════════════════════════════════════ */

/* ── Top bar above nav ───────────────────────── */
.nav-top-bar {
  background: var(--red);
  padding: 6px 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.nav-top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.85);
}
.nav-phone {
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.nav-phone:hover { opacity: 0.85; }
.nav-phone-btn {
  font-size: 0.75rem !important;
  padding: 8px 16px !important;
  color: rgba(255,255,255,0.85) !important;
  border-color: rgba(255,255,255,0.3) !important;
  letter-spacing: 0.04em;
}
.nav-phone-btn:hover {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.7) !important;
  background: rgba(255,255,255,0.05) !important;
}

/* Shift hero down for taller nav */
.hero { padding-top: 104px; }
.page-hero { padding-top: 140px; }

/* ── Mobile sticky call button ───────────────── */
.mobile-sticky-call {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-top: 2px solid rgba(255,255,255,0.2);
  transition: background 0.2s;
}
.mobile-sticky-call:hover { background: var(--red-dark); }

/* ── Who We Work With cards ──────────────────── */
.client-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.client-type-card {
  background: var(--white);
  border: 1px solid #E5E5E5;
  border-top: 3px solid var(--red);
  padding: 20px 16px;
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.client-type-card:hover {
  border-color: var(--red);
  background: var(--xlight);
  transform: translateY(-2px);
}
.client-type-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
  display: block;
}
.client-type-card h4 {
  font-size: 0.88rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

/* ── Operational advantages strip ────────────── */
.ops-strip {
  background: var(--dark);
  padding: 40px 0;
}
.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ops-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ops-icon {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: white;
}
.ops-item h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 3px;
}
.ops-item p {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.5;
}

/* ── Urgency / inline call CTA ───────────────── */
.inline-call-cta {
  background: var(--black);
  border-left: 4px solid var(--red);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.inline-call-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin: 0;
}
.inline-call-cta strong { color: var(--white); }

/* ── Trust checklist block ───────────────────── */
.trust-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.trust-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--dgray);
  line-height: 1.4;
}
.trust-check-dot {
  width: 18px;
  height: 18px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Responsive additions ────────────────────── */
@media (max-width: 900px) {
  .mobile-sticky-call { display: block; }
  body { padding-bottom: 56px; }
  .client-types { grid-template-columns: repeat(2, 1fr); }
  .ops-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-checklist { grid-template-columns: 1fr; }
  .nav-top-bar { display: none; }
  .hero { padding-top: 86px; }
  .page-hero { padding-top: 110px; }
}
@media (max-width: 600px) {
  .client-types { grid-template-columns: repeat(2, 1fr); }
  .inline-call-cta { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════════
   FINAL CONVERSION PASS — New Sections
   ════════════════════════════════════════════════ */

/* ── "Is Your Kitchen Due" urgency section ───── */
.urgency-section {
  background: var(--black);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.urgency-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.urgency-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 36px;
}
.urgency-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.5;
}
.urgency-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── How It Works steps ───────────────────────── */
.how-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(184,28,34,0.2));
  z-index: 0;
}
.how-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}
.how-step-num {
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  border: 3px solid var(--black);
}
.how-step h4 {
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--black);
}
.how-step p {
  font-size: 0.8rem;
  color: var(--mgray);
  margin: 0;
  line-height: 1.5;
}

/* ── Closing "Keep Your Kitchen Safe" section ─── */
.closing-section {
  background: var(--black);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.closing-section h2 {
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 16px;
}
.closing-section p {
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 1.03rem;
}
.closing-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.closing-phone {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--red);
  letter-spacing: 0.06em;
  display: block;
}

/* ── Contact page: "fastest way" banner ──────── */
.contact-fastest {
  background: var(--red);
  padding: 18px 0;
  text-align: center;
}
.contact-fastest p {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.contact-fastest a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 900px) {
  .how-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .how-steps::before { display: none; }
  .how-step { text-align: left; display: flex; gap: 16px; align-items: flex-start; }
  .how-step-num { margin: 0; flex-shrink: 0; width: 44px; height: 44px; font-size: 1.2rem; }
}
