/* ============================================================
   CTS - Citi Traffic Solutions
   Main Stylesheet
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --yellow: #F5A800;
  --yellow-hi: #FFCC00;
  --yellow-dark: #D4920A;
  --orange: #FF6B1A;
  --black: #111111;
  --charcoal: #1E1E1E;
  --dark-grey: #2A2A2A;
  --mid-grey: #444444;
  --light-grey: #F4F4F2;
  --warm-grey: #EFEEEA;
  --white: #FFFFFF;
  --text: #222222;
  --text-light: #666666;
  --border: #E0E0E0;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===== UTILITY ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
.yellow { color: var(--yellow); }
.bg-light { background: var(--light-grey); }
.bg-warm { background: var(--warm-grey); }
.bg-white { background: var(--white); }
.bg-yellow { background: var(--yellow); }
.text-center { text-align: center; }

.tag { display: inline-block; background: var(--yellow); color: var(--black); font-family: var(--font-head); font-weight: 800; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; margin-bottom: 16px; }
.tag.dark { background: var(--black); color: var(--yellow); }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow); color: var(--black); font-family: var(--font-head); font-weight: 800; font-size: 15px; letter-spacing: 1px; text-transform: uppercase; padding: 16px 32px; transition: var(--transition); clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%); border: none; cursor: pointer; }
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--yellow); color: var(--yellow); font-family: var(--font-head); font-weight: 800; font-size: 15px; letter-spacing: 1px; text-transform: uppercase; padding: 14px 30px; transition: var(--transition); }
.btn-outline:hover { background: var(--yellow); color: var(--black); }
.btn-outline.dark { color: var(--black); border-color: var(--black); }
.btn-outline.dark:hover { background: var(--black); color: var(--yellow); }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--black); font-family: var(--font-head); font-weight: 800; font-size: 15px; letter-spacing: 1px; text-transform: uppercase; padding: 16px 32px; transition: var(--transition); clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%); }
.btn-white:hover { background: var(--yellow); }
.btn-dark { display: inline-flex; align-items: center; gap: 8px; background: var(--black); color: var(--white); font-family: var(--font-head); font-weight: 800; font-size: 15px; letter-spacing: 1px; text-transform: uppercase; padding: 16px 32px; transition: var(--transition); clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%); }
.btn-dark:hover { background: var(--yellow); color: var(--black); }

/* Headings */
.h1 { font-family: var(--font-head); font-weight: 900; font-size: clamp(48px, 7vw, 96px); line-height: 0.92; letter-spacing: -1px; text-transform: uppercase; }
.h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(36px, 4vw, 60px); line-height: 1; text-transform: uppercase; }
.h3 { font-family: var(--font-head); font-weight: 700; font-size: clamp(24px, 2.5vw, 36px); line-height: 1.1; text-transform: uppercase; }
.h4 { font-family: var(--font-head); font-weight: 700; font-size: 22px; line-height: 1.2; text-transform: uppercase; }
.lead { font-size: 18px; line-height: 1.7; color: var(--text-light); max-width: 640px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Dashed line decorations (signature element) */
.dashed-line { width: 80px; height: 6px; background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 14px, transparent 14px, transparent 22px); margin: 24px 0; }
.dashed-line-sm { width: 48px; height: 4px; background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 10px, transparent 10px, transparent 16px); margin: 12px 0; }

/* ===== TOP BAR ===== */
.topbar { background: var(--black); padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar-info { display: flex; gap: 28px; }
.topbar-info a, .topbar-info span { font-size: 13px; color: #aaa; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.topbar-info a:hover { color: var(--yellow); }
.topbar-info svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-cta { background: var(--yellow); color: var(--black); font-family: var(--font-head); font-weight: 800; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 18px; }
.topbar-cta:hover { background: var(--yellow-hi); }

/* ===== HEADER ===== */
.site-header { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.site-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-svg { display: block; height: auto; }
.logo-text { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--black); line-height: 1.3; }
.logo-text span { color: var(--yellow); }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; height: 100%; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-link { font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--black); padding: 0 16px; height: 100%; display: flex; align-items: center; gap: 5px; transition: var(--transition); white-space: nowrap; }
.nav-link:hover, .nav-item:hover > .nav-link, .nav-item.current > .nav-link { color: var(--yellow); }
.nav-link.has-mega::after { content: '▾'; font-size: 10px; }

/* MEGA MENU */
/* MEGA MENU - Old rules removed; see premium header section below */
.mega-col-title { font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); border-bottom: 2px solid var(--yellow); padding-bottom: 8px; margin-bottom: 14px; }
.mega-links li { margin-bottom: 6px; }
.mega-links a { font-size: 14px; font-weight: 500; color: var(--mid-grey); display: flex; align-items: center; gap: 6px; transition: var(--transition); padding: 4px 0; }
.mega-links a:hover { color: var(--yellow); padding-left: 6px; }
.mega-links a::before { content: '—'; font-size: 10px; color: var(--yellow); flex-shrink: 0; }

.mega-featured { background: var(--black); padding: 24px; color: var(--white); }
.mega-featured .h4 { color: var(--yellow); margin-bottom: 8px; }
.mega-featured p { font-size: 13px; color: #aaa; line-height: 1.5; margin-bottom: 16px; }

/* Header CTA area */
.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone-block { text-align: right; }
.header-phone-label { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-head); font-weight: 700; }
.header-phone { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--black); letter-spacing: -0.5px; line-height: 1.1; }
.header-phone span { color: var(--yellow); }
.header-cta .btn-primary { font-size: 13px; padding: 12px 22px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  background: var(--light-grey);
  padding: 90px 0 110px;
  display: flex;
  align-items: center;
}

/* Grid pattern (default, no image) */
.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(0deg, var(--black) 0, var(--black) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(90deg, var(--black) 0, var(--black) 1px, transparent 1px, transparent 64px);
  pointer-events: none;
}

/* Background image variant */
.hero--has-image { background: var(--black); }
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
/* Readability scrim — protects content visibility */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg,
      rgba(244, 244, 242, 0.97) 0%,
      rgba(244, 244, 242, 0.92) 40%,
      rgba(244, 244, 242, 0.65) 70%,
      rgba(244, 244, 242, 0.30) 100%);
}

.hero__container {
  position: relative;
  z-index: 3;
}
.hero__content {
  max-width: 720px;
}
.hero__content .tag { background: var(--black); color: var(--yellow); }
.hero__headline {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 24px;
}
.hero__headline em { color: var(--yellow); font-style: normal; }
.hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--mid-grey);
  max-width: 580px;
  margin-bottom: 36px;
  font-weight: 500;
}
.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.hero__stat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 42px;
  color: var(--black);
  line-height: 1;
  letter-spacing: -1px;
}
.hero__stat-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-light);
  margin-top: 6px;
}
.hero__road-stripe {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 40px, transparent 40px, transparent 60px);
  z-index: 4;
}

@media (max-width: 768px) {
  .hero { padding: 60px 0 80px; min-height: auto; }
  .hero__headline { font-size: clamp(36px, 9vw, 56px); }
  .hero__stats { gap: 28px; }
  .hero__stat-num { font-size: 32px; }
  .hero__scrim {
    background: linear-gradient(180deg,
      rgba(244, 244, 242, 0.94) 0%,
      rgba(244, 244, 242, 0.85) 100%);
  }
}

/* ===== SERVICE CARD ICON (SVG-based) ===== */
.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--clr-accent-bg, rgba(245, 168, 0, 0.10));
  border: 1px solid rgba(245, 168, 0, 0.18);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-card-icon .service-card-svg,
.service-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--yellow);
  display: block;
}
.service-card-icon .service-card-svg { display: inline-flex; }
.service-card:hover .service-card-icon {
  background: var(--yellow);
  border-color: var(--yellow);
}
.service-card:hover .service-card-icon svg { color: var(--black); }

/* ===== SERVICES SCROLL STRIP ===== */
.services-strip { background: var(--black); padding: 0; overflow: hidden; }
.services-scroll { display: flex; animation: scroll-strip 32s linear infinite; white-space: nowrap; }
.services-scroll:hover { animation-play-state: paused; }
.strip-item { display: inline-flex; align-items: center; gap: 16px; padding: 18px 40px; border-right: 1px solid #333; white-space: nowrap; }
.strip-item span { font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: 1px; text-transform: uppercase; color: var(--white); }
.strip-dot { width: 8px; height: 8px; background: var(--yellow); flex-shrink: 0; transform: rotate(45deg); }
@keyframes scroll-strip { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== LICENSED BUILDERS HIGHLIGHT BAND ===== */
.licensed-band { background: var(--yellow); position: relative; padding: 60px 0; overflow: hidden; }
.licensed-band::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: repeating-linear-gradient(90deg, var(--black) 0, var(--black) 30px, transparent 30px, transparent 50px); }
.licensed-band::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 6px; background: repeating-linear-gradient(90deg, var(--black) 0, var(--black) 30px, transparent 30px, transparent 50px); }
.licensed-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.licensed-band-content { flex: 1; min-width: 300px; }
.licensed-band-badge { background: var(--black); color: var(--yellow); font-family: var(--font-head); font-weight: 800; font-size: 12px; letter-spacing: 2px; padding: 6px 14px; display: inline-block; margin-bottom: 16px; text-transform: uppercase; }
.licensed-band-content h3 { font-family: var(--font-head); font-weight: 900; font-size: clamp(28px, 3.5vw, 44px); line-height: 1; color: var(--black); text-transform: uppercase; }
.licensed-band-side { flex: 1; min-width: 280px; max-width: 420px; }
.licensed-band-side p { font-size: 16px; color: rgba(0,0,0,0.7); margin-bottom: 20px; font-weight: 500; }

/* ===== ABOUT INTRO ===== */
.about-intro { background: var(--white); }
.about-intro .grid-2 { gap: 80px; }
.about-img-stack { position: relative; }
.about-img-main { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-img-fallback { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, #1a1a1a 0%, #333 100%); display: flex; align-items: center; justify-content: center; }
.about-img-fallback-inner { text-align: center; }
.about-img-fallback-inner h3 { font-family: var(--font-head); font-weight: 900; font-size: 48px; color: var(--yellow); opacity: 0.6; }
.about-img-fallback-inner .stripe { height: 6px; background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 24px, transparent 24px, transparent 38px); margin: 16px 0; }
.about-img-fallback-inner p { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: white; opacity: 0.4; letter-spacing: 3px; }
.about-img-badge { position: absolute; bottom: -28px; right: -28px; background: var(--yellow); padding: 28px 32px; z-index: 2; }
.about-img-badge .num { font-family: var(--font-head); font-weight: 900; font-size: 52px; line-height: 1; color: var(--black); }
.about-img-badge .lbl { font-family: var(--font-head); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--black); }
.about-road-accent { height: 6px; width: 100%; background: repeating-linear-gradient(90deg, var(--black) 0, var(--black) 20px, transparent 20px, transparent 32px); margin-top: 8px; }
.checklist { margin-top: 24px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 16px; font-weight: 500; }
.checklist li::before { content: '✓'; background: var(--yellow); color: var(--black); font-weight: 900; font-size: 12px; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }

/* ===== SERVICES GRID ===== */
.services-section { background: var(--light-grey); }
.services-section .section-head { text-align: center; margin-bottom: 60px; }
.services-section .section-head .lead { margin: 0 auto; text-align: center; }
.service-card { background: var(--white); padding: 36px 28px; position: relative; overflow: hidden; transition: var(--transition); border-bottom: 4px solid transparent; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-bottom-color: var(--yellow); }
.service-card-icon { font-size: 40px; margin-bottom: 20px; line-height: 1; }
.service-card-num { position: absolute; top: 24px; right: 24px; font-family: var(--font-head); font-weight: 900; font-size: 64px; color: rgba(0,0,0,0.05); line-height: 1; }
.service-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 22px; text-transform: uppercase; margin-bottom: 12px; }
.service-card h3 a { color: inherit; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }
.service-card a.service-link, .service-card > a { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--yellow); display: inline-flex; align-items: center; gap: 6px; }
.service-card a.service-link::after, .service-card > a::after { content: '→'; }

/* ===== WHY CHOOSE CTS (light background per request) ===== */
.why-section { background: var(--warm-grey); }
.why-section .section-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; background: var(--border); }
.why-item { background: var(--white); padding: 40px 32px; position: relative; overflow: hidden; transition: var(--transition); }
.why-item:hover { background: var(--light-grey); }
.why-item::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.why-item:hover::before { transform: scaleX(1); }
.why-item-num { font-family: var(--font-head); font-weight: 900; font-size: 72px; color: rgba(245, 168, 0, 0.18); line-height: 1; margin-bottom: 16px; }
.why-item h4 { font-family: var(--font-head); font-weight: 800; font-size: 20px; text-transform: uppercase; color: var(--black); margin-bottom: 10px; }
.why-item p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.why-badge { background: var(--black); color: var(--yellow); display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-top: 8px; }

/* ===== INDUSTRIES ===== */
.industries-section { background: var(--white); }
.industries-section .section-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 0; }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 60px; }
.industry-card { position: relative; overflow: hidden; aspect-ratio: 3/2; background: var(--charcoal); }
.industry-card a { position: absolute; inset: 0; z-index: 5; }
.industry-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; transition: var(--transition); }
.industry-card:hover img { opacity: 0.35; transform: scale(1.06); }
.industry-card-label { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; z-index: 2; }
.industry-card-label h4 { font-family: var(--font-head); font-weight: 800; font-size: 18px; text-transform: uppercase; color: var(--white); }
.industry-card-label::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 90px; background: linear-gradient(transparent, rgba(0,0,0,0.85)); z-index: -1; }
.industry-card::after { content: '→'; position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; background: var(--yellow); color: var(--black); font-weight: 900; font-size: 18px; display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); z-index: 3; }
.industry-card:hover::after { opacity: 1; }
.industry-card-bg { width: 100%; height: 100%; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--yellow); position: relative; overflow: hidden; padding: 80px 0; }
.cta-banner-pattern { position: absolute; inset: 0; background-image: repeating-linear-gradient(90deg, rgba(0,0,0,0.06) 0, rgba(0,0,0,0.06) 1px, transparent 1px, transparent 40px); }
.cta-banner-road { position: absolute; bottom: 0; left: 0; right: 0; height: 8px; background: repeating-linear-gradient(90deg, var(--black) 0, var(--black) 30px, transparent 30px, transparent 50px); }
.cta-banner-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner h2 { font-family: var(--font-head); font-weight: 900; font-size: clamp(32px, 4vw, 56px); text-transform: uppercase; color: var(--black); line-height: 0.95; }
.cta-banner p { font-size: 18px; color: rgba(0,0,0,0.65); margin-top: 12px; }
.cta-banner-btns { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ===== PROCESS ===== */
.process-section { background: var(--light-grey); }
.process-section .section-head { text-align: center; margin-bottom: 0; }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 60px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 3px; background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 20px, transparent 20px, transparent 32px); }
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 2; }
.process-step-num { width: 64px; height: 64px; background: var(--black); color: var(--yellow); font-family: var(--font-head); font-weight: 900; font-size: 26px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%); }
.process-step h4 { font-family: var(--font-head); font-weight: 800; font-size: 16px; text-transform: uppercase; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--white); }
.testimonials-section .section-head { text-align: center; margin-bottom: 60px; }
.testimonials-section .dashed-line { margin: 24px auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testi-card { border: 1px solid var(--border); padding: 36px; position: relative; background: var(--white); transition: var(--transition); }
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testi-card::before { content: '"'; font-family: var(--font-head); font-size: 120px; color: var(--yellow); position: absolute; top: -20px; left: 24px; line-height: 1; opacity: 0.5; }
.testi-stars { color: var(--yellow); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 15px; line-height: 1.7; color: var(--text-light); margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; background: var(--black); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--yellow); flex-shrink: 0; }
.testi-name { font-family: var(--font-head); font-weight: 700; font-size: 15px; text-transform: uppercase; }
.testi-role { font-size: 12px; color: var(--text-light); }

/* ===== PROJECTS (light background per request — no black) ===== */
.projects-section { background: var(--light-grey); }
.projects-section .section-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
.project-filters { display: flex; gap: 8px; margin: 32px 0; flex-wrap: wrap; }
.project-filter { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; padding: 10px 20px; background: var(--white); color: var(--text); border: 2px solid var(--border); cursor: pointer; transition: var(--transition); }
.project-filter:hover { border-color: var(--yellow); color: var(--yellow); }
.project-filter.active { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.projects-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 4px; margin-top: 40px; }
.project-item { position: relative; overflow: hidden; background: var(--dark-grey); }
.project-item:first-child { grid-row: span 2; }
.project-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: var(--transition); }
.project-item:hover img { opacity: 0.6; transform: scale(1.05); }
.project-item-bg { width: 100%; height: 100%; }
.project-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(transparent, rgba(0,0,0,0.92)); z-index: 2; }
.project-info h4 { font-family: var(--font-head); font-weight: 800; font-size: 18px; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.project-info span { font-size: 13px; color: var(--yellow); font-weight: 600; }
.project-item a.project-link { position: absolute; inset: 0; z-index: 3; }
.projects-all-btn { text-align: center; margin-top: 40px; }

/* Filterable masonry grid (gallery page) */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--charcoal); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.08); opacity: 0.7; }
.gallery-item-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.85)); z-index: 2; }
.gallery-item-info h4 { font-family: var(--font-head); font-weight: 800; font-size: 16px; text-transform: uppercase; color: var(--white); margin-bottom: 2px; }
.gallery-item-info span { font-size: 12px; color: var(--yellow); }
.gallery-item-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); background: rgba(245,168,0,0.85); z-index: 3; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { background: var(--black); color: var(--yellow); font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; padding: 10px 24px; }
.gallery-item.hidden { display: none; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: var(--charcoal); padding: 80px 0 60px; position: relative; overflow: hidden; }
.page-hero-pattern { position: absolute; inset: 0; opacity: 0.05; background-image: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 2px, transparent 2px, transparent 60px); }
.page-hero-road { position: absolute; bottom: 0; left: 0; right: 0; height: 6px; background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 30px, transparent 30px, transparent 48px); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--font-head); font-weight: 900; font-size: clamp(44px, 6vw, 78px); text-transform: uppercase; color: var(--white); line-height: 0.92; }
.page-hero h1 em { color: var(--yellow); font-style: normal; }
.page-hero p { font-size: 18px; color: #aaa; margin-top: 16px; max-width: 640px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a { font-size: 13px; color: #999; font-weight: 500; transition: var(--transition); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: #777; font-size: 13px; }

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail { padding: 80px 0; background: var(--white); }
.service-detail .grid-2 { gap: 60px; align-items: start; }
.service-list { margin-top: 28px; }
.service-list-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.service-list-item:last-child { border: none; }
.service-list-item-dot { width: 10px; height: 10px; background: var(--yellow); flex-shrink: 0; margin-top: 6px; transform: rotate(45deg); }
.service-list-item span { font-weight: 600; font-size: 15px; }
.service-sidebar { background: var(--light-grey); padding: 32px; border-left: 4px solid var(--yellow); }
.service-sidebar h4 { font-family: var(--font-head); font-weight: 800; font-size: 18px; text-transform: uppercase; margin-bottom: 16px; }
.service-image { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-image-fallback { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, #1a1a00, #444400); display: flex; align-items: center; justify-content: center; }
.service-image-fallback-inner { text-align: center; opacity: 0.5; padding: 20px; }
.service-image-fallback-inner h3 { font-family: var(--font-head); font-weight: 900; font-size: 36px; color: var(--yellow); }
.service-image-fallback-inner .stripe { height: 5px; background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 20px, transparent 20px, transparent 32px); margin: 12px 20px; }
.service-image-fallback-inner p { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: white; letter-spacing: 3px; }

/* Related services */
.related-services { background: var(--light-grey); padding: 80px 0; }
.related-services .grid-3 { margin-top: 40px; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 80px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h3 { font-family: var(--font-head); font-weight: 800; font-size: 30px; text-transform: uppercase; margin-bottom: 16px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--yellow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--black); }
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-text strong { display: block; font-family: var(--font-head); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text p { font-size: 15px; color: var(--text-light); }
.contact-detail-text a:hover { color: var(--yellow); }
.licensed-box { margin-top: 32px; padding: 24px; background: var(--black); }
.licensed-box-label { font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 8px; }
.licensed-box-text { font-size: 14px; color: #aaa; line-height: 1.6; }

/* Quote Form */
.contact-form-wrap { background: var(--light-grey); padding: 40px; }
.contact-form-wrap h4 { font-family: var(--font-head); font-weight: 800; font-size: 24px; text-transform: uppercase; margin-bottom: 24px; }
.cts-quote-form .form-group { margin-bottom: 20px; }
.cts-quote-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cts-quote-form label { display: block; font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; color: var(--text); }
.cts-quote-form input, .cts-quote-form select, .cts-quote-form textarea { width: 100%; padding: 14px 18px; border: 2px solid var(--border); background: var(--white); font-family: var(--font-body); font-size: 15px; color: var(--text); transition: var(--transition); outline: none; border-radius: 0; }
.cts-quote-form input:focus, .cts-quote-form select:focus, .cts-quote-form textarea:focus { border-color: var(--yellow); }
.cts-quote-form textarea { resize: vertical; min-height: 140px; }
.form-submit { width: 100%; justify-content: center; font-size: 16px; padding: 18px; }
.form-response { margin-top: 16px; padding: 14px; font-size: 14px; display: none; }
.form-response.success { display: block; background: #d4edda; color: #155724; border-left: 4px solid #28a745; }
.form-response.error { display: block; background: #f8d7da; color: #721c24; border-left: 4px solid #dc3545; }
.form-disclaimer { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 16px; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* ===== ABOUT PAGE ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.team-card { text-align: center; }
.team-photo { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--charcoal); margin-bottom: 16px; }
.team-card h4 { font-family: var(--font-head); font-weight: 800; font-size: 18px; text-transform: uppercase; }
.team-card span { font-size: 13px; color: var(--yellow); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.value-card { padding: 36px; background: var(--white); border-top: 4px solid var(--yellow); box-shadow: var(--shadow); }
.value-card h4 { font-family: var(--font-head); font-weight: 800; font-size: 20px; text-transform: uppercase; margin: 16px 0 10px; }
.value-icon {
  width: 52px;
  height: 52px;
  background: var(--clr-accent-bg, rgba(245, 168, 0, 0.10));
  border: 1px solid rgba(245, 168, 0, 0.18);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.value-icon svg { width: 24px; height: 24px; color: var(--yellow); }

/* ===== FOOTER (dark — exception per request) ===== */
.site-footer { background: var(--black); color: var(--white); padding: 80px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid #222; }
.footer-brand p { font-size: 14px; color: #888; line-height: 1.7; margin: 20px 0 28px; max-width: 320px; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social {
  width: 38px;
  height: 38px;
  background: #222;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  transition: var(--transition);
}
.footer-social svg { width: 18px; height: 18px; color: inherit; display: block; }
.footer-social:hover { background: var(--yellow); color: var(--black); transform: translateY(-2px); }
.footer-col h5 { font-family: var(--font-head); font-weight: 800; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: 14px; color: #888; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul a:hover { color: var(--yellow); }
.footer-col ul a::before { content: '›'; color: var(--yellow); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--yellow); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 14px; color: #888; line-height: 1.5; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; gap: 24px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: #666; }
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 13px; color: #666; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--yellow); }
.footer-road { height: 6px; background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 30px, transparent 30px, transparent 50px); }

/* ===== PAGE SECTIONS ===== */
.page-section { padding: 80px 0; background: var(--white); }
.page-section.bg-light { background: var(--light-grey); }
.page-section.bg-warm { background: var(--warm-grey); }
.page-section .section-head { margin-bottom: 40px; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; cursor: pointer; }
.faq-q h4 { font-family: var(--font-head); font-weight: 700; font-size: 18px; text-transform: uppercase; }
.faq-q-icon { font-size: 22px; color: var(--yellow); font-weight: 900; transition: var(--transition); flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding-bottom: 24px; font-size: 15px; color: var(--text-light); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; background: transparent; border: none; }
.mobile-menu-toggle span { display: block; width: 26px; height: 2px; background: var(--black); transition: var(--transition); }
.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 1100; overflow-y: auto; padding: 24px; }
.mobile-menu.open { display: block; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 2px solid var(--yellow); margin-bottom: 24px; }
.mobile-menu ul { list-style: none; padding: 0; }
.mobile-menu > ul > li { border-bottom: 1px solid var(--border); }
.mobile-menu > ul > li > a { display: block; padding: 18px 0; font-family: var(--font-head); font-weight: 700; font-size: 18px; text-transform: uppercase; color: var(--black); }
.mobile-menu > ul > li > a:hover { color: var(--yellow); }
.mobile-menu .sub-menu { padding-left: 16px; padding-bottom: 12px; }
.mobile-menu .sub-menu li a { display: block; padding: 8px 0; font-size: 14px; color: var(--text-light); }
.mobile-menu-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu-cta a { justify-content: center; }

/* ===== STICKY MOBILE CALL/QUOTE BAR ===== */
.mobile-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; }
.mobile-sticky-bar a { flex: 1; padding: 16px; text-align: center; font-family: var(--font-head); font-weight: 800; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 8px; }
.mobile-sticky-bar a:first-child { background: var(--black); color: var(--white); }
.mobile-sticky-bar a:last-child { background: var(--yellow); color: var(--black); }

/* ===== SCROLL TO TOP ===== */
.scroll-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; background: var(--yellow); color: var(--black); font-size: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 998; font-weight: 900; transition: var(--transition); opacity: 0; pointer-events: none; clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%); border: none; }
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--black); color: var(--yellow); }

/* ===== COMPLIANCE BADGE STRIP ===== */
.compliance-strip { background: var(--warm-grey); padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.compliance-items { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; align-items: center; }
.compliance-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--mid-grey); }
.compliance-item::before { content: '✓'; color: var(--yellow); font-weight: 900; font-size: 14px; background: var(--black); width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  /* old .mega-menu rules removed */
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .hero-image-wrap { width: 40%; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-pad { padding: 60px 0; }
  .topbar { display: none; }
  .main-nav, .header-cta { display: none; }
  .mobile-menu-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 32px; }
  .hero-image-wrap, .hero-image-overlay { display: none; }
  .hero { min-height: auto; padding: 60px 0 80px; }
  .hero-content { padding: 0; }
  .hero-headline { font-size: clamp(44px, 11vw, 64px); }
  .hero-btns { gap: 12px; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 36px; }
  .services-section .grid-4, .why-grid, .industry-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .projects-grid .project-item:first-child { grid-row: span 1; }
  .project-item { aspect-ratio: 4/3; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .licensed-band-inner { flex-direction: column; align-items: flex-start; }
  .cts-quote-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 56px; }
  .scroll-top { bottom: 70px; right: 16px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
/* ============================================================
   CTS - Premium Header & Mega Menu (Light variant)
   Adapted from the reference. Append to/replace existing header CSS.
============================================================ */

/* ── New CSS variables needed (added to the existing :root) ─ */
:root {
  --font-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --container: 1280px;
  --dur-fast: 0.18s;
  --dur-base: 0.28s;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --clr-accent: #F5A800;
  --clr-accent-hi: #FFCC00;
  --clr-accent-bg: rgba(245, 168, 0, 0.10);
  --clr-secondary: #FF6B1A;
  --clr-white: #FFFFFF;
  --clr-light: #2A2A2A;
  --clr-muted: #888888;
  --clr-black: #111111;
  --clr-charcoal: #1E1E1E;
  --clr-dark: #FAFAF9;
  --clr-mid: #F4F4F2;
  --clr-border: #E4E4E0;
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.10);
}

/* ── Top Bar (charcoal slim strip — kept for contrast) ──── */
.site-topbar {
  background: var(--clr-charcoal);
  border-bottom: 1px solid var(--clr-border);
  padding: 0.55rem 0;
  font-size: 0.8rem;
  color: #aaa;
}
.site-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.topbar-contact { display: flex; align-items: center; gap: var(--space-lg); }
.topbar-contact a {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: #ccc; transition: color var(--dur-base) var(--ease);
}
.topbar-contact a:hover { color: var(--clr-accent); }
.topbar-contact svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-areas {
  display: flex; align-items: center; gap: 0.5rem;
  color: #888; font-size: 0.75rem;
}
.topbar-areas span { color: var(--clr-accent); font-weight: 600; }
.topbar-cta-btn {
  background: var(--clr-accent); color: var(--clr-black);
  font-family: var(--font-head); font-weight: 800;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 16px;
}
.topbar-cta-btn:hover { background: var(--clr-accent-hi); }

@media (max-width: 900px) { .topbar-areas { display: none; } }

/* ── Main Header (LIGHT) ────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #FFFFFF;
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-bottom-color: transparent;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: var(--space-lg);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Logo ──────────────────────────────────────────────── */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo svg,
.site-logo img,
.site-logo .custom-logo-link img,
.custom-logo {
  height: 70px !important;
  width: auto !important;
  max-width: 260px;
  object-fit: contain;
  display: block;
}
.site-logo .custom-logo-link { display: block; line-height: 0; }
.site-logo__text { display: flex; flex-direction: column; line-height: 1; }
.site-logo__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-black);
}
.site-logo__name em { font-style: normal; color: var(--clr-accent); }
.site-logo__tagline {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-muted);
  font-family: var(--font-mono);
  margin-top: 2px;
}

/* ── Primary Nav ───────────────────────────────────────── */
.primary-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.primary-nav__menu {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
}
.primary-nav__item { position: relative; }
.primary-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.7rem 1.05rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-light);
  transition: color var(--dur-base) var(--ease);
  position: relative;
  text-decoration: none;
}
.primary-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1.05rem;
  right: 1.05rem;
  height: 2px;
  background: var(--clr-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease);
}
.primary-nav__link:hover,
.primary-nav__link.is-active,
.primary-nav__item:hover > .primary-nav__link { color: var(--clr-black); }
.primary-nav__link:hover::after,
.primary-nav__link.is-active::after,
.primary-nav__item:hover > .primary-nav__link::after { transform: scaleX(1); }
.primary-nav__link .chevron {
  width: 11px; height: 11px;
  transition: transform var(--dur-base) var(--ease);
}
.primary-nav__item:hover .chevron { transform: rotate(180deg); }

/* ── Mega Menu (JS-controlled) ──────────────────────────── */
/* Parent stays static so panel can span full viewport width */
.primary-nav__item--mega { position: static; }

/* The panel itself */
.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #FFFFFF;
  border-top: 3px solid var(--clr-accent);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.22s var(--ease),
              visibility 0s linear 0.22s,
              transform 0.22s var(--ease);
  pointer-events: none;
}

/* JS adds .is-open class — this is the single source of truth */
.primary-nav__item--mega.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.22s var(--ease),
              visibility 0s linear 0s,
              transform 0.22s var(--ease);
}

/* When open, keep link in active state */
.primary-nav__item--mega.is-open > .primary-nav__link { color: var(--clr-black); }
.primary-nav__item--mega.is-open > .primary-nav__link::after { transform: scaleX(1); }
.primary-nav__item--mega.is-open .chevron { transform: rotate(180deg); }

.mega-menu__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-xl) clamp(1rem, 5vw, 3rem);
  display: grid;
  gap: var(--space-xl);
}
.mega-menu__inner--services { grid-template-columns: repeat(3, 1fr) 280px; }
.mega-menu__inner--industries { grid-template-columns: repeat(4, 1fr); }
.mega-menu__inner--about { grid-template-columns: 1fr 1fr 280px; }

.mega-col__heading {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: var(--space-md);
}

/* ── Icon-led link card ─────────────────────────────────── */
.mega-link {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
  border: 1px solid transparent;
  margin-bottom: 4px;
}
.mega-link:hover {
  background: var(--clr-dark);
  border-color: var(--clr-border);
}
.mega-link__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--clr-accent-bg);
  border: 1px solid rgba(245, 168, 0, 0.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast) var(--ease);
}
.mega-link__icon .mega-link__svg,
.mega-link__icon svg {
  width: 18px;
  height: 18px;
  color: var(--clr-accent);
  transition: color var(--dur-fast) var(--ease);
  display: block;
}
.mega-link__icon .mega-link__svg { display: inline-flex; }
.mega-link:hover .mega-link__icon { background: var(--clr-accent); border-color: var(--clr-accent); }
.mega-link:hover .mega-link__icon svg { color: var(--clr-black); }
.mega-link__text { display: flex; flex-direction: column; gap: 0.15rem; }
.mega-link__title {
  font-family: var(--font-head);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-black);
  line-height: 1.2;
  transition: color var(--dur-fast) var(--ease);
}
.mega-link:hover .mega-link__title { color: var(--clr-accent); }
.mega-link__desc {
  font-size: 0.76rem;
  color: var(--clr-muted);
  line-height: 1.5;
}

/* ── Featured CTA panel (right column of Services mega) ─── */
.mega-featured {
  background: var(--clr-charcoal);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
  overflow: hidden;
  color: var(--clr-white);
}
.mega-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-secondary));
}
.mega-featured__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-accent);
}
.mega-featured__title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 1.2;
}
.mega-featured__desc {
  font-size: 0.82rem;
  color: #aaa;
  line-height: 1.6;
  flex: 1;
}
.mega-featured__stats {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-sm);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
}
.mega-featured__stat { display: flex; flex-direction: column; gap: 0.1rem; }
.mega-featured__stat-val {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--clr-accent);
  line-height: 1;
}
.mega-featured__stat-label {
  font-size: 0.62rem;
  color: #888;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mega-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-accent);
  color: var(--clr-black);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  align-self: flex-start;
  transition: background var(--dur-fast) var(--ease);
}
.mega-featured__cta:hover { background: var(--clr-accent-hi); }

/* ── Industry card (used in industries mega) ────────────── */
.mega-industry { display: flex; flex-direction: column; gap: var(--space-sm); }
.mega-industry-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all var(--dur-fast) var(--ease);
}
.mega-industry-link:hover { background: var(--clr-dark); border-color: var(--clr-border); }
.mega-industry-link__icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: var(--clr-accent-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast) var(--ease);
}
.mega-industry-link__icon .mega-link__svg,
.mega-industry-link__icon svg {
  width: 16px;
  height: 16px;
  color: var(--clr-accent);
  display: block;
}
.mega-industry-link__icon .mega-link__svg { display: inline-flex; }
.mega-industry-link:hover .mega-industry-link__icon { background: var(--clr-accent); }
.mega-industry-link:hover .mega-industry-link__icon svg { color: var(--clr-black); }
.mega-industry-link__name {
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-light);
  transition: color var(--dur-fast) var(--ease);
}
.mega-industry-link:hover .mega-industry-link__name { color: var(--clr-black); }

/* ── Simple dropdown (non-mega menu items) ──────────────── */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 240px;
  background: #FFFFFF;
  border: 1px solid var(--clr-border);
  border-top: 2px solid var(--clr-accent);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--dur-base) var(--ease);
  padding: var(--space-sm) 0;
  z-index: 100;
  pointer-events: none;
  list-style: none;
  margin: 0;
}
.primary-nav__item:hover .nav-dropdown,
.primary-nav__item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  color: var(--clr-light);
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none;
}
.nav-dropdown a:hover {
  background: var(--clr-accent-bg);
  color: var(--clr-accent);
  padding-left: 1.5rem;
}

/* ── Header Actions ─────────────────────────────────────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--clr-black);
  transition: color var(--dur-base) var(--ease);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
}
.header-phone svg { width: 16px; height: 16px; color: var(--clr-accent); }
.header-phone:hover { color: var(--clr-accent); }
.header-cta-btn {
  background: var(--clr-accent);
  color: var(--clr-black);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 1.4rem;
  text-decoration: none;
  transition: all var(--dur-fast) var(--ease);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}
.header-cta-btn:hover { background: var(--clr-accent-hi); transform: translateY(-1px); }

/* ── Hamburger ──────────────────────────────────────────── */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--clr-black);
  background: transparent;
  border: 1px solid var(--clr-border);
  transition: all var(--dur-base) var(--ease);
  cursor: pointer;
}
.nav-toggle:hover { background: var(--clr-accent-bg); border-color: var(--clr-accent); color: var(--clr-accent); }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.is-open .icon-menu { display: none; }
.nav-toggle.is-open .icon-close { display: block; }

/* ── Mobile Menu (slide-in from right) ──────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #FFFFFF;
  z-index: 800;
  overflow-y: auto;
  padding: 100px 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}
.mobile-menu.is-open { display: block; transform: translateX(0); }
.mobile-menu__nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu__nav li { border-bottom: 1px solid var(--clr-border); }
.mobile-menu__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-black);
  transition: color var(--dur-base) var(--ease);
  text-decoration: none;
}
.mobile-menu__nav a:hover { color: var(--clr-accent); }
.mobile-menu__nav .sub-menu { padding-left: 1rem; padding-bottom: 0.5rem; }
.mobile-menu__nav .sub-menu a {
  font-size: 0.95rem;
  padding: 0.5rem 0;
  color: var(--clr-light);
  font-weight: 500;
  border-bottom: none;
}
.mobile-menu__cta { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-menu__contact { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.6rem; padding-top: 1.5rem; border-top: 1px solid var(--clr-border); }
.mobile-menu__contact a { display: flex; align-items: center; gap: 0.6rem; color: var(--clr-light); font-size: 0.9rem; text-decoration: none; }
.mobile-menu__contact svg { width: 16px; height: 16px; color: var(--clr-accent); }

@media (max-width: 1060px) {
  .primary-nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 480px) {
  .site-header__inner { height: 80px; }
  .site-logo svg,
  .site-logo img,
  .site-logo .custom-logo {
    height: 56px !important;
    max-width: 200px !important;
  }
  .site-logo__tagline { display: none; }
  .header-cta-btn { font-size: 0.7rem; padding: 0.6rem 1rem; }
}

/* Responsive mega menu — collapses cleanly */
@media (max-width: 1100px) {
  .mega-menu__inner--services,
  .mega-menu__inner--industries,
  .mega-menu__inner--about { grid-template-columns: 1fr 1fr; }
  .mega-menu__inner--services .mega-featured,
  .mega-menu__inner--about .mega-featured { grid-column: 1 / -1; }
}

/* ── Animated road stripe under header ──────────────────── */
.header-stripe {
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--clr-accent) 0px,
    var(--clr-accent) 22px,
    transparent 22px,
    transparent 36px
  );
  animation: striped-move 1.4s linear infinite;
  background-size: 36px 4px;
}
@keyframes striped-move {
  0%   { background-position: 0 0; }
  100% { background-position: 36px 0; }
}

/* ============================================================
   SERVICE PAGE - PREMIUM HERO + COMPLIANCE + FAQ
============================================================ */

/* ── Service Hero ──────────────────────────────────────── */
.service-hero {
  position: relative;
  overflow: hidden;
  background: var(--light-grey);
  padding: 60px 0 80px;
  min-height: 460px;
  display: flex;
  align-items: center;
}
.service-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.service-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg,
      rgba(244,244,242,0.97) 0%,
      rgba(244,244,242,0.92) 50%,
      rgba(244,244,242,0.55) 100%);
}
.service-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(0deg, var(--black) 0, var(--black) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(90deg, var(--black) 0, var(--black) 1px, transparent 1px, transparent 64px);
}
.service-hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
}
.service-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: flex-end;
  margin-top: 32px;
}
.service-hero__iconwrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.service-hero__icon {
  width: 48px;
  height: 48px;
  background: var(--clr-accent-bg, rgba(245, 168, 0, 0.10));
  border: 1px solid rgba(245, 168, 0, 0.18);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-hero__icon svg { width: 24px; height: 24px; color: var(--yellow); }
.service-hero__cat {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}
.service-hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 18px;
  max-width: 760px;
}
.service-hero__lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--mid-grey);
  max-width: 640px;
  margin-bottom: 28px;
  font-weight: 500;
}
.service-hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  padding: 8px 14px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  border-radius: 4px;
  backdrop-filter: blur(8px);
}
.service-badge svg { width: 14px; height: 14px; color: var(--yellow); }
.service-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.service-hero__cta .btn-outline { display: inline-flex; align-items: center; gap: 8px; }
.service-hero__cta .btn-outline svg { width: 16px; height: 16px; }

/* 15+ years badge */
.service-hero__years {
  background: var(--yellow);
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.service-hero__years .num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  color: var(--black);
}
.service-hero__years .lbl {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--black);
}
.service-hero__road {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 30px, transparent 30px, transparent 48px);
  z-index: 4;
}

@media (max-width: 768px) {
  .service-hero__inner { grid-template-columns: 1fr; }
  .service-hero__years { align-self: flex-start; }
}

/* ── Service Body ──────────────────────────────────────── */
.service-body { padding: 80px 0; background: var(--white); }
.service-body__grid { gap: 60px; align-items: flex-start; }
.service-body__content { font-size: 16px; line-height: 1.75; color: var(--text); margin-top: 24px; }
.service-body__content p { margin-bottom: 16px; }
.service-body__cta { margin-top: 32px; }

/* Linked items style */
.service-list-item-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
  border-bottom: 1px dotted var(--yellow);
  transition: var(--transition);
}
.service-list-item-link:hover { color: var(--yellow); border-bottom-style: solid; }

/* Sidebar variants */
.service-body__side { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 110px; }
.service-sidebar--dark {
  background: var(--black);
  border-left: 4px solid var(--yellow);
  color: var(--white);
}
.service-sidebar--dark .tag.dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--yellow);
}

/* ── Compliance Standards Grid ─────────────────────────── */
.service-compliance {
  background: var(--warm-grey);
  padding: 80px 0;
}
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 50px;
}
.compliance-card {
  background: var(--white);
  padding: 28px 26px;
  border-top: 3px solid var(--yellow);
  position: relative;
  transition: var(--transition);
}
.compliance-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.compliance-card__code {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.compliance-card__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}
.compliance-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}

/* ── Service FAQ ────────────────────────────────────────── */
.service-faq { padding: 80px 0; background: var(--white); }
.service-faq .faq-wrap { margin-top: 40px; }

/* ============================================================
   COMPREHENSIVE MOBILE FIXES
   ============================================================ */

/* ── Global mobile baseline ─────────────────────────────── */
@media (max-width: 1060px) {
  /* Hide desktop nav, show hamburger */
  .primary-nav,
  .header-phone,
  .header-cta-btn { display: none !important; }
  .nav-toggle { display: flex !important; }
  .header-actions { gap: 0; }
}

@media (max-width: 900px) {
  .site-topbar .topbar-areas { display: none; }
  .site-topbar__inner { gap: 12px; }
  .topbar-contact { gap: 16px; flex-wrap: wrap; }
  .topbar-contact a { font-size: 12px; }
  .topbar-cta-btn { font-size: 11px; padding: 5px 12px; }
}

@media (max-width: 768px) {
  /* Container padding */
  .container { padding: 0 16px !important; }

  /* Topbar — hide email on small screens */
  .topbar-contact a:not(:first-child) { display: none; }
  .topbar-cta-btn { display: none; }
  .site-topbar { padding: 6px 0; }

  /* Header */
  .site-header__inner { height: 84px; padding: 0 16px; }
  .site-logo svg,
  .site-logo img,
  .site-logo .custom-logo { height: 50px !important; max-width: 180px !important; }
  .site-logo__text { display: none; }

  /* Section padding */
  .section-pad { padding: 50px 0 !important; }
  .page-section { padding: 50px 0 !important; }

  /* Hero adjustments */
  .hero { padding: 50px 0 70px; min-height: auto !important; }
  .hero__headline { font-size: clamp(32px, 8vw, 48px) !important; letter-spacing: -0.5px; }
  .hero__sub { font-size: 16px; margin-bottom: 28px; }
  .hero__btns { gap: 10px; flex-direction: column; align-items: stretch; }
  .hero__btns .btn-primary,
  .hero__btns .btn-outline { justify-content: center; width: 100%; }
  .hero__stats { gap: 24px; }
  .hero__stat-num { font-size: 30px; }
  .hero__stat-label { font-size: 11px; }
  .hero__scrim {
    background: linear-gradient(180deg,
      rgba(244,244,242,0.95) 0%,
      rgba(244,244,242,0.85) 70%,
      rgba(244,244,242,0.92) 100%);
  }

  /* Headings */
  .h1 { font-size: clamp(34px, 8vw, 48px) !important; }
  .h2 { font-size: clamp(28px, 7vw, 40px) !important; }
  .h3 { font-size: clamp(22px, 5vw, 30px) !important; }

  /* All grids collapse to single column */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Section heads — stop them being flex with buttons */
  .why-section .section-head,
  .industries-section .section-head,
  .projects-section .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* Licensed band */
  .licensed-band { padding: 40px 0; }
  .licensed-band-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .licensed-band-content h3 { font-size: 26px !important; }

  /* About intro image stack */
  .about-img-stack { margin-bottom: 40px; }
  .about-img-badge {
    bottom: -20px !important;
    right: 12px !important;
    padding: 18px 22px !important;
  }
  .about-img-badge .num { font-size: 40px !important; }

  /* Why section grid */
  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 1px;
  }
  .why-item { padding: 28px 22px; }

  /* Industries — 2 columns on mobile */
  .industry-grid { grid-template-columns: 1fr 1fr !important; gap: 8px; }
  .industry-card { aspect-ratio: 1/1; }
  .industry-card-label { padding: 12px; }
  .industry-card-label h4 { font-size: 14px !important; }
  .industry-card-label p { display: none; }

  /* Services strip — slow on mobile to be readable */
  .strip-item { padding: 14px 24px; }
  .strip-item span { font-size: 13px; }

  /* CTA banner */
  .cta-banner { padding: 50px 0; }
  .cta-banner-inner { flex-direction: column; text-align: center; gap: 20px; }
  .cta-banner h2 { font-size: 28px !important; }
  .cta-banner-btns { flex-direction: column; width: 100%; }
  .cta-banner-btns a { justify-content: center; }

  /* Process steps */
  .process-steps { grid-template-columns: 1fr !important; gap: 24px; }
  .process-steps::before { display: none; }

  /* Projects grid — single column */
  .projects-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 4px;
  }
  .projects-grid .project-item:first-child { grid-row: span 1 !important; }
  .project-item { aspect-ratio: 4/3; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr !important; }
  .testi-card { padding: 28px 22px; }

  /* Compliance strip */
  .compliance-strip { padding: 16px 0; }
  .compliance-items { gap: 12px 20px; justify-content: flex-start; }
  .compliance-item { font-size: 11px; letter-spacing: 0.6px; }

  /* Contact section */
  .contact-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .contact-form-wrap { padding: 28px 22px; }
  .cts-quote-form .form-row { grid-template-columns: 1fr !important; gap: 0; }

  /* Service hero */
  .service-hero { padding: 40px 0 60px; min-height: auto; }
  .service-hero__inner { grid-template-columns: 1fr !important; gap: 24px; }
  .service-hero__title { font-size: clamp(32px, 7vw, 52px) !important; }
  .service-hero__lead { font-size: 16px; }
  .service-hero__badges { gap: 8px; }
  .service-badge { font-size: 11px; padding: 6px 10px; }
  .service-hero__cta { flex-direction: column; gap: 10px; }
  .service-hero__cta .btn-primary,
  .service-hero__cta .btn-outline { justify-content: center; }
  .service-hero__years {
    align-self: flex-start;
    padding: 18px 22px;
    flex-direction: row;
    gap: 14px;
    align-items: center;
  }
  .service-hero__years .num { font-size: 36px; }

  /* Service body */
  .service-body { padding: 50px 0; }
  .service-body__grid { gap: 32px; }
  .service-body__side { position: static !important; }
  .service-sidebar { padding: 22px; }

  /* Service compliance grid */
  .service-compliance { padding: 50px 0; }
  .compliance-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
    margin-top: 32px;
  }
  .compliance-card { padding: 22px 20px; }

  /* Service FAQ */
  .service-faq { padding: 50px 0; }
  .faq-q { padding: 18px 0; }
  .faq-q h4 { font-size: 16px; line-height: 1.3; padding-right: 20px; }

  /* Mega menu — full screen mobile */
  .mega-menu { display: none !important; }

  /* Page hero (inner pages) */
  .page-hero { padding: 50px 0 40px; }
  .page-hero h1 { font-size: clamp(34px, 8vw, 56px) !important; }
  .page-hero p { font-size: 16px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .gallery-item { aspect-ratio: 4/3; }

  /* Team */
  .team-grid { grid-template-columns: 1fr 1fr !important; gap: 16px; }
  .values-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .value-card { padding: 24px; }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding-bottom: 32px;
  }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Sticky mobile bar already exists - make sure visible */
  .mobile-sticky-bar { display: flex !important; }
  body { padding-bottom: 56px; }

  /* Scroll top button */
  .scroll-top { bottom: 70px !important; right: 14px !important; width: 42px; height: 42px; }

  /* Mega link card on mobile (only relevant if mega menu somehow shows) */
  .mega-link { padding: 10px; }
  .mega-link__icon { width: 32px; height: 32px; }
  .mega-link__title { font-size: 14px; }
  .mega-link__desc { font-size: 12px; }

  /* Buttons — easier touch targets */
  .btn-primary,
  .btn-outline,
  .btn-white,
  .btn-dark { padding: 14px 24px; font-size: 14px; }

  /* Tags */
  .tag { font-size: 10px; padding: 4px 10px; letter-spacing: 1.5px; }

  /* Service card */
  .service-card { padding: 28px 22px; }
  .service-card-icon { width: 48px; height: 48px; margin-bottom: 18px; }
  .service-card h3 { font-size: 20px; }

  /* Service list items */
  .service-list-item { padding: 10px 0; }
  .service-list-item span,
  .service-list-item-link { font-size: 14px; }

  /* Mobile menu links larger */
  .mobile-menu__nav a { font-size: 1.3rem !important; padding: 14px 0 !important; }
  .mobile-menu { padding: 80px 20px 100px !important; }
}

/* ── Very small phones (under 380px) ────────────────────── */
@media (max-width: 380px) {
  .industry-grid { grid-template-columns: 1fr !important; }
  .hero__stats { gap: 18px; }
  .hero__stat-num { font-size: 26px; }
  .compliance-items { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-socials { justify-content: flex-start; }
}

/* ── Tablet (768-1060) ──────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1060px) {
  .grid-4 { grid-template-columns: 1fr 1fr !important; }
  .why-grid { grid-template-columns: 1fr 1fr !important; }
  .industry-grid { grid-template-columns: 1fr 1fr !important; }
  .footer-top { grid-template-columns: 1fr 1fr !important; }
  .testi-grid { grid-template-columns: 1fr !important; }
  .compliance-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ============================================================
   MOBILE - FINAL OVERRIDE LAYER (highest specificity)
   ============================================================ */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; max-width: 100vw; }
  body * { max-width: 100%; }
  img, video, iframe { max-width: 100% !important; height: auto !important; }

  /* Force single column on any grid */
  .grid-2, .grid-3, .grid-4,
  .why-grid, .industry-grid,
  .projects-grid, .testi-grid,
  .compliance-grid, .gallery-grid,
  .team-grid, .values-grid,
  .footer-top, .contact-grid,
  .process-steps {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }
  .industry-grid { grid-template-columns: 1fr 1fr !important; }
  .team-grid { grid-template-columns: 1fr 1fr !important; }

  /* Container */
  .container { padding-left: 16px !important; padding-right: 16px !important; }

  /* Header */
  .site-header__inner { padding: 0 16px !important; height: 80px !important; }
  .primary-nav, .header-phone, .header-cta-btn { display: none !important; }
  .nav-toggle { display: flex !important; }

  /* Hero */
  .hero { padding: 40px 0 60px !important; min-height: auto !important; }
  .hero__headline { font-size: 38px !important; line-height: 1 !important; }
  .hero__sub { font-size: 15px !important; }
  .hero__btns { flex-direction: column !important; gap: 8px !important; }
  .hero__btns > * { width: 100% !important; justify-content: center !important; }
  .hero__stats { gap: 20px !important; }

  /* All headings smaller */
  .h1 { font-size: 38px !important; }
  .h2 { font-size: 30px !important; }
  .h3 { font-size: 24px !important; }

  /* Service hero */
  .service-hero__inner { grid-template-columns: 1fr !important; }
  .service-hero__title { font-size: 32px !important; }
  .service-hero__cta { flex-direction: column !important; }
  .service-hero__cta > * { width: 100% !important; justify-content: center !important; }
  .service-hero__years { align-self: flex-start; }

  /* Mega menu — never show on mobile */
  .mega-menu { display: none !important; }

  /* Sticky bar always visible */
  .mobile-sticky-bar { display: flex !important; }
  body { padding-bottom: 56px !important; }
}
