/* =========================
   RESET / BASE
========================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
img { max-width: 100%; display: block; }
ul, ol { padding-left: 1.25rem; }
a { text-decoration: none; }
button, input, select, textarea { font: inherit; }

/* =========================
   TOKENS
========================= */
:root {
  /* Core palette */
  --char:          #1a1a1a;
  --char-mid:      #242424;
  --char-light:    #2e2e2e;
  --accent:        #e8450a;
  --accent-hover:  #cf3d05;
  --accent-soft:   rgba(232, 69, 10, 0.08);
  --accent-glow:   rgba(232, 69, 10, 0.22);

  --bg:            #f6f7f8;
  --surface:       #ffffff;
  --surface-alt:   #f0f1f3;
  --surface-dark:  #111111;

  --text:          #1a1a1a;
  --text-light:    #ffffff;
  --muted:         #5c6370;
  --border:        #dde0e4;
  --border-dark:   rgba(255,255,255,0.1);

  /* Shadows */
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:     0 8px 28px rgba(0,0,0,0.12);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.18);
  --shadow-accent: 0 8px 28px rgba(232,69,10,0.28);

  /* Radii */
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     18px;
  --radius-xl:     24px;

  /* Layout */
  --container:        1160px;
  --container-narrow: 760px;

  /* Spacing */
  --space-1: 0.5rem;   --space-2: 0.75rem;  --space-3: 1rem;
  --space-4: 1.25rem;  --space-5: 1.5rem;   --space-6: 2rem;
  --space-7: 2.5rem;   --space-8: 3rem;     --space-9: 4rem;
  --space-10: 5rem;    --space-11: 6rem;

  /* Header */
  --header-height: 76px;
  --demo-bar-height: 42px;

  /* Typography */
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* =========================
   BASE
========================= */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
main { min-height: 100vh; }
section { padding: var(--space-10) 0; }

.container {
  width: min(100% - 1.5rem, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100%, var(--container-narrow));
  margin-inline: auto;
}

/* =========================
   REVEAL ANIMATIONS
========================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.26s; }
.reveal-delay-4 { transition-delay: 0.36s; }

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.04;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 800;
  color: var(--char);
}

h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: -0.01em;
}

p { line-height: 1.72; max-width: 65ch; }
p + p { margin-top: 1rem; }
a { color: var(--accent); }
a:hover { color: var(--accent-hover); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-body);
}

.eyebrow::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  flex: 0 0 22px;
  border-radius: 999px;
}

.eyebrow-wrap--center {
  display: flex;
  justify-content: center;
}

.section-heading {
  max-width: 680px;
  margin-bottom: var(--space-7);
}

.section-heading h2 { margin-bottom: 0.85rem; }
.section-heading p { color: var(--muted); }

.section-heading h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 0.9rem;
  border-radius: 999px;
  background: var(--accent);
}

.section-heading.no-underline h2::after {
  display: none;
}

/* =========================
   DEMO BAR
========================= */
:root{
  --demo-bar-height: 48px;
}

/* FULL WIDTH TOP STRIP */
.demo-bar{
  position: sticky;
  top: 0;
  z-index: 9999;
  display: block;
  width: 100%;
  min-height: var(--demo-bar-height);
  background: linear-gradient(
    135deg,
    #4169E1 0%,
    #1E90FF 50%,
    #63B8F7  100%
  );
  border-bottom: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 8px 18px rgba(0,0,0,.10);
}

/* INNER CONTENT */
.demo-bar-inner{
  max-width: 1280px;
  margin: 0 auto;
  min-height: var(--demo-bar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
}

/* TEXT */
.demo-label{
  margin: 0;
  color: #f8fbff;
  font-size:13.5px;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.15;
  text-shadow: 0 1px 6px rgba(0,0,0,.22);
}

/* BUTTON */
.demo-back{
  white-space: nowrap;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size:13px;
  font-weight:800;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  text-shadow:0 1px 4px rgba(0,0,0,.18);

}

.demo-back:hover{
  background: rgba(255,255,255,0.20);
  color: #fff;
  border-color: rgba(255,255,255,0.34);
  transform: translateY(-1px);
  text-decoration: none;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {
  .demo-bar {
    font-size: 12px;
  }

  .demo-bar-inner {
    min-height: auto;
    padding: 8px 0;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .demo-label {
    line-height: 1.35;
  }

  .demo-back {
    font-size: 11px;
    padding: 6px 12px;
  }
}

/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: var(--demo-bar-height);
  z-index: 1000;
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  flex: 0 0 34px;
  box-shadow: 0 4px 14px rgba(232,69,10,0.38);
}

.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav a {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -0.35rem;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
  border-radius: 999px;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: #fff; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  font-size: 1rem;
  color: #ffffff;
  white-space: nowrap;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.header-phone:hover { color: var(--accent); }
.header-phone svg { color: var(--accent); }

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: #fff;
  transition: all 0.2s;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn:hover { opacity: 0.92; }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  box-shadow: 0 12px 32px rgba(232,69,10,0.38);
}

.btn-call {
  background: #fff;
  color: var(--char);
  border-color: rgba(0,0,0,0.12);
  font-weight: 800;
}
.btn-call:hover {
  background: #f8f8f8;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: #fff;
}

.btn-lg {
  min-height: 60px;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block { width: 100%; }

/* =========================
   MEDIA FRAME
========================= */
.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #2a2a2a;
  box-shadow: var(--shadow-lg);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent 50%);
  pointer-events: none;
}

/* =========================
   HOMEPAGE HERO
========================= */
.em-hero {
  position: relative;
  overflow: hidden;
  background: var(--char);
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: calc(var(--space-10) + 1rem) 0 var(--space-10);
}

.em-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.em-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% 45%;
  display: block;
  filter: brightness(1.08) saturate(0.95) contrast(1.05);
}

/* Gradient fade left so text is readable */
.em-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(15,15,15,0.65) 0%,
      rgba(15,15,15,0.55) 30%,
      rgba(15,15,15,0.42) 50%,
      rgba(15,15,15,0.28) 68%,
      rgba(15,15,15,0.14) 84%,
      rgba(15,15,15,0.04) 94%
    );
}

.em-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  gap: 0;
  align-items: center;
}

.em-hero-content {
  position: relative;
  z-index: 3;
}

/* Response badge */
.em-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(232,69,10,0.15);
  border: 1px solid rgba(232,69,10,0.35);
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff7043;
}

.em-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseDot 2s ease-in-out infinite;
  flex: 0 0 7px;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.8); }
}

.em-hero-content h1 {
  color: #ffffff;
  max-width: 14ch;
  margin-bottom: 1rem;
}

.em-hero-content h1 em {
  font-style: normal;
  color: var(--accent);
}

.em-hero-copy {
  color: rgba(255,255,255,0.68);
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 48ch;
  margin: 0;
}

.em-response-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}

.em-response-line svg { color: var(--accent); flex: 0 0 16px; }

.em-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.em-hero-content h1,
.em-hero-copy,
.em-response-line {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.em-hero-micro {
  margin-top: 0.9rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.54);
  max-width: 42ch;
  text-shadow: 0 2px 18px rgba(0,0,0,0.22);
}

/* =========================
   TRUST STRIP
========================= */
.em-trust-strip {
  background: var(--char-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}

.em-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.em-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.em-trust-item:last-child { border-right: none; }

.em-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px solid rgba(232,69,10,0.2);
  color: var(--accent);
}

.em-trust-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.em-trust-item span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.48);
  font-weight: 500;
  margin-top: 0.15rem;
}

/* =========================
   EMERGENCY SERVICES GRID
========================= */
.em-services {
  background: var(--surface);
  padding: var(--space-10) 0;
}

.em-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.em-service-card {
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.em-service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.em-service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,69,10,0.3);
}

.em-service-card:hover::before { transform: scaleX(1); }

.em-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  border: 1px solid rgba(232,69,10,0.18);
  color: var(--accent);
  margin-bottom: 1rem;
}

.em-service-card h3 { color: var(--char); margin-bottom: 0.5rem; }
.em-service-card p { color: var(--muted); font-size: 0.92rem; margin: 0; max-width: none; }

.em-service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.9rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--accent);
  transition: gap 0.2s;
}
.em-service-card-link::after { content: "→"; transition: transform 0.2s; }
.em-service-card:hover .em-service-card-link::after { transform: translateX(4px); }

/* =========================
   INLINE CALL BANNER
========================= */
.em-call-banner {
  background: var(--accent);
  padding: 1.2rem 0;
}

.em-call-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.em-call-banner-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.em-call-banner-text span {
  display: block;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.64);
  margin-top: 0.15rem;
}

.em-call-banner-number {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.em-call-banner-number:hover { opacity: 0.85; color: #fff; }

/* =========================
   WHAT HAPPENS SECTION
========================= */
.em-process {
  background: var(--char);
  color: #fff;
  padding: var(--space-10) 0;
  position: relative;
  overflow: hidden;
}

.em-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(232,69,10,0.1), transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(232,69,10,0.06), transparent 50%);
  pointer-events: none;
}

.em-process .section-heading h2 { color: #fff; }
.em-process .section-heading p { color: rgba(255,255,255,0.6); }
.em-process .section-heading h2::after { background: var(--accent); }
.em-process .eyebrow { color: var(--accent); }
.em-process .eyebrow::before { background: var(--accent); }

.em-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.em-process-step {
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s, border-color 0.25s;
}

.em-process-step:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,69,10,0.3);
}

.em-step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(232,69,10,0.22);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}

.em-process-step h3 { color: #fff; margin-bottom: 0.5rem; }
.em-process-step p { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin: 0; max-width: none; }

.em-section-alt .em-process-step {
  background: var(--surface);
  border-color: var(--border);
}

.em-section-alt .em-process-step:hover {
  background: #fff;
  border-color: rgba(232,69,10,0.18);
}

.em-section-alt .em-process-step h3 { color: var(--char); }
.em-section-alt .em-process-step p { color: var(--text); }

/* =========================
   REVIEWS
========================= */
.em-reviews {
  background: var(--surface-alt);
  padding: var(--space-10) 0;
}

.em-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.em-review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.em-review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,69,10,0.22);
}

.em-review-stars {
  color: var(--accent);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.em-review-card blockquote {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.68;
  margin: 0;
}

.em-review-card cite {
  display: block;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  font-style: normal;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--muted);
}

/* =========================
   FAQ
========================= */
.em-faq-list {
  display: grid;
  gap: 1rem;
}

.em-faq-item {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.em-faq-item h3 {
  margin-bottom: 0.45rem;
  color: var(--char);
}

.em-faq-item p {
  margin: 0;
  max-width: none;
  color: var(--muted);
  font-size: 0.95rem;
}

/* =========================
   SERVICE AREAS
========================= */
.em-areas {
  background: var(--surface);
  padding: var(--space-10) 0;
  border-top: 1px solid var(--border);
}

.em-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.em-area-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--char);
  transition: border-color 0.2s, background 0.2s;
}

.em-area-item:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.em-area-item::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* =========================
   FINAL CTA
========================= */
.em-final-cta {
  background: var(--char);
  color: #fff;
  padding: var(--space-10) 0;
  position: relative;
  overflow: hidden;
}

.em-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(232,69,10,0.14), transparent 60%);
  pointer-events: none;
}

.em-final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.em-final-cta h2 { color: #fff; max-width: 680px; margin: 0 auto 0.85rem; }
.em-final-cta p { color: rgba(255,255,255,0.65); margin: 0 auto; max-width: 56ch; }

.em-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.em-final-microcopy {
  margin-top: 1rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* =========================
   FOOTER
========================= */
.em-footer {
  background: #0d0d0d;
  color: rgba(255,255,255,0.8);
  padding-top: var(--space-8);
}

.em-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.em-footer-grid h3 {
  font-family: var(--font-body);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.em-footer-grid p,
.em-footer-grid li,
.em-footer-grid a { color: rgba(255,255,255,0.52); font-size: 0.9rem; }
.em-footer-grid a:hover { color: var(--accent); }
.em-footer-grid ul { list-style: none; padding: 0; }
.em-footer-grid li + li { margin-top: 0.55rem; }

.em-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.em-footer-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.em-footer-phone:hover { color: var(--accent); }
.em-footer-phone svg { color: var(--accent); }

.em-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 2.5rem;
  padding: 1.25rem 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.em-footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.85rem; max-width: none; }

/* =========================
   STICKY MOBILE CALL BAR
========================= */
.em-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--accent);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 24px rgba(232,69,10,0.3);
}

.em-mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.em-mobile-cta {
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 -4px 24px rgba(232,69,10,0.3); }
  50% { box-shadow: 0 -4px 32px rgba(232,69,10,0.5); }
}

/* =========================
   SPLIT HERO (INTERIOR PAGES)
========================= */
.em-split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  overflow: hidden;
}

.em-split-hero-content {
  background: var(--char);
  padding: calc(var(--header-height) + var(--demo-bar-height) + var(--space-9)) var(--space-8) var(--space-9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.em-split-hero-content::before {
  content: "";
  position: absolute;
  top: -20%; left: -10%;
  width: 70%; height: 70%;
  background: radial-gradient(ellipse, rgba(232,69,10,0.1), transparent 70%);
  pointer-events: none;
}

.em-split-hero-content .eyebrow { color: var(--accent); }
.em-split-hero-content .eyebrow::before { background: var(--accent); }
.em-split-hero-content h1 { color: #fff; max-width: 15ch; margin-bottom: 1.1rem; position: relative; z-index: 1; }

.em-split-hero-copy {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  line-height: 1.74;
  max-width: 46ch;
  margin: 0;
  position: relative;
  z-index: 1;
}

.em-split-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
  position: relative;
  z-index: 1;
}

.em-split-hero-note {
  margin-top: 1rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.em-split-hero-media {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

.em-split-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 50%;
  display: block;
  filter: brightness(0.85) saturate(0.9);
  transform: scale(1.35);
}

.em-split-hero-media::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
  z-index: 2;
}

.em-split-hero-badge {
  position: absolute;
  bottom: 1.75rem;
  left: calc(1rem + 4px);
  right: 1rem;
  background: rgba(26,26,26,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(232,69,10,0.28);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  z-index: 3;
}

.em-split-badge-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.em-split-badge-sub {
  display: block;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.42;
}

/* =========================
   CONTENT SECTIONS (INTERIOR)
========================= */
.em-section-white { background: var(--surface); padding: var(--space-10) 0; }
.em-section-alt { background: var(--surface-alt); padding: var(--space-10) 0; }
.em-section-dark { background: var(--char); padding: var(--space-10) 0; }
.em-section-dark .section-heading h2 { color: #fff; }
.em-section-dark .section-heading p { color: rgba(255,255,255,0.6); }
.em-section-dark .section-heading h2::after { background: var(--accent); }
.em-section-dark .eyebrow { color: var(--accent); }
.em-section-dark .eyebrow::before { background: var(--accent); }

.em-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.em-two-col-content h2 { margin-bottom: 1rem; }
.em-two-col-content > p { color: var(--muted); }

.em-two-col-media { min-height: 420px; }

/* Check list */
.em-check-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.65rem;
}

.em-check-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--text);
}

.em-check-list li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 62%;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 2px 8px rgba(232,69,10,0.3);
}

/* Dark bg check list variant */
.em-check-list--light li { color: rgba(255,255,255,0.82); }

/* When cards */
.em-when-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.em-when-card {
  padding: 1.5rem 1.3rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.em-when-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.em-when-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(232,69,10,0.3); }
.em-when-card:hover::after { transform: scaleX(1); }

.em-when-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(232,69,10,0.2);
  line-height: 1;
  margin-bottom: 0.65rem;
  letter-spacing: -0.04em;
}

.em-when-card h3 { color: var(--char); margin-bottom: 0.45rem; }
.em-when-card p { color: var(--muted); font-size: 0.91rem; margin: 0; max-width: none; }

/* Dark when-card variant */
.em-when-card--dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.em-when-card--dark h3 { color: #fff; }
.em-when-card--dark p { color: rgba(255,255,255,0.58); }
.em-when-card--dark .em-when-number { color: rgba(232,69,10,0.25); }
.em-when-card--dark:hover { border-color: rgba(232,69,10,0.32); background: rgba(255,255,255,0.06); }

/* Feature icon cards */
.em-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.em-feature-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.em-feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(232,69,10,0.25); }

.em-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  border: 1px solid rgba(232,69,10,0.18);
  color: var(--accent);
  margin-bottom: 1rem;
}

.em-feature-card h3 { color: var(--char); margin-bottom: 0.5rem; }
.em-feature-card p { color: var(--muted); font-size: 0.92rem; margin: 0; max-width: none; }

/* =========================
   CONTACT FORM
========================= */
.em-form-wrap {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 2.25rem;
}

.em-form-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-8);
  align-items: start;
}

.em-form-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

.em-contact-info h2 { color: var(--char); margin-bottom: 0.85rem; }
.em-contact-info > p { color: var(--muted); margin-bottom: 1.75rem; }

.em-contact-big-phone {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  transition: opacity 0.2s;
}
.em-contact-big-phone:hover { opacity: 0.82; color: var(--accent); }

.em-contact-methods {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.em-contact-method {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.1rem;
  border-radius: var(--radius-md);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.em-contact-method:hover { border-color: rgba(232,69,10,0.3); }

.em-contact-method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px solid rgba(232,69,10,0.18);
  color: var(--accent);
}

.em-contact-method h3 { font-size: 0.92rem; color: var(--char); margin-bottom: 0.2rem; }
.em-contact-method p { font-size: 0.85rem; color: var(--muted); margin: 0; max-width: none; }
.em-contact-method a { font-size: 0.9rem; font-weight: 700; color: var(--accent); }
.em-contact-method a:hover { color: var(--accent-hover); }

.em-contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  align-items: start;
}

.em-contact-card,
.em-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}

.em-contact-card h3,
.em-form-card h3 {
  margin-bottom: 0.65rem;
  color: var(--char);
}

.em-contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--char);
  letter-spacing: -0.02em;
}

.em-contact-phone:hover { color: var(--accent); }

.em-contact-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.em-contact-point strong {
  display: block;
  font-size: 0.88rem;
  color: var(--char);
  margin-bottom: 0.2rem;
}

.em-contact-point span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.em-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.em-form-field-full {
  grid-column: 1 / -1;
}

.em-form-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--char);
}

.em-form-field input,
.em-form-field select,
.em-form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--text);
  padding: 0.85rem 0.95rem;
  font: inherit;
  line-height: 1.5;
}

.em-form-field input:focus,
.em-form-field select:focus,
.em-form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 69, 10, 0.12);
}

.em-form-note {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

/* =========================
   FORMS
========================= */
.form-row + .form-row { margin-top: 0.9rem; }

label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--char);
}

input, select, textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-alt);
  padding: 0.82rem 1rem;
  color: var(--text);
  font-size: 0.94rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input::placeholder, textarea::placeholder { color: #9aa3ad; }

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,69,10,0.1);
  outline: none;
  background: #fff;
}

textarea { resize: vertical; min-height: 120px; }

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23e8450a' stroke-width='2' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.hidden-field { display: none; }
.btn-block { width: 100%; margin-top: 1rem; }

/* =========================
   ABOUT PAGE
========================= */
.em-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.em-about-stat {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--accent-soft);
  border: 1px solid rgba(232,69,10,0.18);
  text-align: center;
}

.em-about-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.em-about-stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* Values cards - dark bg */
.em-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.em-value-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s, border-color 0.25s;
}

.em-value-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,69,10,0.28);
}

.em-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(232,69,10,0.14);
  border: 1px solid rgba(232,69,10,0.22);
  color: var(--accent);
  margin-bottom: 1rem;
}

.em-value-card h3 { color: #fff; margin-bottom: 0.5rem; }
.em-value-card p { color: rgba(255,255,255,0.58); font-size: 0.91rem; margin: 0; max-width: none; }

/* =========================
   RESPONSIVE — CONSOLIDATED
========================= */
@media (max-width: 1100px) {
  .em-hero-grid { grid-template-columns: 1fr; }

  .em-split-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .em-split-hero-content {
    padding: calc(var(--header-height) + var(--demo-bar-height) + var(--space-7)) var(--space-6) var(--space-8);
  }

  .em-split-hero-media {
    min-height: 360px;
    order: -1;
  }

  .em-split-hero-media::before { display: none; }

  .em-services-grid { grid-template-columns: repeat(2, 1fr); }
  .em-process-grid { grid-template-columns: repeat(2, 1fr); }
  .em-reviews-grid { grid-template-columns: 1fr 1fr; }
  .em-areas-grid { grid-template-columns: repeat(3, 1fr); }
  .em-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .em-when-grid { grid-template-columns: repeat(2, 1fr); }
  .em-feature-grid { grid-template-columns: 1fr 1fr; }
  .em-values-grid { grid-template-columns: 1fr 1fr; }
  .em-about-stats { grid-template-columns: repeat(3, 1fr); }
  .em-form-grid { grid-template-columns: 1fr; }
  .em-form-fields-grid { grid-template-columns: 1fr; }
  .em-two-col { grid-template-columns: 1fr; }
  .em-footer-grid { grid-template-columns: 1fr 1fr; }
  .em-contact-layout { grid-template-columns: 1fr; }

  .em-call-banner-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 860px) {
  :root { --header-height: 68px; }

  section { padding: var(--space-8) 0; }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 1rem;
  }

  .main-nav {
    position: fixed;
    inset: calc(var(--header-height) + var(--demo-bar-height)) 0 auto 0;
    background: rgba(26,26,26,0.99);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .main-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .mobile-menu-toggle { display: inline-block; order: 3; }
  .header-cta .btn { display: none; }
  .header-phone { font-size: 0.9rem; }

  .em-mobile-cta { display: block; }

  main { padding-bottom: 60px; }

  .em-trust-grid { grid-template-columns: 1fr 1fr; }
  .em-areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }

  .container { width: min(100% - 1.25rem, var(--container)); }

  .em-hero { min-height: 580px; }
  .em-hero-actions { flex-direction: column; align-items: stretch; }
  .em-hero-actions .btn { width: 100%; }
  .em-split-hero-actions { flex-direction: column; align-items: stretch; }
  .em-split-hero-actions .btn { width: 100%; }
  .em-final-actions { flex-direction: column; align-items: stretch; }
  .em-final-actions .btn { width: 100%; }

  .em-services-grid,
  .em-process-grid,
  .em-reviews-grid,
  .em-areas-grid,
  .em-trust-grid,
  .em-when-grid,
  .em-feature-grid,
  .em-values-grid,
  .em-footer-grid { grid-template-columns: 1fr; }

  .em-about-stats { grid-template-columns: 1fr; }
  .em-trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .em-trust-item:last-child { border-bottom: none; }

  .em-form-wrap { padding: 1.5rem; }

  .demo-bar-inner {
    flex-wrap: wrap;
    padding: 8px 0;
    min-height: var(--demo-bar-height);
    gap: 6px;
  }
}

/* =========================
   INLINE CTA PARAGRAPH
========================= */
.em-inline-cta {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--accent-soft);
  border: 1px solid rgba(232,69,10,0.18);
  font-size: 0.97rem;
  color: var(--muted);
  max-width: none;
  line-height: 1.7;
}

.em-inline-cta a {
  font-weight: 700;
  color: var(--accent);
}

.em-inline-cta a:hover { color: var(--accent-hover); }