
:root {
  --red: #C0181A;
  --red-dark: #8B0F11;
  --red-light: #E8201F;
  --charcoal: #1E1E1E;
  --charcoal-mid: #2D2D2D;
  --charcoal-light: #3D3D3D;
  --white: #FFFFFF;
  --off-white: #F5F4F2;
  --light-gray: #E8E6E2;
  --mid-gray: #9A9490;
  --text: #1A1A1A;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; padding-bottom: 60px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }

/* ─── CROSS-BROWSER & MOBILE HARDENING ─── */
img, picture, video, svg { max-width: 100%; height: auto; display: block; }
input, textarea, select, button { font-family: inherit; font-size: 16px; /* prevent iOS zoom on focus */ }
button { cursor: pointer; border: 0; background: none; }
a { -webkit-tap-highlight-color: rgba(192, 24, 26, 0.15); }
@supports (-webkit-touch-callout: none) {
  /* iOS-only: improve smooth scrolling & prevent rubber-band overscroll on body */
  body { -webkit-overflow-scrolling: touch; }
}
/* Honor reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ─── STICKY CTA BAR ─── */
.cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  display: flex; background: var(--charcoal);
  border-top: 3px solid var(--red);
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
}
.cta-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 20px; text-decoration: none; font-family: var(--font-condensed);
  font-weight: 700; font-size: 1.1rem; letter-spacing: 1px; text-transform: uppercase;
  transition: background .2s;
}
.cta-bar .cta-call { background: var(--red); color: #fff; }
.cta-bar .cta-call:hover { background: var(--red-dark); }
.cta-bar .cta-msg { background: var(--charcoal-mid); color: #fff; border-left: 1px solid var(--charcoal-light); }
.cta-bar .cta-msg:hover { background: var(--charcoal-light); }
.cta-bar svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #F0EFED; border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
}
.nav-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 90px;
}
.nav-logo img { height: 80px; width: auto; display: block; }
.nav-menu { display: flex; list-style: none; gap: 0; height: 100%; }
.nav-menu > li { position: relative; height: 100%; display: flex; align-items: center; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 0 14px; height: 100%;
  font-family: var(--font-condensed); font-weight: 600; font-size: .92rem;
  letter-spacing: .8px; text-transform: uppercase; text-decoration: none;
  color: #2D2D2D; transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--charcoal); background: rgba(192,24,26,.1); }
.nav-menu > li > a .arrow { font-size: .6rem; opacity: .7; margin-left: 2px; transition: transform .2s; }
.nav-menu > li:hover > a .arrow { transform: rotate(180deg); }

/* dropdown */
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: #F0EFED; border-top: 2px solid var(--red);
  min-width: 240px; opacity: 0; pointer-events: none;
  transform: translateY(-8px); transition: all .2s; list-style: none;
  box-shadow: 0 8px 30px rgba(0,0,0,.4); z-index: 999;
}
.nav-menu > li:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 12px 20px;
  font-family: var(--font-condensed); font-weight: 600; font-size: .9rem;
  letter-spacing: .5px; text-transform: uppercase; text-decoration: none;
  color: #2D2D2D; border-bottom: 1px solid rgba(0,0,0,.06);
  transition: color .15s, padding-left .15s, background .15s;
}
.dropdown li a:hover { color: var(--red); background: rgba(192,24,26,.08); padding-left: 28px; }

.nav-cta {
  background: var(--red); color: #fff !important; padding: 10px 18px !important;
  border-radius: 4px; margin-left: 12px; height: auto !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; z-index: 1001; }
.nav-hamburger span { width: 24px; height: 2px; background: #fff; display: block; transition: .3s; transform-origin: center; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── PAGE SYSTEM ─── */
.page { display: none; padding-top: 90px; }
.page.active { display: block; }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: calc(100vh - 72px);
  background: var(--charcoal);
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(15,15,15,.74) 0%, rgba(15,15,15,.45) 45%, rgba(15,15,15,.15) 100%),
    linear-gradient(135deg, rgba(192,24,26,.12) 0%, transparent 60%),
    url('images/hero-garage.jpg');
  background-size: cover, cover, cover;
  background-position: center, center, center right;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.018) 0, rgba(255,255,255,.018) 1px, transparent 1px, transparent 50px);
  pointer-events: none;
}
.hero-accent {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px; opacity: .06;
  background: radial-gradient(circle, var(--red) 0%, transparent 70%);
}
.hero-stripe {
  position: absolute; left: 0; bottom: 0; right: 0; height: 4px;
  background: var(--red);
}
.hero-inner {
  position: relative; z-index: 1; max-width: 1300px; margin: 0 auto;
  padding: 80px 40px; display: grid; grid-template-columns: 1fr 420px; gap: 80px;
  align-items: center; width: 100%;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,24,26,.15); border: 1px solid rgba(192,24,26,.4);
  color: var(--red-light); padding: 6px 16px; border-radius: 2px;
  font-family: var(--font-condensed); font-weight: 600; font-size: .85rem;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px;
}
.hero-tag::before { content: ''; width: 8px; height: 8px; background: var(--red); border-radius: 50%; flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: .95; color: #fff; margin-bottom: 28px; letter-spacing: 1px;
}
.hero h1 .red { color: var(--red); }
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,.72); line-height: 1.7;
  margin-bottom: 40px; max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--red); color: #fff; padding: 18px 34px;
  font-family: var(--font-condensed); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 1.2px; text-transform: uppercase; text-decoration: none;
  border-radius: 10px; transition: all .2s; border: 2px solid var(--red);
  box-shadow: 0 4px 14px rgba(192,24,26,.28);
  cursor: pointer;
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(192,24,26,.45); }
.btn-primary svg { color: #fff; }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: transparent; color: #fff; padding: 16px 32px;
  font-family: var(--font-condensed); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 1.2px; text-transform: uppercase; text-decoration: none;
  border-radius: 10px; transition: all .2s; border: 2px solid rgba(255,255,255,.55);
  cursor: pointer;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.12); transform: translateY(-2px); }
.hero-actions { gap: 18px; }
.hero-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px; padding: 36px; backdrop-filter: blur(10px);
}
.hero-card h3 {
  font-family: var(--font-condensed); font-weight: 700; font-size: 1.1rem;
  letter-spacing: 2px; text-transform: uppercase; color: var(--red-light);
  margin-bottom: 24px;
}
.hero-features { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.hero-features li {
  display: flex; align-items: center; gap: 14px;
  font-size: .97rem; color: rgba(255,255,255,.85);
}
.feat-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(192,24,26,.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red-light);
  transition: all .2s ease;
}
.feat-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.hero-features li:hover .feat-icon { background: var(--red); color: #fff; border-color: var(--red); }
.hero-trust {
  display: flex; gap: 32px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.trust-stat { text-align: center; }
.trust-stat .num {
  display: block; font-family: var(--font-display); font-size: 2.4rem;
  color: var(--red); line-height: 1;
}
.trust-stat .lbl { font-size: .78rem; color: rgba(255,255,255,.5); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; display: block; }

/* ─── SECTIONS ─── */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: var(--font-condensed); font-weight: 700; font-size: .8rem;
  letter-spacing: 3px; text-transform: uppercase; color: var(--red);
  margin-bottom: 12px; display: block;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1; margin-bottom: 16px; color: var(--charcoal);
}
.section-subtitle { font-size: 1.05rem; color: var(--mid-gray); max-width: 600px; line-height: 1.7; }
.section-dark { background: var(--charcoal); }
.section-dark .section-title, .section-dark p, .section-dark h3 { color: #fff; }
.section-dark .section-subtitle { color: rgba(255,255,255,.6); }

/* Section with background photo + dark overlay (used over .section-dark) */
.section-bg-image {
  position: relative;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}
.section-bg-image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,.88) 0%, rgba(20,20,20,.92) 60%, rgba(20,20,20,.95) 100%);
  z-index: -1;
}
.section-gray { background: var(--off-white); }
.divider { width: 48px; height: 3px; background: var(--red); margin: 20px 0; }

/* ─── SERVICES GRID ─── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--white); border: 1px solid var(--light-gray);
  border-radius: 6px; padding: 32px; cursor: pointer;
  transition: all .25s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--red); transform: scaleY(0); transition: transform .25s;
  transform-origin: bottom;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); border-color: rgba(192,24,26,.2); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(30,58,102,.10);
  border-radius: 8px;
  color: #1E3A66;
  margin-bottom: 18px;
  transition: all .25s;
}
.service-card:hover .service-icon { background: #1E3A66; color: #fff; }
.service-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-family: var(--font-condensed); font-weight: 700; font-size: 1.15rem; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 10px; color: var(--charcoal); }
.service-card p { font-size: .92rem; color: var(--mid-gray); line-height: 1.6; }
.service-card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--font-condensed); font-weight: 700; font-size: .85rem; letter-spacing: 1px; text-transform: uppercase; color: var(--red); text-decoration: none; }
.service-card .card-link:hover { gap: 10px; }

/* ─── REVIEWS (sliding carousel) ─── */
.review-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.review-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviewSlide 60s linear infinite;
}
.review-marquee:hover .review-marquee-track,
.review-marquee:focus-within .review-marquee-track { animation-play-state: paused; }
@keyframes reviewSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .review-marquee-track { animation: none; }
  .review-marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

.review-card {
  flex: 0 0 360px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}
.stars { display: inline-flex; gap: 2px; margin: 0; }
.stars svg { width: 14px; height: 14px; fill: #F5A623; display: block; }
.review-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reviewer { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.reviewer-avatar {
  width: 34px; height: 34px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: .95rem; color: #fff; flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: .82rem; color: #fff; line-height: 1.2; }
.reviewer-loc { font-size: .72rem; color: rgba(255,255,255,.45); line-height: 1.3; margin-top: 2px; }

/* ─── BRANDS ─── */
.brands-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 32px 48px; margin-top: 48px; }
.brand-pill {
  background: var(--white); border: 1px solid var(--light-gray);
  border-radius: 6px; padding: 16px 28px;
}

.brand-marquee--home {
  margin-top: 36px; margin-bottom: 0; border-radius: 12px;
  background: var(--charcoal);
  border-top: none; border-bottom: none;
}
.brand-marquee--home::before { background: linear-gradient(90deg, var(--charcoal) 0%, rgba(30,30,30,0) 100%); }
.brand-marquee--home::after  { background: linear-gradient(270deg, var(--charcoal) 0%, rgba(30,30,30,0) 100%); }
.brand-marquee--home a {
  height: 80px; padding: 0 16px;
  background: #fff; border-radius: 8px;
  margin: 0 4px;
  opacity: 1;
}
.brand-marquee--home a:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.35); }
.brand-marquee--home img { max-height: 56px; max-width: 160px; }
@media (max-width: 768px) {
  .brand-marquee--home { border-radius: 8px; }
  .brand-marquee--home a { height: 60px; padding: 0 12px; margin: 0 2px; }
  .brand-marquee--home img { max-height: 40px; max-width: 120px; }
}

/* ─── BRAND LOGO GRID ─── */
.brand-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 22px 18px;
  height: 88px;
  text-decoration: none;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.brand-logo:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.brand-logo .wordmark {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .5px;
  color: #1a1a1a;
  text-align: center;
  line-height: 1;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.brand-logo .wordmark .accent { color: var(--red); }
.brand-logo .wordmark .sub {
  display: block;
  font-size: .7rem;
  letter-spacing: 2px;
  color: #888;
  margin-top: 5px;
  font-weight: 600;
}
.brand-logo:hover .wordmark { color: #000; }
@media (max-width: 900px) {
  .brand-logos { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .brand-logos { grid-template-columns: repeat(2, 1fr); }
}

/* ─── AREAS ─── */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.area-block { background: var(--white); border-radius: 8px; overflow: hidden; border: 1px solid var(--light-gray); }
.area-header { background: var(--charcoal); padding: 20px 24px; }
.area-header h3 { font-family: var(--font-display); font-size: 1.6rem; color: #fff; }
.area-header p { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; }
.area-hood { padding: 20px 24px; }
.hood-list { list-style: none; columns: 2; gap: 8px; }
.hood-list li { font-size: .875rem; padding: 4px 0 4px 14px; color: var(--charcoal-light); position: relative; break-inside: avoid; }
.hood-list li::before { content: ''; width: 5px; height: 5px; background: var(--red); border-radius: 50%; position: absolute; left: 0; top: .85em; }

/* ─── TRUST ─── */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card { text-align: center; padding: 36px 24px; background: var(--charcoal-mid); border-radius: 10px; border-bottom: 3px solid var(--red); transition: transform .25s ease, box-shadow .25s ease; }
.trust-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.4); }
.trust-card .icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.trust-card .icon svg { width: 28px; height: 28px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.trust-card.t-exp .icon { background: rgba(99,162,255,.14); }
.trust-card.t-exp .icon svg { stroke: #63a2ff; }
.trust-card.t-honest .icon { background: rgba(255,176,72,.14); }
.trust-card.t-honest .icon svg { stroke: #ffb048; }
.trust-card.t-licensed .icon { background: rgba(108,217,135,.14); }
.trust-card.t-licensed .icon svg { stroke: #6cd987; }
.trust-card.t-fast .icon { background: rgba(232,101,124,.14); }
.trust-card.t-fast .icon svg { stroke: #e8657c; }
.trust-card h3 { font-family: var(--font-condensed); font-weight: 700; font-size: 1.05rem; letter-spacing: 1px; text-transform: uppercase; color: #fff; margin-bottom: 8px; }
.trust-card p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ─── INNER PAGE ─── */
.inner-hero {
  background: var(--charcoal); padding: 80px 40px 60px;
  position: relative; overflow: hidden;
}
.inner-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.inner-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }

/* Inner Hero — image background variant (used on Gate Remote Programming page) */
.inner-hero--image {
  background-color: var(--charcoal);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 110px 40px 90px;
}
.inner-hero--image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(20,20,20,.78) 0%, rgba(20,20,20,.45) 50%, rgba(20,20,20,.10) 100%);
  z-index: 1;
}
.inner-hero--gate { background-image: url('images/gates/gate-hero.jpg'); }
.inner-hero--gateservice { background-image: url('images/gates/gateservice-hero.jpg'); background-position: center 60%; }
.inner-hero--warehouse { background-image: url('images/warehouse/warehouse-hero.jpg'); background-position: center 65%; }
.inner-hero--overhead { background-image: url('images/overhead/overhead-hero.jpg'); background-position: center 60%; }
.inner-hero--maintenance { background-image: url('images/maintenance/hero-parkade-gate.jpg'); background-position: center 55%; }
.inner-hero--strata { background-image: url('images/strata/hero-clearance.jpg'); background-position: center 50%; }
.inner-hero--strata::before { background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.6) 50%, rgba(0,0,0,.3) 100%); }
@media (max-width: 768px) { .inner-hero--strata::before { background: linear-gradient(180deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.6) 100%); } }
.inner-hero--maintenance::before { background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.6) 45%, rgba(0,0,0,.25) 100%); }
@media (max-width: 768px) { .inner-hero--maintenance::before { background: linear-gradient(180deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.55) 100%); } }
.inner-hero--commopeners { background-image: url('images/openers/commopeners-hero.jpg'); background-position: center 55%; }
.inner-hero--commopeners::before { background: linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.3) 100%); }
@media (max-width: 768px) { .inner-hero--commopeners::before { background: linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.6) 100%); } }
.inner-hero--openers { background-image: url('/images/openers/openers-hero.jpg?v=2'); background-position: center 55%; }
.inner-hero--openers::before { background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.25) 100%); }
@media (max-width: 768px) { .inner-hero--openers::before { background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.6) 100%); } }
.inner-hero--portcoquitlam { background-image: url('images/portcoquitlam/hero-portcoquitlam.jpg'); background-position: center 60%; }
.inner-hero--portcoquitlam::before { background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.25) 100%); }
@media (max-width: 768px) { .inner-hero--portcoquitlam::before { background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.6) 100%); } }
.inner-hero--portmoody { background-image: url('images/portmoody/hero-portmoody.jpg'); background-position: center 55%; }
.inner-hero--portmoody::before { background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.25) 100%); }
@media (max-width: 768px) { .inner-hero--portmoody::before { background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.6) 100%); } }
.inner-hero--coquitlam { background-image: url('/images/garage-door-repair-coquitlam/hero-coquitlam.jpg'); background-position: center 55%; }
.inner-hero--coquitlam::before { background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.25) 100%); }
@media (max-width: 768px) { .inner-hero--coquitlam::before { background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.6) 100%); } }
.inner-hero--notclosing { background-image: url('images/notclosing/door-stuck-open.jpg'); background-position: center 50%; }
.inner-hero--notclosing::before { background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.3) 100%); }
@media (max-width: 768px) { .inner-hero--notclosing::before { background: linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.6) 100%); } }
.inner-hero--overhead::before { background: linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.25) 100%); }
@media (max-width: 768px) {
  .inner-hero--overhead::before { background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.45) 100%); }
}
.inner-hero--warehouse::before { background: linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.25) 100%); }
@media (max-width: 768px) {
  .inner-hero--warehouse::before { background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.45) 100%); }
}

/* ─── OVERHEAD COMMERCIAL PAGE ─── */
.oh-intro { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; margin: 36px 0 56px; }
.oh-intro-text h2 { margin: 0 0 16px; font-family: var(--font-display); font-size: 2rem; color: var(--charcoal); letter-spacing: .5px; }
.oh-intro-text p { margin: 0 0 14px; font-size: 1.02rem; line-height: 1.65; color: #2a2a2a; }
.oh-intro-img { background: var(--charcoal); overflow: hidden; aspect-ratio: 4/5; }
.oh-intro-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) { .oh-intro { grid-template-columns: 1fr; gap: 24px; } .oh-intro-img { aspect-ratio: 16/10; } }

.oh-section-title { font-family: var(--font-display); font-size: 1.9rem; color: var(--charcoal); letter-spacing: .5px; margin: 0 0 6px; }
.oh-section-eyebrow { display: block; font-family: var(--font-condensed); font-weight: 700; font-size: .82rem; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.oh-section-lead { font-size: 1.02rem; line-height: 1.65; color: #2a2a2a; margin: 0 0 28px; max-width: 820px; }

/* Magazine grid: 3-up varied row */
.oh-trio { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; margin: 0 0 56px; }
.oh-trio-card { display: flex; flex-direction: column; }
.oh-trio-card .oh-img { background: var(--charcoal); aspect-ratio: 4/3; overflow: hidden; }
.oh-trio-card .oh-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.oh-trio-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--charcoal); margin: 14px 0 6px; letter-spacing: .3px; line-height: 1.2; }
.oh-trio-card p { font-size: .92rem; line-height: 1.55; color: #333; margin: 0; }
@media (max-width: 900px) { .oh-trio { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .oh-trio { grid-template-columns: 1fr; } }

/* Asymmetric split — wide photo left, content right */
.oh-split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: stretch; margin: 0 0 56px; background: #f6f6f6; }
.oh-split-img { background: var(--charcoal); overflow: hidden; min-height: 360px; }
.oh-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.oh-split-body { padding: 36px 36px 36px 0; display: flex; flex-direction: column; justify-content: center; }
.oh-split-body h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--charcoal); margin: 8px 0 12px; letter-spacing: .4px; line-height: 1.15; }
.oh-split-body p { font-size: .98rem; line-height: 1.65; color: #2a2a2a; margin: 0 0 12px; }
.oh-split-body ul { padding-left: 18px; margin: 4px 0 0; }
.oh-split-body ul li { font-size: .94rem; line-height: 1.55; padding: 3px 0; }
.oh-split.reverse { grid-template-columns: 1fr 1.4fr; }
.oh-split.reverse .oh-split-img { order: 2; }
.oh-split.reverse .oh-split-body { order: 1; padding: 36px 0 36px 36px; }
@media (max-width: 900px) {
  .oh-split, .oh-split.reverse { grid-template-columns: 1fr; gap: 0; }
  .oh-split-img { min-height: 240px; aspect-ratio: 16/10; }
  .oh-split-body, .oh-split.reverse .oh-split-body { padding: 24px 22px 28px; order: 2; }
  .oh-split.reverse .oh-split-img { order: 1; }
}

/* Bay-door strip — full bleed wide photo with caption */
.oh-strip { position: relative; margin: 0 0 56px; background: var(--charcoal); overflow: hidden; }
.oh-strip-img { aspect-ratio: 21/9; }
.oh-strip-img { background: #000; }
.oh-strip-img img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .7; }
.oh-strip-overlay { position: absolute; inset: 0; display: flex; align-items: center; padding: 0 60px; background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.25) 100%); }
.oh-strip-overlay-inner { max-width: 600px; color: #fff; }
.oh-strip-overlay-inner, .oh-strip-overlay-inner * { color: #ffffff !important; }
.oh-strip-overlay h3 { font-family: var(--font-display); font-size: 2rem; margin: 0 0 12px; line-height: 1.1; letter-spacing: .5px; color: #ffffff !important; text-shadow: 0 2px 12px rgba(0,0,0,.85), 0 0 2px rgba(0,0,0,.6); }
.oh-strip-overlay p { font-size: 1rem; line-height: 1.55; margin: 0; color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,.85), 0 0 2px rgba(0,0,0,.6); }
@media (max-width: 900px) { .oh-strip-img { aspect-ratio: 16/10; } .oh-strip-overlay { padding: 0 24px; } .oh-strip-overlay h3 { font-size: 1.5rem; } }

/* Local SEO callouts grid */
.oh-areas { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 28px 0 56px; }
.oh-area-card { background: #fff; border: 1px solid var(--light-gray); padding: 22px 20px; }
.oh-area-card h4 { font-family: var(--font-condensed); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; font-size: .92rem; color: var(--red); margin: 0 0 6px; }
.oh-area-card p { font-size: .88rem; line-height: 1.5; color: #444; margin: 0; }
@media (max-width: 900px) { .oh-areas { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .oh-areas { grid-template-columns: 1fr; } }

/* ─── WAREHOUSE PAGE COMPONENTS ─── */
.wh-tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 30px 0 8px; }
.wh-tier-card { background: #fff; border: 1px solid var(--light-gray); border-radius: 12px; padding: 28px 26px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.wh-tier-card.featured { border-color: var(--red); border-width: 2px; box-shadow: 0 14px 38px rgba(192,24,26,.18); }
.wh-tier-card.featured::before { content: 'Most Popular'; position: absolute; top: 14px; right: -34px; background: var(--red); color: #fff; font-family: var(--font-condensed); font-weight: 700; font-size: .72rem; letter-spacing: 1.2px; text-transform: uppercase; padding: 4px 38px; transform: rotate(35deg); }
.wh-tier-card .wh-tier-name { font-family: var(--font-condensed); font-weight: 700; font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.wh-tier-card h3 { font-family: var(--font-display); font-size: 1.55rem; color: var(--charcoal); margin-bottom: 6px; line-height: 1.1; letter-spacing: .5px; }
.wh-tier-card .wh-tier-doors { font-size: .9rem; color: var(--mid-gray); margin-bottom: 18px; }
.wh-tier-card ul { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.wh-tier-card ul li { position: relative; padding: 7px 0 7px 26px; font-size: .92rem; line-height: 1.5; color: #333; border-bottom: 1px solid var(--light-gray); }
.wh-tier-card ul li:last-child { border-bottom: 0; }
.wh-tier-card ul li::before { content: "\2713"; position: absolute; left: 0; top: 7px; color: var(--red); font-weight: 700; }
.wh-tier-card .btn-primary, .wh-tier-card .btn-secondary { width: 100%; }
@media (max-width: 900px) { .wh-tier-grid { grid-template-columns: 1fr; gap: 18px; } .wh-tier-card.featured::before { top: 10px; right: -28px; } }

/* Savings comparison table */
.savings-table { width: 100%; border-collapse: collapse; margin: 26px 0 8px; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,.05); }
.savings-table th, .savings-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--light-gray); font-size: .94rem; }
.savings-table th { background: var(--charcoal); color: #fff; font-family: var(--font-condensed); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: .82rem; }
.savings-table td.savings { color: var(--red); font-weight: 700; }
.savings-table tr:last-child td { border-bottom: 0; }
@media (max-width: 600px) {
  .savings-table thead { display: none; }
  .savings-table tr { display: block; padding: 14px 16px; border-bottom: 1px solid var(--light-gray); }
  .savings-table td { display: flex; justify-content: space-between; padding: 6px 0; border: 0; font-size: .9rem; }
  .savings-table td::before { content: attr(data-label); font-family: var(--font-condensed); font-weight: 700; text-transform: uppercase; letter-spacing: .8px; font-size: .78rem; color: var(--mid-gray); margin-right: 14px; }
}

/* Stat callouts */
.warehouse-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 32px 0 8px; }
.warehouse-stat { background: var(--charcoal); color: #fff; padding: 22px 18px; border-radius: 10px; text-align: center; }
.warehouse-stat .num { font-family: var(--font-display); font-size: 2.1rem; color: var(--red-light); line-height: 1; margin-bottom: 6px; }
.warehouse-stat .lbl { font-family: var(--font-condensed); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,.78); }
@media (max-width: 760px) { .warehouse-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .warehouse-stats { grid-template-columns: 1fr; } }

/* ─── BRAND MARQUEE (scrolling logo strip) ─── */
.brand-marquee { position: relative; overflow: hidden; padding: 30px 0; background: #fff; border-top: 1px solid var(--light-gray); border-bottom: 1px solid var(--light-gray); margin: 36px 0 8px; }
.brand-marquee::before, .brand-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.brand-marquee::before { left: 0; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%); }
.brand-marquee::after { right: 0; background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%); }
.brand-marquee-track { display: flex; gap: 60px; width: max-content; animation: brandSlide 28s linear infinite; }
.brand-marquee:hover .brand-marquee-track { animation-play-state: paused; }
.brand-marquee a { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; height: 70px; padding: 0 18px; opacity: .85; transition: opacity .2s ease, transform .2s ease; }
.brand-marquee a:hover { opacity: 1; transform: translateY(-2px); }
.brand-marquee img { max-height: 56px; max-width: 170px; width: auto; height: auto; object-fit: contain; display: block; }
@keyframes brandSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track { animation: none; }
}
@media (max-width: 768px) {
  .brand-marquee { padding: 22px 0; }
  .brand-marquee-track { gap: 40px; animation-duration: 22s; }
  .brand-marquee a { height: 56px; padding: 0 12px; }
  .brand-marquee img { max-height: 42px; max-width: 130px; }
}
@media (max-width: 768px) {
  .inner-hero--image { padding: 64px 20px 52px; }
  .inner-hero--image::before { background: linear-gradient(180deg, rgba(20,20,20,.65) 0%, rgba(20,20,20,.55) 100%); }
}
.breadcrumb { font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: 20px; letter-spacing: .5px; }
.breadcrumb a { color: rgba(255,255,255,.4); text-decoration: none; }
.breadcrumb a:hover { color: var(--red-light); }
.inner-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; line-height: 1; margin-bottom: 16px; }
.inner-hero p { font-size: 1.05rem; color: rgba(255,255,255,.65); max-width: 680px; line-height: 1.7; }
.inner-hero .section-label { margin-bottom: 16px; }

.content-section { padding: 64px 40px; }
.content-inner { max-width: 900px; margin: 0 auto; }
.content-section h2 { font-family: var(--font-display); font-size: 2.2rem; color: var(--charcoal); margin-bottom: 20px; }
.content-section h3 { font-family: var(--font-condensed); font-weight: 700; font-size: 1.2rem; letter-spacing: .5px; text-transform: uppercase; color: var(--charcoal); margin-bottom: 12px; }
.content-section p { font-size: .97rem; color: #4A4A4A; line-height: 1.8; margin-bottom: 20px; }
.content-section ul { list-style: none; margin-bottom: 24px; }
.content-section ul li { padding: 8px 0 8px 20px; position: relative; font-size: .95rem; color: #4A4A4A; border-bottom: 1px solid var(--light-gray); }
.content-section ul li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
/* Fix doubled bullets: when an <li> contains its own icon (e.g. .feature-list), hide the default red dot and align as flex */
.content-section ul li:has(> svg),
.content-section ul li:has(> span):has(> svg) {
  display: flex; align-items: flex-start; gap: 12px;
  padding-left: 0;
}
.content-section ul li:has(> svg)::before { display: none; }
.content-section ul li > svg {
  flex-shrink: 0; width: 20px; height: 20px;
  fill: none; stroke: var(--red);
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  margin-top: 4px;
}

/* Opener card */
.opener-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 40px; }
.opener-card { background: var(--off-white); border: 1px solid var(--light-gray); border-radius: 8px; overflow: hidden; }
.opener-card-header { background: var(--charcoal); padding: 20px 24px; }
.opener-card-header h3 { font-family: var(--font-display); font-size: 1.4rem; color: #fff; }
.opener-card-header .model { font-size: .78rem; color: var(--red-light); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }
.opener-card-body { padding: 24px; }
.opener-card-body p { font-size: .9rem; color: #4A4A4A; line-height: 1.7; margin-bottom: 16px; }

/* ─── PRODUCT TIER CARDS ─── */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; align-items: stretch; }
.tier-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tier-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.08); }
.tier-card.featured { border-color: var(--red); border-width: 2px; box-shadow: 0 12px 30px rgba(192,24,26,.12); }
.tier-card.featured::before {
  content: "Most Popular";
  position: absolute; top: 16px; right: -36px;
  background: var(--red); color: #fff;
  font-family: var(--font-condensed); font-weight: 700;
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(35deg);
  z-index: 2;
}
.tier-tag {
  font-family: var(--font-condensed); font-weight: 700;
  font-size: .72rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--mid-gray);
  padding: 24px 28px 0;
}
.tier-card.featured .tier-tag { color: var(--red); }
.tier-name {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--charcoal); line-height: 1; padding: 6px 28px 4px;
  letter-spacing: .5px;
}
.tier-model {
  font-family: var(--font-condensed); font-weight: 600;
  font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: #6a6a6a;
  padding: 0 28px 18px;
}
.tier-img {
  height: 200px;
  background: linear-gradient(180deg, #f8f7f4 0%, #ecebe7 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}
.tier-img img { max-height: 100%; max-width: 100%; object-fit: contain; display: block; }
.tier-tagline {
  font-family: var(--font-display); font-size: 1.15rem;
  color: var(--charcoal); padding: 22px 28px 4px;
  letter-spacing: .5px; line-height: 1.2;
}
.tier-desc {
  font-size: .9rem; color: #555; line-height: 1.7;
  padding: 0 28px 18px;
}
.tier-features {
  list-style: none;
  padding: 0 28px 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.tier-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: #444; line-height: 1.5;
}
.tier-features li svg {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  fill: none; stroke: var(--red); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
.tier-best {
  background: #faf8f5;
  padding: 16px 28px;
  border-top: 1px solid var(--light-gray);
  font-size: .82rem; color: #555; line-height: 1.55;
}
.tier-best strong {
  display: block;
  font-family: var(--font-condensed); font-weight: 700;
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 4px;
}
.tier-cta {
  margin: 0 28px 28px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 20px;
  background: var(--charcoal); color: #fff;
  font-family: var(--font-condensed); font-weight: 700;
  font-size: .85rem; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: background .2s;
}
.tier-cta:hover { background: var(--red); }
.tier-card.featured .tier-cta { background: var(--red); }
.tier-card.featured .tier-cta:hover { background: var(--red-dark); }
.tier-actions { display: flex; flex-direction: column; gap: 8px; padding: 0 28px 28px; }
.tier-actions .tier-cta { margin: 0; }
.tier-brochure {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 16px;
  background: transparent; color: var(--charcoal);
  border: 1px solid var(--light-gray);
  font-family: var(--font-condensed); font-weight: 600;
  font-size: .78rem; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; border-radius: 6px;
  transition: all .2s;
}
.tier-brochure:hover { border-color: var(--charcoal); background: var(--charcoal); color: #fff; }
.tier-brochure svg { width: 14px; height: 14px; fill: currentColor; }

/* ─── REPAIR SEO SECTION ─── */
.repair-section {
  margin-top: 80px;
  padding: 56px 48px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 12px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.repair-section::before {
  content: "";
  position: absolute; top: 0; right: 0; width: 280px; height: 100%;
  background: var(--red); opacity: .08;
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.repair-section .section-label { color: var(--red-light); position: relative; }
.repair-section h2 { color: #fff; font-size: 2.4rem; margin: 8px 0 18px; line-height: 1.05; max-width: 900px; position: relative; }
.repair-section .lead { font-size: 1.05rem; color: rgba(255,255,255,.82); line-height: 1.7; max-width: 880px; margin-bottom: 36px; position: relative; }
.repair-section h3 { color: #fff; font-size: 1.5rem; margin-top: 32px; margin-bottom: 14px; position: relative; }
.repair-section p { color: rgba(255,255,255,.78); line-height: 1.75; margin-bottom: 14px; position: relative; }
.repair-section strong { color: #fff; }
.repair-issues { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin: 28px 0 12px; position: relative; }
.repair-issue {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 22px;
  transition: all .25s;
}
.repair-issue:hover { border-color: var(--red); transform: translateY(-3px); }
.repair-issue h4 {
  font-family: var(--font-display); font-size: 1.1rem; color: #fff;
  margin-bottom: 8px; line-height: 1.2;
}
.repair-issue p { font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.6; margin: 0; }
.repair-cta-row {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  margin-top: 36px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.repair-cta-row .repair-phone {
  font-family: var(--font-display); font-size: 1.8rem; color: #fff;
  text-decoration: none; letter-spacing: 1px;
}
.repair-cta-row .repair-phone span { color: var(--red-light); font-size: .8rem; letter-spacing: 2px; display: block; font-family: var(--font-condensed); font-weight: 700; text-transform: uppercase; margin-bottom: 2px; }
.repair-cta-row .btn-cta {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--red); color: #fff;
  font-family: var(--font-condensed); font-weight: 700;
  font-size: .9rem; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; border-radius: 6px;
  transition: background .2s;
}
.repair-cta-row .btn-cta:hover { background: var(--red-dark); }

/* ─── SPRINGS PAGE ─── */
.springs-hero {
  position: relative;
  background: var(--charcoal);
  padding: 0; overflow: hidden;
  min-height: 560px;
  display: flex; align-items: stretch;
}
.springs-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--red); z-index: 4; }
.springs-hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/springs/hero-springs.jpg');
  background-size: cover; background-position: center;
  opacity: .55;
}
.springs-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(20,20,20,.92) 0%, rgba(20,20,20,.75) 45%, rgba(20,20,20,.35) 100%);
}
.springs-hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; width: 100%;
  margin: 0 auto; padding: 80px 40px 64px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center;
}
.springs-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  color: #fff; line-height: 1; margin: 14px 0 18px;
  letter-spacing: -.5px;
}
.springs-hero h1 .accent { color: var(--red-light); }
.springs-hero .lede { font-size: 1.1rem; color: rgba(255,255,255,.82); line-height: 1.65; max-width: 600px; margin-bottom: 28px; }
.springs-hero-trust { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.springs-hero-trust .item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 500; }
.springs-hero-trust .item svg { width: 18px; height: 18px; fill: var(--red-light); flex-shrink: 0; }
.springs-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.springs-hero-actions .btn-primary { padding: 18px 36px; font-size: .95rem; }
.springs-hero-actions .btn-outline { padding: 18px 36px; font-size: .95rem; }

/* Quote card on hero right */
.springs-quote-card {
  background: #fff; border-radius: 10px; padding: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
  position: relative;
}
.springs-quote-card::before {
  content: 'Emergency Service'; position: absolute; top: -12px; left: 24px;
  background: var(--red); color: #fff;
  font-family: var(--font-condensed); font-weight: 700;
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 3px;
}
.springs-quote-card h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--charcoal); margin: 8px 0 6px; line-height: 1.1; }
.springs-quote-card .price { font-family: var(--font-display); font-size: 2.6rem; color: var(--red); line-height: 1; margin: 16px 0 4px; }
.springs-quote-card .price-note { font-size: .82rem; color: #777; margin-bottom: 18px; }
.springs-quote-card ul { list-style: none; padding: 0; margin: 0 0 22px; }
.springs-quote-card li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: #333; line-height: 1.5; padding: 8px 0;
  border-top: 1px solid #f0eee9;
}
.springs-quote-card li:first-child { border-top: 0; }
.springs-quote-card li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; fill: none; stroke: var(--red); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.springs-quote-card .phone-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--charcoal); color: #fff; padding: 16px;
  font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 1px;
  text-decoration: none; border-radius: 6px;
  transition: background .2s;
}
.springs-quote-card .phone-cta:hover { background: var(--red); }
.springs-quote-card .phone-cta svg { width: 20px; height: 20px; fill: currentColor; }

/* Global SVG safety — prevent any unstyled inline SVG from blowing up */
svg { max-width: 100%; max-height: 100%; }
svg:not([width]):not([height]) { width: 1em; height: 1em; }
.feature-list svg, .springs-hero-trust .item svg, .urgency-band svg,
.warn-icon svg, .stars svg, .springs-quote-card ul svg,
.springs-quote-card .phone-cta svg { flex-shrink: 0; }

/* Urgency band */
.urgency-band {
  background: var(--red); color: #fff;
  padding: 20px 40px; text-align: center;
  font-family: var(--font-condensed); font-weight: 700;
  font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.urgency-band span { display: inline-flex; align-items: center; gap: 8px; }
.urgency-band svg { width: 18px; height: 18px; fill: #fff; }

/* Image+content split blocks */
.split-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; margin: 64px 0;
}
.split-block.reverse { grid-template-columns: 1fr 1fr; }
.split-block.reverse .split-img { order: 2; }
.split-img { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; }
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-img .img-tag {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(20,20,20,.92); color: #fff;
  font-family: var(--font-condensed); font-weight: 700;
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 14px; border-radius: 3px;
}
.split-content h2 { font-family: var(--font-display); font-size: 2rem; color: var(--charcoal); line-height: 1.1; margin-bottom: 16px; }
.split-content p { color: #4a4a4a; line-height: 1.75; margin-bottom: 14px; }
.split-content .feature-list { list-style: none; padding: 0; margin: 18px 0 4px; }
.split-content .feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid #ececec;
  font-size: .95rem; color: #2a2a2a;
}
.split-content .feature-list li:last-child { border-bottom: 0; }
.split-content .feature-list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; fill: none; stroke: var(--red); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.split-content .feature-list li:not(:has(> svg)) { display: list-item; padding-left: 22px; position: relative; }
.split-content .feature-list li:not(:has(> svg))::before { content: ''; position: absolute; left: 4px; top: 16px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

/* Warning callout */
.warning-block {
  background: linear-gradient(135deg, #fdf4f4 0%, #fcebe9 100%);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  padding: 32px 36px;
  margin: 48px 0;
  display: grid; grid-template-columns: 60px 1fr; gap: 24px; align-items: flex-start;
}
.warning-block .warn-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.warning-block .warn-icon svg { width: 28px; height: 28px; fill: #fff; }
.warning-block h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--red-dark); margin-bottom: 10px; }
.warning-block p { color: #5a2a2a; line-height: 1.7; margin-bottom: 0; font-size: .98rem; }

/* Spring types comparison cards */
.spring-types { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; }
.spring-type-card {
  background: #fff; border: 1px solid var(--light-gray); border-radius: 10px;
  overflow: hidden;
}
.spring-type-card .img-box { aspect-ratio: 16/10; overflow: hidden; }
.spring-type-card .img-box img { width: 100%; height: 100%; object-fit: cover; }
.spring-type-card .body { padding: 24px 26px 26px; }
.spring-type-card h4 {
  font-family: var(--font-display); font-size: 1.35rem; color: var(--charcoal);
  margin-bottom: 4px;
}
.spring-type-card .sub {
  font-family: var(--font-condensed); font-weight: 700;
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.spring-type-card p { font-size: .92rem; color: #555; line-height: 1.65; margin-bottom: 12px; }
.spring-type-card .specs { font-size: .82rem; color: #777; line-height: 1.5; padding-top: 10px; border-top: 1px solid #ececec; }
.spring-type-card .specs strong { color: var(--charcoal); }

/* Process steps */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 32px 0; }
.process-step { position: relative; padding: 28px 22px; background: #fff; border: 1px solid var(--light-gray); border-radius: 8px; }
.process-step .num {
  position: absolute; top: -16px; left: 22px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem;
}
.process-step h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--charcoal); margin: 12px 0 8px; }
.process-step p { font-size: .88rem; color: #666; line-height: 1.6; margin: 0; }

/* CTA banner with image */
.cta-banner {
  position: relative; margin: 64px 0; border-radius: 12px; overflow: hidden;
  background: var(--charcoal);
  padding: 56px 48px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('images/springs/hero-springs.jpg');
  background-size: cover; background-position: center;
  opacity: .25;
}
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h3 { font-family: var(--font-display); font-size: 2rem; color: #fff; line-height: 1.1; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.78); line-height: 1.65; margin-bottom: 0; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-banner-actions .btn-primary,
.cta-banner-actions .btn-outline { justify-content: center; padding: 18px 28px; }

/* SEO area chip list */
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 0; }
.area-chips span {
  display: inline-block; padding: 8px 14px;
  background: #f0ede7; color: #444;
  font-size: .82rem; border-radius: 100px;
  font-weight: 500;
}

/* Pricing strip */
.price-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  background: #fff; border: 1px solid var(--light-gray); border-radius: 10px;
  overflow: hidden; margin: 28px 0;
}
.price-strip > div { padding: 26px 24px; border-right: 1px solid var(--light-gray); }
.price-strip > div:last-child { border-right: 0; }
.price-strip .label {
  font-family: var(--font-condensed); font-weight: 700;
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--mid-gray); margin-bottom: 6px;
}
.price-strip .amount { font-family: var(--font-display); font-size: 1.7rem; color: var(--charcoal); line-height: 1.1; }
.price-strip .desc { font-size: .82rem; color: #777; margin-top: 4px; line-height: 1.45; }

@media (max-width: 1024px) {
  .springs-hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 60px 24px 48px; }
  .split-block, .split-block.reverse { grid-template-columns: 1fr; gap: 28px; margin: 44px 0; }
  .split-block.reverse .split-img { order: 0; }
  .spring-types { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .cta-banner { grid-template-columns: 1fr; padding: 40px 28px; }
  .price-strip { grid-template-columns: 1fr; }
  .price-strip > div { border-right: 0; border-bottom: 1px solid var(--light-gray); }
  .price-strip > div:last-child { border-bottom: 0; }
}
@media (max-width: 600px) {
  .urgency-band { font-size: .82rem; padding: 16px 20px; gap: 14px; }
  .springs-hero h1 { font-size: clamp(1.9rem, 7vw, 2.4rem); }
  .springs-hero .lede { font-size: 1rem; }
  .process-steps { grid-template-columns: 1fr; }
  .warning-block { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .springs-quote-card .price { font-size: 2.2rem; }
}
@media (max-width: 768px) {
  .repair-section { padding: 40px 24px; }
  .repair-section h2 { font-size: 1.7rem; }
  .repair-cta-row .btn-cta { margin-left: 0; width: 100%; justify-content: center; }
}
@media (max-width: 1024px) {
  .tier-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .tier-card.featured::before { top: 14px; right: -34px; font-size: .68rem; padding: 5px 36px; }
}
.pdf-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--charcoal); color: #fff; padding: 10px 18px;
  border-radius: 4px; text-decoration: none; font-family: var(--font-condensed);
  font-weight: 700; font-size: .8rem; letter-spacing: 1px; text-transform: uppercase;
  transition: background .2s;
}
.pdf-btn:hover { background: var(--red); }

/* Contact Form */
.contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-condensed); font-weight: 700; font-size: .85rem; letter-spacing: 1px; text-transform: uppercase; color: var(--charcoal); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--light-gray);
  border-radius: 4px; font-family: var(--font-body); font-size: .95rem;
  color: var(--text); background: #fff; transition: border .2s;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-box { background: var(--charcoal); border-radius: 8px; padding: 36px; }
.contact-info-box h3 { font-family: var(--font-display); font-size: 1.8rem; color: #fff; margin-bottom: 28px; }
.info-row { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.info-icon { width: 38px; height: 38px; background: rgba(192,24,26,.2); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.info-label { font-family: var(--font-condensed); font-weight: 700; font-size: .78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red-light); margin-bottom: 4px; }
.info-val { font-size: .95rem; color: rgba(255,255,255,.8); }
.info-val a { color: inherit; text-decoration: none; }
.info-val a:hover { color: var(--red-light); }

/* ─── B2B OFFER CARDS (home page) ─── */
.offers-intro { max-width: 780px; margin: 0 auto 56px; text-align: center; }
.offer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; margin-top: 48px; }
.offer-card {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0;
  background: #fff; border: 1px solid var(--light-gray); border-radius: 12px;
  overflow: hidden; box-shadow: 0 6px 24px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.offer-card:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(0,0,0,.09); }
.offer-card.reverse { grid-template-columns: 1fr 1.05fr; }
.offer-card.reverse .offer-card-img { order: 2; }
.offer-card-img { position: relative; min-height: 380px; overflow: hidden; background: var(--off-white); }
.offer-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.offer-card-body { padding: 38px 40px; display: flex; flex-direction: column; }
.offer-card-tag {
  display: inline-block; align-self: flex-start;
  background: rgba(192,24,26,.1); color: var(--red-dark);
  padding: 6px 14px; border-radius: 100px;
  font-family: var(--font-condensed); font-weight: 700; font-size: .76rem;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px;
}
.offer-card-body h3 {
  font-family: var(--font-display); font-size: 1.7rem; color: var(--charcoal);
  margin: 0 0 14px; line-height: 1.15; letter-spacing: .3px;
}
.offer-card-pricing {
  font-size: 1rem; color: var(--charcoal); line-height: 1.6;
  margin: 0 0 18px; padding: 14px 18px;
  background: var(--off-white); border-left: 3px solid var(--red); border-radius: 0 6px 6px 0;
}
.offer-card-pricing strong { color: var(--red-dark); }
.offer-card-body ul.ticked-list { margin: 0 0 8px; }

@media (max-width: 880px) {
  .offer-card, .offer-card.reverse { grid-template-columns: 1fr; }
  .offer-card.reverse .offer-card-img { order: 0; }
  .offer-card-img { min-height: 240px; }
  .offer-card-body { padding: 28px 26px; }
  .offer-card-body h3 { font-size: 1.4rem; }
}

/* ─── HOME CONTACT FORM (dark variant) ─── */
.home-contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start;
  margin-top: 48px;
}
.home-contact-intro .section-label,
.home-contact-intro .section-title,
.home-contact-intro .divider { text-align: left; margin-left: 0; }
.home-contact-info { margin-top: 28px; display: flex; flex-direction: column; gap: 6px; }
.home-contact-form {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 32px;
}
.home-contact-form .form-group label { color: rgba(255,255,255,.78); }
.home-contact-form .form-group input,
.home-contact-form .form-group select,
.home-contact-form .form-group textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
}
.home-contact-form .form-group input::placeholder,
.home-contact-form .form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.home-contact-form .form-group select option { color: #1a1a1a; background: #fff; }
.home-contact-form .form-group input:focus,
.home-contact-form .form-group select:focus,
.home-contact-form .form-group textarea:focus {
  border-color: var(--red-light); background: rgba(255,255,255,.08);
}
@media (max-width: 880px) {
  .home-contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .home-contact-form { padding: 26px 22px; }
}

/* ─── PROMO STRIP (3 image cards) ─── */
.promo-strip-intro { max-width: 720px; margin: 0 auto; text-align: center; }
.promo-strip-intro .divider { margin: 18px auto 22px; }
.promo-strip-intro p { color: var(--mid-gray); }
.promo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  margin-top: 48px;
}
.promo-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--light-gray); border-radius: 12px;
  overflow: hidden; text-decoration: none; color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  border-color: rgba(192,24,26,.25);
}
.promo-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--off-white);
}
.promo-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.promo-card:hover .promo-card-img img { transform: scale(1.04); }
.promo-card-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--red); color: #fff;
  font-family: var(--font-condensed); font-weight: 700; font-size: .72rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 4px;
  box-shadow: 0 2px 8px rgba(192,24,26,.35);
}
.promo-card-body {
  padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1;
}
.promo-card-body h3 {
  font-family: var(--font-display); font-size: 1.35rem; line-height: 1.15;
  color: var(--charcoal); margin: 0 0 10px; letter-spacing: .3px;
}
.promo-card-body p {
  font-size: .92rem; color: var(--mid-gray); line-height: 1.6;
  margin: 0 0 16px; flex: 1;
}
.promo-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-condensed); font-weight: 700; font-size: .85rem;
  letter-spacing: 1px; text-transform: uppercase; color: var(--red);
  transition: gap .2s ease;
}
.promo-card:hover .promo-card-link { gap: 10px; }
@media (max-width: 900px) {
  .promo-grid { grid-template-columns: 1fr; gap: 18px; }
  .promo-card-img { aspect-ratio: 16 / 10; }
}

/* FAQ */
.faq-list { max-width: 780px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--light-gray); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-condensed); font-weight: 700; font-size: 1.05rem;
  letter-spacing: .3px; text-transform: uppercase; color: var(--charcoal); gap: 16px;
}
.faq-q .faq-arrow { color: var(--red); font-size: 1.2rem; transition: transform .25s; flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.faq-a.open { max-height: 400px; padding-bottom: 20px; }
.faq-a p { font-size: .95rem; color: #555; line-height: 1.75; }

/* ABOUT */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story h2 { font-family: var(--font-display); font-size: 3rem; color: #fff; margin-bottom: 24px; line-height: 1; }
.about-story p { font-size: 1rem; color: rgba(255,255,255,.72); line-height: 1.8; margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.value-box { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 6px; padding: 20px; }
.value-box .v-icon { font-size: 1.5rem; margin-bottom: 10px; }
.value-box h4 { font-family: var(--font-condensed); font-weight: 700; font-size: .95rem; letter-spacing: 1px; text-transform: uppercase; color: #fff; margin-bottom: 6px; }
.value-box p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.about-stats { background: var(--charcoal-mid); border-radius: 12px; padding: 48px; border: 1px solid rgba(255,255,255,.05); }
.about-stat { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.06); }
.about-stat:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.about-stat .big-num { font-family: var(--font-display); font-size: 4rem; color: var(--red); line-height: 1; }
.about-stat h3 { font-family: var(--font-condensed); font-weight: 700; font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; color: #fff; margin-top: 4px; }
.about-stat p { font-size: .85rem; color: rgba(255,255,255,.45); margin-top: 6px; }

/* KEYWORD CHIPS */
.kw-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.kw-chip { background: rgba(192,24,26,.08); border: 1px solid rgba(192,24,26,.2); color: var(--red-dark); padding: 6px 14px; border-radius: 100px; font-size: .82rem; font-weight: 600; }

/* GATE BRANDS */
.gate-brands { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 32px; }
.gate-brand-card { background: var(--off-white); border: 1px solid var(--light-gray); border-radius: 6px; padding: 20px; text-align: center; }
.gate-brand-card .gb-name { font-family: var(--font-condensed); font-weight: 700; font-size: 1.1rem; letter-spacing: 1px; text-transform: uppercase; color: var(--charcoal); margin-bottom: 6px; }
.gate-brand-card p { font-size: .82rem; color: var(--mid-gray); line-height: 1.5; }

/* ─── REUSABLE CONTENT COMPONENTS ─── */
p.lead { font-size: 1.08rem; line-height: 1.7; color: #2a2a2a; margin-bottom: 16px; }
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; background: transparent; color: var(--charcoal); border: 2px solid var(--charcoal); border-radius: 4px; font-family: var(--font-condensed); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; transition: all .2s ease; font-size: .95rem; }
.btn-secondary:hover { background: var(--charcoal); color: #fff; }

/* Feature card (split image + text) */
.feature-card { display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; background: #fff; border: 1px solid var(--light-gray); border-radius: 12px; overflow: hidden; box-shadow: 0 8px 26px rgba(0,0,0,.06); margin: 36px 0; }
.feature-card-text { padding: 38px 40px; display: flex; flex-direction: column; justify-content: center; }
.feature-card-text h2 { font-family: var(--font-display); font-size: 2rem; color: var(--charcoal); margin: 8px 0 16px; line-height: 1.05; letter-spacing: .5px; }
.feature-card-text p { font-size: 1rem; line-height: 1.7; color: #2c2c2c; margin-bottom: 14px; }
.feature-card-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.feature-card-img { background: var(--charcoal); }
.feature-card-img img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }
@media (max-width: 820px) {
  .feature-card { grid-template-columns: 1fr; }
  .feature-card-img { order: -1; }
  .feature-card-img img { min-height: 240px; max-height: 320px; }
  .feature-card-text { padding: 28px 24px; }
  .feature-card-text h2 { font-size: 1.65rem; }
}

/* HowTo step grid */
.howto-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 28px 0 16px; }
.howto-step { background: var(--off-white); border: 1px solid var(--light-gray); border-radius: 10px; padding: 26px 22px 22px; position: relative; }
.howto-step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--font-display); font-size: 1.4rem; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.howto-step h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--charcoal); margin-bottom: 8px; letter-spacing: .5px; line-height: 1.15; }
.howto-step p { font-size: .92rem; line-height: 1.6; color: #444; }
@media (max-width: 820px) { .howto-steps { grid-template-columns: 1fr; } }

/* Problem grid */
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 26px 0 8px; }
.problem-card { background: #fff; border: 1px solid var(--light-gray); border-left: 4px solid var(--red); border-radius: 6px; padding: 20px 22px; }
.problem-card h3 { font-family: var(--font-condensed); font-weight: 700; text-transform: uppercase; font-size: 1.05rem; letter-spacing: .8px; color: var(--charcoal); margin-bottom: 8px; }
.problem-card p { font-size: .9rem; line-height: 1.6; color: #444; }
.problem-card a { color: var(--red); font-weight: 600; text-decoration: none; }
.problem-card a:hover { text-decoration: underline; }

/* AEO Q&A blocks */
.aeo-qa { display: flex; flex-direction: column; gap: 18px; margin: 28px 0 8px; }
.aeo-qa-item { background: #fff; border: 1px solid var(--light-gray); border-radius: 8px; padding: 22px 26px; }
.aeo-qa-item h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.08rem; color: var(--charcoal); margin-bottom: 10px; line-height: 1.35; }
.aeo-qa-item p { font-size: .98rem; line-height: 1.7; color: #333; }
@media (max-width: 600px) { .aeo-qa-item { padding: 18px 20px; } .aeo-qa-item h3 { font-size: 1rem; } }

/* Ticked list */
.ticked-list { list-style: none; padding: 0; margin: 22px 0 8px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 10px 24px; }
.ticked-list li { position: relative; padding-left: 28px; font-size: .98rem; line-height: 1.55; color: #2a2a2a; }
.ticked-list li::before { content: "\2713"; position: absolute; left: 0; top: 1px; color: var(--red); font-weight: 700; font-size: 1.05rem; }
.ticked-list li a { color: var(--red); font-weight: 600; text-decoration: none; }
.ticked-list li a:hover { text-decoration: underline; }

/* Bottom CTA band inside content sections */
.content-cta-band { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; background: var(--charcoal); color: #fff; padding: 28px 32px; border-radius: 10px; margin-top: 60px; }
.content-cta-band h3 { font-family: var(--font-display); font-size: 1.7rem; color: #fff; margin-bottom: 6px; letter-spacing: .5px; line-height: 1.1; }
.content-cta-band p { color: #d4d4d4; font-size: .98rem; margin: 0; max-width: 540px; }
.content-cta-band .btn-primary { background: var(--red); color: #fff; padding: 14px 28px; font-size: 1rem; }
.content-cta-band .btn-primary:hover { background: var(--red-light); }
@media (max-width: 600px) {
  .content-cta-band { flex-direction: column; align-items: flex-start; padding: 24px; }
  .content-cta-band h3 { font-size: 1.4rem; }
}

/* Job-image wrapper (for new gate gallery markup) */
.poco-job-img { background: var(--charcoal); overflow: hidden; border-radius: 10px; }
.poco-job-img img { border-radius: 10px; }
.poco-job-img img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; display: block; }
.poco-job-tag { display: inline-block; font-family: var(--font-condensed); font-weight: 700; font-size: .78rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--red); background: rgba(192,24,26,.08); padding: 5px 10px; border-radius: 3px; margin-bottom: 10px; }
@media (max-width: 768px) {
  .poco-job-img img { min-height: 220px; max-height: 280px; }
}

/* COMMERCIAL CARD */
.comm-card { display: grid; grid-template-columns: auto 1fr; gap: 24px; background: var(--off-white); border: 1px solid var(--light-gray); border-radius: 8px; padding: 28px; margin-bottom: 24px; align-items: start; }
.comm-icon-box { width: 64px; height: 64px; background: var(--charcoal); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.comm-card h3 { font-family: var(--font-condensed); font-weight: 700; font-size: 1.15rem; letter-spacing: .5px; text-transform: uppercase; color: var(--charcoal); margin-bottom: 8px; }
.comm-card p { font-size: .92rem; color: #555; line-height: 1.7; }
.comm-badge { display: inline-block; background: var(--red); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; margin-bottom: 10px; }

/* MAINTENANCE TABLE */
.maint-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.maint-table th { background: var(--charcoal); color: #fff; font-family: var(--font-condensed); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: .9rem; padding: 14px 20px; text-align: left; }
.maint-table td { padding: 12px 20px; border-bottom: 1px solid var(--light-gray); font-size: .9rem; }
.maint-table tr:nth-child(even) td { background: var(--off-white); }
.maint-table .check { color: #22C55E; font-size: 1.1rem; }

/* ─── PORT COQUITLAM JOB GALLERY ─── */
.poco-gallery { margin: 40px 0 48px; display: flex; flex-direction: column; gap: 32px; }
.poco-job { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; align-items: stretch; background: #fff; border: 1px solid var(--light-gray); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,.06); }
.poco-job.reverse { grid-template-columns: 1.2fr 1fr; }
.poco-job.reverse > img { order: 2; }
.poco-job > img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; display: block; }
.poco-job-body { padding: 28px 32px; }
.poco-job-body h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--charcoal); margin-bottom: 14px; line-height: 1.1; letter-spacing: .5px; }
.poco-job-body p { font-size: .96rem; line-height: 1.65; color: #333; margin-bottom: 12px; }
.poco-job-body p.kw { font-size: .78rem; color: #888; line-height: 1.55; padding: 10px 12px; background: #f6f4f0; border-left: 3px solid var(--red); border-radius: 3px; margin: 14px 0; }
.poco-job-body p.kw em { color: #555; font-style: italic; }
.poco-link { display: inline-block; margin-top: 6px; color: var(--red); font-weight: 700; text-decoration: none; font-family: var(--font-condensed); letter-spacing: .5px; text-transform: uppercase; font-size: .9rem; }
.poco-link:hover { color: var(--red-dark); }
@media (max-width: 768px) {
  .poco-job, .poco-job.reverse { grid-template-columns: 1fr; gap: 0; }
  .poco-job.reverse > img { order: 0; }
  .poco-job > img { min-height: 220px; max-height: 280px; }
  .poco-job-body { padding: 22px 22px 26px; }
  .poco-job-body h3 { font-size: 1.35rem; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { display: block; max-width: 520px; }
  .areas-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-layout { grid-template-columns: 1fr; }
}

/* MOBILE NAV DRAWER */
@media (max-width: 900px) {
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--charcoal);
    border-top: 2px solid var(--red);
    padding: 8px 0 100px;
    gap: 0;
    height: auto;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 998;
    display: flex;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu > li { height: auto; display: block; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-menu > li > a {
    height: auto; padding: 16px 24px;
    color: #fff; font-size: .95rem;
    justify-content: space-between;
  }
  .nav-menu > li > a:hover, .nav-menu > li > a.active { background: rgba(192,24,26,.15); color: #fff; }
  .nav-menu > li > a .arrow { font-size: .7rem; opacity: .8; }
  .dropdown {
    position: static !important;
    opacity: 1 !important; pointer-events: all !important;
    transform: none !important;
    background: rgba(0,0,0,.3) !important;
    box-shadow: none !important;
    min-width: 0 !important;
    border-top: 0 !important;
    padding: 0 !important;
    display: none;
  }
  .nav-menu > li.expanded .dropdown { display: block; }
  .nav-menu > li.expanded > a .arrow { transform: rotate(180deg); }
  .dropdown li a {
    color: rgba(255,255,255,.75) !important;
    padding: 12px 32px !important;
    font-size: .88rem !important;
  }
  .dropdown li a:hover { background: rgba(192,24,26,.12) !important; color: #fff !important; }
  .nav-cta {
    margin: 16px 24px 0 !important;
    border-radius: 4px !important;
    text-align: center;
    justify-content: center !important;
  }
  .nav-hamburger { display: flex; }
}

/* TABLET / SMALL DESKTOP */
@media (max-width: 768px) {
  .nav-bar { padding: 0 16px; height: 64px; }
  .nav-logo img { height: 56px; }
  .nav-menu { top: 64px; max-height: calc(100vh - 64px); }

  .hero { min-height: auto; }
  .hero-inner { padding: 56px 20px 40px; }
  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(15,15,15,.72) 0%, rgba(15,15,15,.58) 60%, rgba(15,15,15,.80) 100%),
      url('images/hero-garage.jpg');
    background-size: cover, cover;
    background-position: center, center;
  }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); line-height: 1; }
  .hero-tag { font-size: .68rem; padding: 6px 14px; }
  .hero-sub { font-size: 1rem; line-height: 1.6; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; justify-content: center; padding: 16px 24px; }
  .hero-trust { gap: 20px; flex-wrap: wrap; margin-top: 36px; padding-top: 24px; }
  .trust-stat .num { font-size: 1.6rem; }
  .trust-stat .lbl { font-size: .72rem; }
  .hero-card { padding: 28px 24px; margin-top: 8px; }
  .hero-card h3 { font-size: 1rem; }
  .hero-features li { font-size: .92rem; }

  section { padding: 56px 20px; }
  .section-inner { padding: 0; }
  .section-title { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .section-subtitle { font-size: .98rem; }

  .inner-hero { padding: 48px 20px 36px; }
  .inner-hero h1 { font-size: clamp(2rem, 7vw, 2.6rem); }
  .inner-hero p { font-size: 1rem; }
  .content-section { padding: 40px 20px; }
  .content-inner h2 { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  .content-inner h3 { font-size: 1.15rem; }
  .content-inner p, .content-inner li { font-size: .98rem; }

  .service-card { padding: 26px 22px; }
  .service-card h3 { font-size: 1.05rem; }
  .service-card p { font-size: .92rem; }

  .brand-logos { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .brand-logo { height: 76px; padding: 16px 12px; }
  .brand-logo .wordmark { font-size: .95rem; }
  .brand-logo .wordmark .sub { font-size: .65rem; }

  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-card { padding: 28px 20px; }

  .review-marquee-track { gap: 14px; animation-duration: 70s; }
  .review-card { flex-basis: 290px; padding: 20px 20px; }

  .opener-grid { grid-template-columns: 1fr; gap: 20px; }
  .gate-brands { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .hero-stripe { display: none; }

  /* sticky CTA &#8212; make it a bit smaller on mobile */
  .cta-bar a { padding: 14px 12px; font-size: .85rem; gap: 8px; }
  .cta-bar svg { width: 18px; height: 18px; }
  body { padding-bottom: 56px; }

  /* footer */
  footer { padding: 36px 20px 90px !important; }
  footer img { max-width: 80% !important; }
  footer p { font-size: .82rem !important; line-height: 1.7; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .gate-brands { grid-template-columns: 1fr; }
  .brand-logos { grid-template-columns: repeat(2, 1fr); }
  .nav-logo img { height: 48px; }
  .cta-bar a { font-size: .8rem; padding: 12px 8px; }
  .cta-bar a span.lbl { display: none; }
  .hero-trust { gap: 14px; }
  .trust-stat { flex: 1 1 30%; }
}

/* ─── SERVICE AREA PAGES ─── */
.area-emergency-band {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff; padding: 28px 24px; border-radius: 8px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin: 32px 0 40px;
  box-shadow: 0 8px 24px rgba(192,24,26,.25);
}
.area-emergency-band .msg { flex: 1; min-width: 280px; }
.area-emergency-band .eyebrow {
  font-family: var(--font-condensed); font-weight: 700;
  font-size: .82rem; letter-spacing: 2px; text-transform: uppercase;
  opacity: .85; margin-bottom: 6px;
}
.area-emergency-band .headline {
  font-family: var(--font-display); font-size: 1.85rem; line-height: 1.05;
  margin-bottom: 6px;
}
.area-emergency-band .sub { font-size: .95rem; opacity: .92; line-height: 1.55; }
.area-emergency-band .cta {
  background: #fff; color: var(--red); padding: 16px 26px; border-radius: 6px;
  font-family: var(--font-condensed); font-weight: 700; font-size: 1rem;
  text-decoration: none; letter-spacing: .8px; text-transform: uppercase;
  white-space: nowrap; transition: transform .18s, box-shadow .18s;
}
.area-emergency-band .cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.25); }

.area-services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px; margin: 28px 0 8px;
}
.area-service-card {
  display: block; padding: 22px 22px 20px;
  background: var(--off-white); border: 1px solid var(--light-gray);
  border-left: 3px solid var(--red); border-radius: 6px;
  text-decoration: none; color: var(--charcoal);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.area-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  border-left-color: var(--red-dark);
}
.area-service-card h4 {
  font-family: var(--font-condensed); font-weight: 700;
  font-size: 1.05rem; text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 6px; color: var(--charcoal);
}
.area-service-card p { font-size: .88rem; color: #555; line-height: 1.55; margin: 0; }
.area-service-card .arrow { color: var(--red); font-weight: 700; margin-left: 4px; }

.area-local-callout {
  background: var(--charcoal); color: #fff;
  padding: 36px 32px; border-radius: 8px; margin: 40px 0;
  border-left: 4px solid var(--red);
}
.area-local-callout h3 { color: #fff; font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 12px; }
.area-local-callout p { color: rgba(255,255,255,.82); line-height: 1.7; margin-bottom: 10px; }

.area-cross-links {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin: 32px 0 8px;
}
.area-cross-links a {
  display: block; padding: 18px 22px;
  background: #fff; border: 1px solid var(--light-gray); border-radius: 6px;
  text-decoration: none; color: var(--charcoal);
  transition: border-color .18s, transform .18s;
}
.area-cross-links a:hover { border-color: var(--red); transform: translateY(-2px); }
.area-cross-links .label { font-size: .72rem; color: var(--mid-gray); letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700; margin-bottom: 4px; }
.area-cross-links .name { font-family: var(--font-display); font-size: 1.3rem; color: var(--charcoal); }
.area-cross-links .arrow { color: var(--red); font-weight: 700; }

.area-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin: 28px 0; padding: 24px; background: var(--off-white);
  border-radius: 8px; border-top: 3px solid var(--red);
}
.area-stat { text-align: center; }
.area-stat .num { font-family: var(--font-display); font-size: 2rem; color: var(--red); line-height: 1; }
.area-stat .lbl { font-size: .78rem; color: #555; margin-top: 6px; letter-spacing: .4px; }

@media (max-width: 768px) {
  .area-emergency-band { padding: 22px 20px; }
  .area-emergency-band .headline { font-size: 1.4rem; }
  .area-cross-links { grid-template-columns: 1fr; }
  .area-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ─── COMMERCIAL OPENERS PAGE ─── */
.co-intro { max-width: 880px; margin: 0 auto 40px; text-align: center; }
.co-intro p { font-size: 1.05rem; color: #444; line-height: 1.75; }
.co-intro h2 { margin-bottom: 14px; }

.co-brand-band { display: grid; grid-template-columns: 280px 1fr; align-items: center; gap: 36px; padding: 30px 36px; background: #fff; border: 1px solid var(--light-gray); border-left: 6px solid var(--red); border-radius: 10px; margin: 56px 0 28px; }
.co-brand-band-logo-box { display: flex; align-items: center; justify-content: center; padding: 8px 16px; }
.co-brand-band-logo { height: 54px; width: auto; max-width: 100%; object-fit: contain; display: block; }
.co-brand-band-info { border-left: 1px solid var(--light-gray); padding-left: 36px; }
.co-brand-band-info h2 { font-family: var(--font-display); font-size: 1.7rem; color: var(--charcoal); margin-bottom: 8px; letter-spacing: .5px; }
.co-brand-band-info p { font-size: .98rem; color: #444; line-height: 1.65; margin-bottom: 12px; }
.co-brand-band-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-condensed); font-weight: 700; font-size: .88rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--red); text-decoration: none; border-bottom: 2px solid var(--red); padding-bottom: 2px; transition: color .2s; }
.co-brand-band-link:hover { color: var(--red-dark); }
.co-brand-band-link::after { content: '→'; font-size: 1rem; }
.co-brand-band-logo--manaras { height: 140px; width: 100%; max-width: 260px; }

/* ─── FOOTER (POCO) ─── */
.poco-footer { background: #F0EFED; color: rgba(20,20,20,.78); padding: 64px 24px 28px; border-top: 3px solid var(--red); }
.poco-footer-inner { max-width: 1200px; margin: 0 auto; }
.poco-footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 40px; }
.poco-footer-brand { display: flex; flex-direction: column; gap: 16px; }
.poco-footer-brand img.poco-footer-logo { height: 64px; width: auto; display: block; }
.poco-footer-brand p { font-size: .92rem; line-height: 1.65; color: rgba(20,20,20,.65); max-width: 340px; }
.poco-footer-col h4 { font-family: var(--font-condensed); font-size: .82rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--red); margin-bottom: 22px; font-weight: 700; }
.poco-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.poco-footer-col ul a { color: rgba(20,20,20,.78); text-decoration: none; font-size: .95rem; transition: color .15s; }
.poco-footer-col ul a:hover { color: var(--red); }
.poco-footer-contact { display: flex; flex-direction: column; gap: 14px; font-size: .95rem; }
.poco-footer-contact a.phone { color: var(--red); font-weight: 700; font-size: 1.15rem; text-decoration: none; letter-spacing: .3px; min-height: 44px; display: inline-flex; align-items: center; }
.poco-footer-contact a.phone:hover { color: var(--red-dark); }
.poco-footer-contact a.email { color: rgba(20,20,20,.85); text-decoration: none; word-break: break-all; min-height: 44px; display: inline-flex; align-items: center; }
.poco-footer-contact a.email:hover { color: var(--red); text-decoration: underline; }
.poco-footer-contact .ft-hours, .poco-footer-contact .ft-emergency, .poco-footer-contact .ft-addr { color: rgba(20,20,20,.7); line-height: 1.55; }
.poco-footer-contact .ft-addr { padding-top: 4px; }
.poco-footer-bottom { border-top: 1px solid rgba(20,20,20,.1); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-size: .82rem; color: rgba(20,20,20,.55); }
.poco-footer-bottom .creds { letter-spacing: .5px; }

@media (max-width: 980px) {
  .poco-footer-cols { grid-template-columns: 1fr 1fr; gap: 36px 32px; }
  .poco-footer-brand { grid-column: 1 / -1; max-width: 520px; }
}
@media (max-width: 600px) {
  .poco-footer { padding: 48px 22px 22px; }
  .poco-footer-cols { grid-template-columns: 1fr; gap: 32px; padding-bottom: 28px; }
  .poco-footer-brand { grid-column: auto; }
  .poco-footer-col h4 { margin-bottom: 16px; }
  .poco-footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

.co-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 30px; }
.co-card { background: #fff; border: 1px solid var(--light-gray); border-radius: 12px; padding: 22px; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.co-card:hover { box-shadow: 0 14px 36px rgba(0,0,0,.09); transform: translateY(-2px); }
.co-card-img { width: 100%; height: 220px; background: linear-gradient(180deg,#fafaf8 0%,#ece9e3 100%); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; padding: 16px; }
.co-card-img img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.co-card-model { display: inline-block; font-family: var(--font-condensed); font-weight: 700; font-size: .76rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--red); background: rgba(192,24,26,.08); padding: 5px 11px; border-radius: 3px; margin-bottom: 10px; align-self: flex-start; }
.co-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--charcoal); margin-bottom: 6px; line-height: 1.15; letter-spacing: .5px; }
.co-card-sub { font-size: .87rem; color: var(--mid-gray); margin-bottom: 16px; font-style: italic; line-height: 1.4; }
.co-card-features { list-style: none; padding: 0; margin: 0 0 16px; }
.co-card-features li { position: relative; padding: 5px 0 5px 22px; font-size: .9rem; line-height: 1.5; color: #2a2a2a; }
.co-card-features li::before { content: '✓'; position: absolute; left: 0; top: 5px; color: var(--red); font-weight: 700; font-size: .95rem; }
.co-card-app { font-size: .88rem; color: #444; line-height: 1.6; padding: 14px 16px; background: var(--off-white); border-radius: 6px; margin-bottom: 18px; }
.co-card-app strong { color: var(--red); font-family: var(--font-condensed); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: .76rem; display: block; margin-bottom: 4px; }
.co-card-brochure { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-condensed); font-weight: 700; font-size: .85rem; letter-spacing: 1px; text-transform: uppercase; color: #fff; background: var(--charcoal); padding: 11px 18px; border-radius: 6px; text-decoration: none; margin-top: auto; align-self: flex-start; transition: background .2s; }
.co-card-brochure:hover { background: var(--red); }
.co-card-brochure::before { content: '📄'; font-size: 1rem; }

.co-help-cta { margin: 40px 0 10px; padding: 32px 36px; background: var(--charcoal); color: #fff; border-radius: 12px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.co-help-cta h3 { font-family: var(--font-display); font-size: 1.6rem; color: #fff; margin-bottom: 6px; letter-spacing: .5px; }
.co-help-cta p { font-size: .95rem; color: rgba(255,255,255,.78); line-height: 1.55; max-width: 560px; }
.co-help-cta .btn-primary { background: var(--red); }

@media (max-width: 768px) {
  .co-grid { grid-template-columns: 1fr; gap: 18px; }
  .co-brand-band { grid-template-columns: 1fr; gap: 18px; padding: 22px 22px; margin: 40px 0 22px; }
  .co-brand-band-logo-box { padding: 0; justify-content: flex-start; }
  .co-brand-band-logo { height: 44px; }
  .co-brand-band-logo--manaras { height: 110px; max-width: 220px; }
  .co-brand-band-info { border-left: 0; border-top: 1px solid var(--light-gray); padding: 18px 0 0; }
  .co-card-img { height: 190px; }
  .co-card h3 { font-size: 1.35rem; }
  .co-help-cta { padding: 24px 22px; }
}
@media (max-width: 480px) {
  .co-card-img { height: 170px; padding: 12px; }
  .co-card { padding: 18px; }
}

/* ─── MOBILE OPTIMIZATION + RESPONSIVE FIXES ─── */
/* Prevent any element from causing horizontal page scroll on mobile */
html, body { overflow-x: hidden; max-width: 100%; }
img, video, iframe, svg { max-width: 100%; height: auto; }
.page table { display: block; overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; }

/* Lock body scroll while mobile nav drawer is open */
body.nav-open { overflow: hidden; }

/* Tap-to-dismiss overlay behind the mobile nav drawer */
.nav-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 997; }
@media (max-width: 900px) { body.nav-open .nav-backdrop { display: block; } }

/* hood-grid (used on strata page) had no CSS definition */
.hood-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }
@media (max-width: 900px) { .hood-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .hood-grid { grid-template-columns: 1fr; } }

/* Override inline transform on overhead-page image that breaks scaling on small screens */
@media (max-width: 900px) {
  .oh-split-img[style*="scale"] { transform: none !important; }
  .oh-split-img[style*="min-height"] { min-height: 240px !important; max-height: none !important; aspect-ratio: 16/10; }
}

/* .comm-card icon+text layout never stacked on mobile */
@media (max-width: 600px) {
  .comm-card { grid-template-columns: 1fr; gap: 12px; padding: 22px; }
}

/* .area-stats: collapse 4→2 cols already exists at 768; add single-col for very small phones */
@media (max-width: 380px) {
  .area-stats { grid-template-columns: 1fr; }
}

/* Min tap target for all anchors/buttons on touch devices */
@media (max-width: 900px) {
  a, button, input[type="submit"], .btn-primary, .btn-outline { min-height: 44px; }
  /* But don't force min-height on inline links inside paragraphs */
  p a, li a, .content-inner a { min-height: 0; }
}

/* Prevent form controls from overflowing their column on mobile */
input, select, textarea { max-width: 100%; box-sizing: border-box; }

/* ─── Form submission status (loading / success / error) ─── */
.poco-form-status { margin-top: 16px; padding: 14px 18px; border-radius: 6px; font-size: .95rem; line-height: 1.55; display: none; }
.poco-form-status.loading { display: block; background: rgba(0,0,0,.04); color: #444; border: 1px solid rgba(0,0,0,.1); }
.poco-form-status.success { display: block; background: rgba(50,180,80,.12); border: 1px solid rgba(50,180,80,.5); color: #155724; font-weight: 600; }
.poco-form-status.error { display: block; background: rgba(192,24,26,.08); border: 1px solid rgba(192,24,26,.55); color: #5a0e10; }
.poco-form-status.error strong { color: var(--red-dark); display: block; margin-bottom: 8px; font-size: 1rem; }
.poco-form-status.error a { color: var(--red); text-decoration: underline; font-weight: 700; white-space: nowrap; margin: 0 6px; }
.poco-form-status.error a:hover { color: var(--red-dark); }
/* Forms on dark backgrounds (home page hero card) */
.home-contact-form ~ .poco-form-status,
.home-contact-form .poco-form-status,
form.home-contact-form + .poco-form-status { color: rgba(255,255,255,.9); }
.home-contact-form .poco-form-status.loading { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.85); }
.home-contact-form .poco-form-status.success { background: rgba(80,200,110,.18); border-color: rgba(80,200,110,.5); color: #b7f0c5; }
.home-contact-form .poco-form-status.error { background: rgba(232,32,31,.18); border-color: rgba(232,32,31,.55); color: #ffd6d6; }
.home-contact-form .poco-form-status.error strong { color: #fff; }
.home-contact-form .poco-form-status.error a { color: #fff; }

/* ─── Thank-you page ─── */
.thanks-hero { padding: 140px 24px 90px; background: linear-gradient(180deg, #1A1A1A 0%, #2D2D2D 100%); color: #fff; min-height: 70vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.thanks-hero::before { content: ""; position: absolute; top: -200px; right: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(192,24,26,.25) 0%, rgba(192,24,26,0) 70%); pointer-events: none; }
.thanks-hero::after { content: ""; position: absolute; bottom: -150px; left: -150px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(192,24,26,.15) 0%, rgba(192,24,26,0) 70%); pointer-events: none; }
.thanks-confirm { max-width: 760px; text-align: center; position: relative; z-index: 1; }
.thanks-tick { width: 96px; height: 96px; border-radius: 50%; background: var(--red); color: #fff; font-size: 3.4rem; line-height: 1; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 30px; box-shadow: 0 16px 48px rgba(192,24,26,.5), 0 0 0 12px rgba(192,24,26,.12); animation: thanks-pop .55s cubic-bezier(.18,1.25,.4,1.1); }
@keyframes thanks-pop { 0% { transform: scale(0); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
.thanks-confirm h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 7vw, 4rem); letter-spacing: 1.5px; margin-bottom: 18px; color: #fff; line-height: .98; }
.thanks-confirm .thanks-lede { font-size: 1.12rem; line-height: 1.65; color: rgba(255,255,255,.78); max-width: 580px; margin: 0 auto 40px; }
.thanks-meta { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; max-width: 760px; margin: 0 auto; }
.thanks-meta-item { display: flex; align-items: flex-start; gap: 14px; text-align: left; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 18px 20px; font-size: .92rem; line-height: 1.5; color: rgba(255,255,255,.85); }
.thanks-meta-item .ti-ico { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
.thanks-meta-item strong { color: var(--red-light); font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: 1.3px; font-size: .76rem; display: block; margin-bottom: 4px; font-weight: 700; }
.thanks-meta-item a { color: #fff; text-decoration: none; font-weight: 700; }
.thanks-meta-item a:hover { color: var(--red-light); }

.thanks-upsell { padding: 100px 24px; background: var(--off-white); border-bottom: 1px solid var(--light-gray); }
.thanks-upsell-inner { max-width: 820px; margin: 0 auto; }
.thanks-upsell-inner .section-label { display: inline-block; color: var(--red); font-family: var(--font-condensed); letter-spacing: 2.4px; text-transform: uppercase; font-size: .82rem; font-weight: 700; margin-bottom: 14px; }
.thanks-upsell-inner h2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 2.8rem); letter-spacing: 1px; color: var(--charcoal); margin-bottom: 20px; line-height: 1.08; }
.thanks-upsell-inner > p { font-size: 1.06rem; line-height: 1.7; color: #444; margin-bottom: 28px; max-width: 680px; }
.thanks-upsell-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0 32px; }
.thanks-upsell-grid li { list-style: none; font-size: .98rem; color: var(--charcoal); padding: 14px 18px; background: #fff; border-left: 3px solid var(--red); border-radius: 4px; line-height: 1.45; }
.thanks-upsell-perk { background: #fff; padding: 22px 26px; border-radius: 10px; border: 1px dashed rgba(192,24,26,.35); margin: 24px 0 32px; color: var(--charcoal-mid); font-size: .98rem; line-height: 1.6; }
.thanks-upsell-perk strong { color: var(--red); font-family: var(--font-condensed); text-transform: uppercase; letter-spacing: 1px; font-size: .82rem; display: block; margin-bottom: 6px; font-weight: 700; }
.thanks-upsell-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.thanks-explore { padding: 100px 24px 90px; background: var(--white); }
.thanks-explore-inner { max-width: 1140px; margin: 0 auto; }
.thanks-explore h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--charcoal); margin-bottom: 12px; text-align: center; letter-spacing: 1px; }
.thanks-explore .ex-lede { text-align: center; color: var(--mid-gray); font-size: 1rem; margin-bottom: 44px; max-width: 560px; margin-left: auto; margin-right: auto; }
.thanks-explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.thanks-explore-card { display: block; padding: 28px 26px 32px; background: var(--off-white); border: 1px solid var(--light-gray); border-radius: 10px; text-decoration: none; color: inherit; transition: transform .15s, border-color .15s, box-shadow .15s; position: relative; }
.thanks-explore-card:hover { transform: translateY(-4px); border-color: var(--red); box-shadow: 0 16px 32px rgba(0,0,0,.08); }
.thanks-explore-card .card-tag { font-family: var(--font-condensed); font-size: .72rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 10px; display: block; }
.thanks-explore-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--charcoal); margin-bottom: 10px; letter-spacing: .5px; line-height: 1.1; }
.thanks-explore-card p { font-size: .94rem; line-height: 1.55; color: #555; margin-bottom: 16px; }
.thanks-explore-card .card-link { color: var(--red); font-weight: 700; font-size: .92rem; }
.thanks-explore-card:hover .card-link { color: var(--red-dark); }

@media (max-width: 768px) {
  .thanks-hero { padding: 110px 18px 70px; min-height: auto; }
  .thanks-tick { width: 80px; height: 80px; font-size: 2.8rem; margin-bottom: 22px; }
  .thanks-meta { grid-template-columns: 1fr; gap: 12px; }
  .thanks-upsell, .thanks-explore { padding: 64px 18px; }
  .thanks-upsell-grid { grid-template-columns: 1fr; }
  .thanks-explore-grid { grid-template-columns: 1fr; gap: 14px; }
  .thanks-upsell-actions .btn-primary, .thanks-upsell-actions .btn-outline { width: 100%; justify-content: center; }
}

