/* =============================================
   NGAMLA TWM SECURITY - MAIN STYLESHEET
   ============================================= */

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

/* ---- CSS VARIABLES ---- */
:root {
  --orange: #E8651A;
  --orange-light: #FF7A2F;
  --orange-dark: #C04E0A;
  --orange-glow: rgba(232, 101, 26, 0.15);
  --black: #080808;
  --charcoal: #111111;
  --charcoal-2: #181818;
  --charcoal-3: #222222;
  --charcoal-4: #2a2a2a;
  --border: rgba(255,255,255,0.07);
  --border-orange: rgba(232, 101, 26, 0.3);
  --white: #ffffff;
  --grey-1: #f5f5f5;
  --grey-2: #e0e0e0;
  --grey-3: #aaaaaa;
  --grey-4: #666666;
  --font-display: 'Oswald', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --nav-height: 80px;
  --section-pad: clamp(60px, 8vw, 120px);
  --container-width: 1280px;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 600; }
p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--grey-3); line-height: 1.75; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ---- ACCENT & UTILITY ---- */
.text-orange { color: var(--orange); }
.text-grey { color: var(--grey-3); }
.font-display { font-family: var(--font-display); }
.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--orange);
}
.divider {
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 20px 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}
.btn-primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,101,26,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-primary {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-3);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 999;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-3);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--orange); }
.mobile-nav .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ---- HERO ---- */
.hero {
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

/* ── Video: true fullscreen ── */
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ── Overlay: readable left side, camera visible right ── */
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.62) 45%,
    rgba(0, 0, 0, 0.28) 75%,
    rgba(0, 0, 0, 0.08) 100%
  );
}
/* Bottom vignette — blends hero into page below */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(8,8,8,0.88) 0%, transparent 100%);
}

/* ── Subtle dot-grid texture ── */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* ── Outer content wrapper: full height, scrolls content from top ── */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  /* Top: clear the nav. Bottom: room before page edge */
  padding-top: calc(var(--nav-height) + 52px);
  padding-bottom: 64px;
  display: flex;
  align-items: flex-start;
}

/* ── Inner column: all hero text stacked ── */
.hero-inner {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* ── Headline ── */
.hero-title {
  /* Use Montserrat as requested via Google Fonts fallback chain */
  font-family: 'Oswald', 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 8vw, 6.8rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title .line-white  {
  display: block;
  color: var(--white);
}
.hero-title .line-orange {
  display: block;
  color: var(--orange);
  /* Slight negative margin tightens the three lines together */
  margin-top: -2px;
}
.hero-title .line-outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.20);
  margin-top: -2px;
}

/* ── Paragraph ── */
.hero-desc {
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
  line-height: 1.72;
  margin-bottom: 28px;
}

/* ── Stats: 2×2 grid, clean and balanced ── */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  padding-top: 22px;
  padding-bottom: 40px;         /* ← 40px gap between stats and CTA button */
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  width: 100%;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 0.02em;
}
.hero-stat-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.3;
}

/* ── CTA wrapper ── */
.hero-actions {
  display: flex;
  align-items: center;
}

/* ── Single CTA button ── */
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 40px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}
/* Shine sweep */
.btn-hero-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.48s ease;
  pointer-events: none;
}
.btn-hero-cta:hover::before { left: 160%; }
.btn-hero-cta:hover {
  background: #D45510;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(232, 101, 26, 0.52);
}
.btn-hero-arrow {
  font-size: 1.05rem;
  font-weight: 700;
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.28s ease;
  line-height: 1;
}
.btn-hero-cta:hover .btn-hero-arrow { transform: translateX(6px); }

/* ---- SECTIONS ---- */
.section { padding: var(--section-pad) 0; }
.section-dark { background: var(--charcoal); }
.section-darker { background: var(--charcoal-2); }
.section-header { margin-bottom: clamp(40px, 5vw, 70px); }
.section-header.centered { text-align: center; }
.section-header.centered .divider { margin: 20px auto; }

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 1.3rem;
}
.trust-item-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 4px;
}
.trust-item-text {
  font-size: 0.82rem;
  color: var(--grey-4);
  line-height: 1.5;
}

/* ---- SERVICE CARDS ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}
.service-card {
  background: var(--charcoal-2);
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--orange);
  transition: height 0.4s ease;
}
.service-card:hover { background: var(--charcoal-3); transform: translateY(-4px); }
.service-card:hover::before { height: 100%; }
.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 24px;
}
.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card-text {
  font-size: 0.9rem;
  color: var(--grey-4);
  line-height: 1.65;
}

/* ---- PROCESS TIMELINE ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.process-step-num {
  width: 72px;
  height: 72px;
  background: var(--charcoal-2);
  border: 2px solid var(--border-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 20px;
  transition: var(--transition);
  flex-shrink: 0;
}
.process-step:hover .process-step-num {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 30px rgba(232,101,26,0.4);
}
.process-step-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.process-step-text {
  font-size: 0.82rem;
  color: var(--grey-4);
  line-height: 1.5;
}

/* ---- SECTORS ---- */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.sector-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.sector-card:hover {
  border-color: var(--border-orange);
  background: var(--charcoal-3);
  transform: translateY(-3px);
}
.sector-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.sector-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}

/* ---- FEATURED PROJECT ---- */
.project-featured {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.project-featured-img {
  background: linear-gradient(135deg, var(--charcoal-3) 0%, #1a1510 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.project-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--grey-4);
  text-align: center;
  padding: 40px;
}
.project-img-placeholder .icon { font-size: 4rem; color: var(--orange); opacity: 0.4; }
.project-img-placeholder p { font-size: 0.85rem; }
.project-featured-content { padding: clamp(30px, 5vw, 60px); }
.project-tag {
  display: inline-block;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ---- COMPLIANCE BADGES ---- */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.compliance-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}
.compliance-card:hover {
  border-color: var(--border-orange);
}
.compliance-org {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.compliance-label {
  font-size: 0.75rem;
  color: var(--grey-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.compliance-num {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--grey-3);
  font-weight: 500;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(232,101,26,0.06) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--charcoal-2);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-logo-wrap { margin-bottom: 20px; }
.footer-desc {
  font-size: 0.9rem;
  color: var(--grey-4);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--grey-3);
  margin-bottom: 10px;
}
.footer-contact-item .icon { color: var(--orange); font-size: 1rem; }
.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--grey-4);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }
.footer-reg-item {
  font-size: 0.82rem;
  color: var(--grey-4);
  margin-bottom: 8px;
}
.footer-reg-item strong { color: var(--grey-3); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--grey-4);
}
.footer-copy a { color: var(--orange); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse 70% 80% at 80% 40%, rgba(232,101,26,0.06) 0%, transparent 60%),
    var(--charcoal);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.page-hero-desc {
  max-width: 600px;
  margin-top: 16px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--grey-4);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb-sep { color: var(--grey-4); }

/* ---- ABOUT PAGE ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2px;
}
.value-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  padding: 36px 30px;
  transition: var(--transition);
}
.value-card:hover { background: var(--charcoal-3); border-color: var(--border-orange); }
.value-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange-glow);
  -webkit-text-stroke: 1px var(--border-orange);
  color: transparent;
  line-height: 1;
  margin-bottom: 16px;
}
.value-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.leadership-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}
.leader-avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}
.leader-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
}
.leader-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.quality-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
}
.quality-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.quality-card:hover::after { transform: scaleX(1); }

/* ---- SERVICES PAGE ---- */
.service-detail {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.capability-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.capability-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--grey-3);
}
.capability-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.system-capabilities-box {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.system-capabilities-box h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cap-item {
  background: var(--charcoal-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.cap-icon { font-size: 1.8rem; margin-bottom: 10px; }
.cap-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

/* ---- PROJECTS PAGE ---- */
.project-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.project-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.project-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--charcoal-3), #1a1510);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--orange);
  opacity: 0.4;
  position: relative;
}
.project-scope {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.scope-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.scope-item:last-child { border-bottom: none; }
.scope-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--border-orange);
  width: 36px;
  flex-shrink: 0;
  line-height: 1;
}
.scope-content-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.gallery-placeholder {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 30px;
}
.gallery-item {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--grey-4);
  font-size: 0.8rem;
  transition: var(--transition);
}
.gallery-item:hover {
  border-color: var(--border-orange);
  background: var(--charcoal-3);
}
.gallery-item .icon { font-size: 2rem; color: var(--orange); opacity: 0.3; }

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-4);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 0.95rem;
  color: var(--white);
}
.contact-form {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 50px;
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-3);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--charcoal-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--orange);
}
.form-input::placeholder, .form-textarea::placeholder {
  color: var(--grey-4);
}
.form-select { color: var(--grey-3); }
.form-select option { background: var(--charcoal-3); color: var(--white); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.form-checkbox-label {
  font-size: 0.88rem;
  color: var(--grey-4);
  line-height: 1.5;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.map-placeholder {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--grey-4);
  text-align: center;
}
.map-placeholder .icon { font-size: 3rem; color: var(--orange); opacity: 0.3; }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .project-featured { grid-template-columns: 1fr; }
  .project-featured-img { min-height: 260px; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .leadership-card { grid-template-columns: 1fr; }
  .leader-avatar { margin: 0 auto; }
  .hero-inner { max-width: 560px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 100dvh; }
  .hero-content {
    padding-top: calc(var(--nav-height) + 28px);
    padding-bottom: 56px;
    align-items: flex-start;
  }
  .hero-inner    { max-width: 100%; }
  /* Flat dark overlay on mobile — no left/right split needed */
  .hero-overlay  { background: rgba(0, 0, 0, 0.74); }
  .hero-overlay::after { height: 100px; }
  .hero-title    { margin-bottom: 18px; }
  .hero-desc     { margin-bottom: 24px; font-size: 1rem; max-width: 100%; }
  /* Stats: keep 2-col grid, tighten gaps */
  .hero-stats    { gap: 16px 24px; padding-top: 20px; padding-bottom: 36px; }
  .hero-stat-number { font-size: 1.75rem; }
  .hero-stat-label  { font-size: 0.66rem; }
  /* Button: full-width already, just tune padding */
  .btn-hero-cta  { padding: 17px 32px; font-size: 0.95rem; }

  /* Page */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-content {
    padding-top: calc(var(--nav-height) + 20px);
    padding-bottom: 44px;
  }
  .hero-title    { margin-bottom: 14px; font-size: clamp(2.4rem, 10vw, 3.6rem); }
  .hero-desc     { margin-bottom: 20px; font-size: 0.93rem; line-height: 1.65; }
  .hero-stats    { gap: 14px 20px; padding-top: 18px; padding-bottom: 32px; }
  .hero-stat-number { font-size: 1.6rem; }
  .btn-hero-cta  { padding: 16px 28px; font-size: 0.9rem; }
  .cta-actions   { flex-direction: column; align-items: center; }
  .process-grid  { grid-template-columns: 1fr; }
  .contact-form  { padding: 30px 24px; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 2.2rem; }
  .compliance-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- SUCCESS MESSAGE ---- */
.form-success {
  display: none;
  background: rgba(232,101,26,0.1);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 20px;
}
.form-success.show { display: block; }

/* ---- ORANGE NUMBER ---- */
.big-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke: 2px var(--border-orange);
  color: transparent;
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}

/* =============================================
   HOMEPAGE REDESIGN — NEW SECTIONS
   ============================================= */

/* ---- CREDENTIAL TICKER ---- */
.cred-ticker {
  background: var(--charcoal);
  border-top: 1px solid var(--border-orange);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.cred-ticker-inner { overflow: hidden; }
.cred-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 38s linear infinite;
  width: max-content;
  padding: 13px 0;
}
.cred-ticker:hover .cred-track { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.cred-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 0 24px;
  transition: color 0.2s;
  flex-shrink: 0;
}
.cred-item:hover { color: var(--orange); }
.cred-icon { width: 13px; height: 13px; flex-shrink: 0; color: var(--orange); }
.cred-sep {
  color: var(--orange);
  font-size: 0.55rem;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ---- WHY NGAMLA SECTION ---- */
.why-section { background: var(--black); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  margin-top: 16px;
}
.why-subtext {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}
.why-points { display: flex; flex-direction: column; gap: 0; }
.why-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.why-point:last-child { border-bottom: none; }
.why-point-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-top: 2px;
}
.why-point-icon svg { width: 18px; height: 18px; }
.why-point-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 6px;
}
.why-point-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
/* Right side: 2x2 stat grid */
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.wstat-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.wstat-card:hover { border-color: var(--border-orange); }
.wstat-orange {
  background: var(--orange);
  border-color: var(--orange);
}
.wstat-orange:hover { border-color: var(--orange-light); background: var(--orange-light); }
.wstat-bg-num {
  position: absolute;
  top: -10px;
  right: -4px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.wstat-orange .wstat-bg-num { -webkit-text-stroke: 1px rgba(255,255,255,0.12); }
.wstat-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
  position: relative;
}
.wstat-orange .wstat-label { color: rgba(255,255,255,0.7); }
.wstat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  position: relative;
  line-height: 1.1;
  margin-bottom: 4px;
}
.wstat-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  position: relative;
}
.wstat-orange .wstat-sub { color: rgba(255,255,255,0.65); }

/* ---- SERVICES EDITORIAL LAYOUT ---- */
.services-section {}
.svc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}
.svc-featured {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  padding: clamp(36px,5vw,56px);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.svc-featured:hover { border-color: var(--border-orange); }
.svc-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}
.svc-featured-icon {
  width: 64px; height: 64px;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
}
.svc-featured-icon svg { width: 30px; height: 30px; }
.svc-tag {
  display: inline-block;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
  width: fit-content;
}
.svc-featured h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem,2.5vw,2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.svc-featured p {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 28px;
  flex: 1;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  transition: gap 0.25s;
}
.svc-link:hover { gap: 14px; }
.svc-link span { font-size: 1rem; }

/* 4 small cards on the right */
.svc-grid-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.svc-small {
  background: var(--charcoal-3);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.svc-small::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.svc-small:hover { background: var(--charcoal-4); border-color: var(--border-orange); }
.svc-small:hover::after { transform: scaleX(1); }
.svc-small-icon {
  width: 40px; height: 40px;
  color: var(--orange);
  margin-bottom: 14px;
}
.svc-small-icon svg { width: 100%; height: 100%; }
.svc-small-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.svc-small-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
}
.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ---- IMPACT BAR ---- */
.impact-bar {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.impact-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(232,101,26,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.impact-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
}
.impact-stat {
  padding: clamp(40px,6vw,80px) clamp(20px,3vw,48px);
  text-align: center;
}
.impact-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem,6vw,6rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.impact-plus {
  font-size: 0.6em;
  vertical-align: super;
}
.impact-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.4;
}
.impact-detail {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.4;
  max-width: 180px;
  margin: 0 auto;
}
.impact-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
  flex-shrink: 0;
}

/* ---- CASE STUDY / FEATURED PROJECT ---- */
.case-section { background: var(--charcoal); }
.case-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.case-visual {
  background: linear-gradient(135deg, #0d0d0d 0%, #141008 60%, #1a1205 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  position: relative;
  border-right: 1px solid var(--border);
}
.case-visual-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-visual-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.case-bg-icon { width: min(100%, 300px); opacity: 0.8; }
.case-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--border-orange);
  padding: 7px 14px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.case-badge-item svg { width: 12px; height: 12px; color: var(--orange); flex-shrink: 0; }
.case-content {
  padding: clamp(36px,5vw,60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-tag {
  display: inline-block;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
  width: fit-content;
}
.case-content h2 {
  font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 10px;
}
.case-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.case-desc {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}
.case-metrics {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.case-metric {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.case-metric:last-child { border-bottom: none; }
.case-metric-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  width: 80px;
  flex-shrink: 0;
}
.case-metric-value {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ---- PROCESS v2 ---- */
.process-section {}
.process-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}
.process-line {
  position: absolute;
  top: 28px;
  left: calc(100%/12);
  right: calc(100%/12);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-orange) 15%, var(--border-orange) 85%, transparent);
  z-index: 0;
}
.process-step-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.psv2-num {
  width: 56px; height: 56px;
  background: var(--charcoal-2);
  border: 2px solid var(--border-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 20px;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}
.process-step-v2:hover .psv2-num {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 24px rgba(232,101,26,0.45);
}
.psv2-body {}
.psv2-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.psv2-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.55;
}

/* ---- SECTORS v2 ---- */
.sectors-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 50px;
}
.sector-v2 {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.sector-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--orange);
  transition: width 0.4s ease;
}
.sector-v2:hover { border-color: var(--border-orange); background: var(--charcoal-3); }
.sector-v2:hover::before { width: 100%; }
.sector-v2-icon {
  width: 48px; height: 48px;
  color: var(--orange);
  margin-bottom: 18px;
  opacity: 0.85;
}
.sector-v2-icon svg { width: 100%; height: 100%; }
.sector-v2-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.sector-v2-text {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
}

/* ---- CREDENTIALS WALL ---- */
.credentials-section {}
.creds-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 50px;
}
.cred-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
}
.cred-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.cred-card:hover { border-color: var(--border-orange); background: var(--charcoal-3); }
.cred-card:hover::after { transform: scaleX(1); }
.cred-card-icon {
  width: 52px; height: 52px;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin: 0 auto 16px;
}
.cred-card-icon svg { width: 22px; height: 22px; }
.cred-card-org {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.cred-card-name {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  margin-bottom: 12px;
}
.cred-card-num {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.06em;
}

/* ---- FINAL CTA SECTION ---- */
.cta-final {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.cta-final-left {
  background: var(--charcoal);
  padding: clamp(60px,8vw,100px) clamp(36px,6vw,80px);
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-final-left::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,101,26,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-final-content { position: relative; z-index: 1; max-width: 480px; }
.cta-final-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  margin-top: 12px;
}
.cta-final-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 420px;
}
.cta-final-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cta-final-right {
  background: var(--black);
  padding: clamp(60px,8vw,100px) clamp(36px,6vw,80px);
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.cta-contact-block { width: 100%; }
.cta-contact-heading {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s;
}
.cta-contact-item:hover .cta-contact-value { color: var(--orange); }
.cta-contact-icon {
  width: 40px; height: 40px;
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.cta-contact-icon svg { width: 16px; height: 16px; }
.cta-contact-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 3px;
}
.cta-contact-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.cta-reg-note {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-top: 18px;
  font-size: 0.68rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.cta-reg-note svg { color: var(--orange); flex-shrink: 0; }

/* =============================================
   RESPONSIVE — NEW SECTIONS
   ============================================= */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-stats { max-width: 520px; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-grid-small { grid-template-columns: 1fr 1fr; }
  .case-layout { grid-template-columns: 1fr; }
  .case-visual { min-height: 280px; }
  .process-track { grid-template-columns: repeat(3, 1fr); gap: 24px 0; }
  .process-line { display: none; }
  .sectors-v2 { grid-template-columns: repeat(2, 1fr); }
  .creds-wall { grid-template-columns: repeat(2, 1fr); }
  .cta-final { grid-template-columns: 1fr; min-height: auto; }
  .cta-final-right { border-left: none; border-top: 1px solid var(--border); }
  .impact-inner { grid-template-columns: 1fr 1fr; }
  .impact-divider { display: none; }
  .impact-stat { border-bottom: 1px solid var(--border); }
}
@media (max-width: 768px) {
  .why-grid { gap: 36px; }
  .why-heading { font-size: 1.75rem; }
  .why-stats { max-width: 100%; }
  .wstat-card { padding: 24px 20px; }
  .svc-layout { margin-top: 36px; }
  .svc-featured { padding: 28px 24px; }
  .svc-grid-small { grid-template-columns: 1fr; }
  .sectors-v2 { grid-template-columns: 1fr; }
  .creds-wall { grid-template-columns: 1fr; }
  .case-layout { border-radius: 6px; }
  .case-content { padding: 28px 24px; }
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .impact-inner { grid-template-columns: 1fr 1fr; }
  .impact-stat { padding: 36px 20px; }
  .impact-num { font-size: 3rem; }
  .cta-final-left, .cta-final-right { padding: 52px 28px; }
  .cta-final-actions { flex-direction: column; align-items: flex-start; }
  .cta-final-actions .btn-hero-cta { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .why-stats { grid-template-columns: 1fr 1fr; }
  .svc-grid-small { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .impact-inner { grid-template-columns: 1fr; }
  .cred-ticker .cred-item { font-size: 0.68rem; padding: 0 16px; }
  .case-metrics { flex-direction: column; }
}

/* =============================================
   IMAGE SECTIONS — HUMAN TOUCH UPDATE
   ============================================= */

/* ─── WHY SECTION: TEAM PHOTO ─── */
.why-photo-wrap {
  position: relative;
}
.why-photo-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  line-height: 0;
  border: 1px solid var(--border);
}
.why-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  max-height: 620px;
  display: block;
  filter: brightness(0.88) saturate(0.9);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.why-photo-frame:hover .why-photo-img {
  filter: brightness(0.82) saturate(1);
  transform: scale(1.02);
}
/* Gradient over bottom of image so caption reads clean */
.why-photo-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.6) 40%, transparent 100%);
  pointer-events: none;
}
/* Orange top-left accent bar */
.why-photo-accent-bar {
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 80px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}
/* Caption at bottom of photo */
.why-photo-caption {
  position: absolute;
  bottom: 100px; left: 0; right: 0;
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  line-height: 1.5;
  z-index: 2;
}
.why-caption-icon {
  width: 16px; height: 16px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
/* 4 badge pills pinned to bottom of photo */
.why-photo-badges {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  z-index: 3;
}
.why-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  background: rgba(17,17,17,0.92);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  gap: 2px;
  transition: background 0.25s;
}
.why-badge:last-child { border-right: none; }
.why-badge:hover { background: rgba(35,35,35,0.96); }
.why-badge-orange { background: rgba(232,101,26,0.85) !important; border-color: transparent; }
.why-badge-orange:hover { background: rgba(232,101,26,0.95) !important; }
.why-badge-val {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}
.why-badge-sub {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.why-badge-orange .why-badge-sub { color: rgba(255,255,255,0.8); }

/* ─── SERVICES: TECHNICIAN PHOTO IN FEATURED CARD ─── */
/* Remove old padding-top on svc-featured, photo leads */
.svc-featured {
  padding: 0 !important;
  flex-direction: column;
}
.svc-photo-block {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-height: 300px;
  line-height: 0;
  flex-shrink: 0;
}
.svc-photo-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: brightness(0.82) saturate(0.88);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.svc-featured:hover .svc-photo-img {
  filter: brightness(0.78) saturate(1.0);
  transform: scale(1.03);
}
/* "Professional Installation" label pinned bottom of photo */
.svc-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(to top, rgba(8,8,8,0.92), transparent);
  padding: 20px 24px 12px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
/* Body content below the photo */
.svc-featured-body {
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.svc-featured-body h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}
.svc-featured-body p {
  font-size: 0.925rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 28px;
  flex: 1;
}

/* ─── MONITORING SECTION ─── */
.monitoring-section {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.monitoring-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

/* Left: big control room photo */
.monitoring-photo-main {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.monitoring-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.72) saturate(0.85);
  transition: filter 0.5s ease, transform 0.8s ease;
  display: block;
}
.monitoring-photo-main:hover img {
  filter: brightness(0.68) saturate(1);
  transform: scale(1.04);
}
.monitoring-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,101,26,0.08) 0%, transparent 50%);
  pointer-events: none;
}
/* "Live Monitoring" pulsing badge */
.monitoring-photo-badge {
  position: absolute;
  top: 28px; left: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(8,8,8,0.82);
  border: 1px solid var(--border-orange);
  border-radius: 100px;
  padding: 9px 18px 9px 12px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
}
.mpb-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: live-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  60%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Right: content + secondary photo */
.monitoring-content {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}
.monitoring-text-block {
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 64px);
  flex: 1;
}
.monitoring-heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 12px 0 18px;
}
.monitoring-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.78;
  max-width: 440px;
  margin-bottom: 32px;
}
.monitoring-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mfeat {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.mfeat-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border-orange);
  border-radius: 6px;
  background: var(--orange-glow);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mfeat-icon svg { width: 16px; height: 16px; }

/* Secondary control room photo — bottom of right column */
.monitoring-photo-secondary {
  position: relative;
  overflow: hidden;
  line-height: 0;
  height: 240px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.monitoring-photo-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65) saturate(0.82);
  transition: filter 0.5s ease, transform 0.7s ease;
  display: block;
}
.monitoring-photo-secondary:hover img {
  filter: brightness(0.6) saturate(1);
  transform: scale(1.05);
}
.monitoring-secondary-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 24px 16px;
  background: linear-gradient(to top, rgba(8,8,8,0.9), transparent);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ─── INSTALLATION GALLERY STRIP ─── */
.install-gallery {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;

  background: var(--charcoal-2);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}


.install-gallery-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 520px;
  max-width: var(--container-width);
  margin: 0 auto;
}
.install-gallery-text {
  padding: clamp(48px, 7vw, 88px) clamp(32px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}
.install-gallery-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 12px 0 18px;
}
.install-gallery-text p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.76;
  max-width: 340px;
}
/* Photo grid — tall photo + short photo stacked */
.install-gallery-photos {
  display: grid;
  grid-template-columns: repeat(2, 380px);
  justify-content: center;
  gap: 10px;
}
.igallery-item {
  position: relative;
  overflow: hidden;
  line-height: 0;
  background: var(--charcoal-3);
}
.igallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: brightness(0.78) saturate(0.85);
  transition: filter 0.5s ease, transform 0.6s ease;
  display: block;
}
.igallery-item:hover img {
  filter: brightness(0.72) saturate(1.0);
  transform: scale(1.05);
}
/* Label at bottom of each gallery photo */
.igallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 20px 16px;
  background: linear-gradient(to top, rgba(8,8,8,0.88) 0%, transparent 100%);
  pointer-events: none;
}
.igallery-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-left: 2px solid var(--orange);
  padding-left: 10px;
}

/* ─── RESPONSIVE — IMAGE SECTIONS ─── */
@media (max-width: 1024px) {
  .monitoring-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .monitoring-photo-main {
    height: 380px;
  }
  .monitoring-photo-main img {
    height: 380px;
  }
  .monitoring-content { border-left: none; border-top: 1px solid var(--border); }
  .install-gallery-inner {
    grid-template-columns: 1fr;
  }
  .install-gallery-text { border-right: none; border-bottom: 1px solid var(--border); padding: 48px 32px; }
  .install-gallery-photos { min-height: 400px; }
}
@media (max-width: 768px) {
  .why-photo-badges { grid-template-columns: repeat(4, 1fr); }
  .why-badge-val { font-size: 0.88rem; }
  .svc-photo-img { height: 220px; }
  .monitoring-photo-main { height: 280px; }
  .monitoring-photo-main img { height: 280px; }
  .monitoring-text-block { padding: 36px 24px; }
  .monitoring-photo-secondary { height: 180px; }
  .install-gallery-photos { grid-template-columns: 1fr; }
  .igallery-item img { max-height: 260px; }
}
@media (max-width: 480px) {
  .why-photo-caption { font-size: 0.78rem; bottom: 80px; }
  .why-badge { padding: 10px 4px; }
  .why-badge-val { font-size: 0.78rem; }
  .why-badge-sub { font-size: 0.5rem; }
}

/* =============================================
   MULTI-PAGE IMAGE STYLES
   about / services / projects / contact
   ============================================= */

/* ─── ABOUT: TEAM PHOTO (company overview) ─── */
.about-team-photo-wrap { position: relative; }
.about-team-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
  border: 1px solid var(--border);
}
.about-team-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.85) saturate(0.9);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.about-team-frame:hover .about-team-img {
  filter: brightness(0.8) saturate(1);
  transform: scale(1.02);
}
.about-team-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(8,8,8,0.96) 0%, rgba(8,8,8,0.55) 40%, transparent 100%);
  pointer-events: none;
}
.about-team-caption {
  position: absolute;
  bottom: 90px; left: 0; right: 0;
  padding: 0 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  line-height: 1.5;
}
.about-team-chips {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.about-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 6px;
  background: rgba(17,17,17,0.92);
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  gap: 2px;
  transition: background 0.25s;
}
.about-chip:last-child { border-right: none; }
.about-chip:hover { background: rgba(30,30,30,0.96); }
.about-chip-orange { background: rgba(232,101,26,0.82) !important; border-color: transparent !important; }
.about-chip-val {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1;
}
.about-chip-lbl {
  font-family: var(--font-heading);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ABOUT: INFRASTRUCTURE PHOTO (below leadership) */
.about-infra-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
  border: 1px solid var(--border);
}
.about-infra-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.68) saturate(0.82);
  transition: filter 0.5s ease, transform 0.7s ease;
}
.about-infra-frame:hover .about-infra-img {
  filter: brightness(0.62) saturate(1);
  transform: scale(1.03);
}
.about-infra-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,101,26,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.about-infra-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 40px 28px 22px;
  background: linear-gradient(to top, rgba(8,8,8,0.94) 0%, transparent 100%);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  line-height: 1.5;
}

/* ─── SERVICES: INSTALLATION PHOTO PANEL ─── */
.svc-photo-panel {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.svcpp-main, .svcpp-secondary {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.svcpp-main { flex: 1.6; }
.svcpp-secondary { flex: 1; }
.svcpp-main img, .svcpp-secondary img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 300px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: brightness(0.80) saturate(0.87);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.svcpp-main:hover img, .svcpp-secondary:hover img {
  filter: brightness(0.74) saturate(1.0);
  transform: scale(1.04);
}
.svcpp-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(8,8,8,0.88) 0%, transparent 100%);
  pointer-events: none;
}
.svcpp-tag {
  position: absolute;
  bottom: 12px; left: 16px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  border-left: 2px solid var(--orange);
  padding-left: 8px;
}
.svcpp-tag-sm {
  position: absolute;
  bottom: 10px; left: 14px;
  font-family: var(--font-heading);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-left: 2px solid var(--border-orange);
  padding-left: 7px;
}
.svcpp-caption {
  background: var(--charcoal-3);
  border-top: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  line-height: 1.5;
}

/* SERVICES: GOV PHOTO */
.svc-gov-photo { position: relative; }
.svc-gov-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
  border: 1px solid var(--border);
}
.svc-gov-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  filter: brightness(0.75) saturate(0.85);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.svc-gov-frame:hover img {
  filter: brightness(0.7) saturate(1.0);
  transform: scale(1.03);
}
.svc-gov-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.3) 50%, transparent 100%);
  pointer-events: none;
}
.svc-gov-badges {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-gov-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8,8,8,0.8);
  border: 1px solid var(--border-orange);
  border-radius: 4px;
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  width: fit-content;
}

/* SERVICES: MONITORING BANNER (full-width photo strip) */
.svc-monitoring-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.svc-monitoring-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.42) saturate(0.7);
  display: block;
}
.svc-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.7) 0%, rgba(8,8,8,0.2) 100%);
  pointer-events: none;
}
.svc-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.svc-banner-inner {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.svc-banner-heading {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin: 14px 0 20px;
  max-width: 700px;
}
.svc-banner-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(8,8,8,0.75);
  border: 1px solid var(--border-orange);
  border-radius: 100px;
  padding: 9px 18px 9px 12px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.svc-live-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #22c55e;
  animation: live-pulse 2s infinite;
  flex-shrink: 0;
}

/* ─── PROJECTS: PHOTO MOSAIC GALLERY ─── */
.proj-gallery-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 3px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.pgm-item {
  position: relative;
  overflow: hidden;
  line-height: 0;
  background: var(--charcoal-3);
}
.pgm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.78) saturate(0.85);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.pgm-item:hover img {
  filter: brightness(0.72) saturate(1.0);
  transform: scale(1.04);
}
.pgm-wide      { grid-column: 1; grid-row: 1; min-height: 300px; }
.pgm-tall      { grid-column: 2; grid-row: 1 / 3; min-height: 450px; }
.pgm-port      { grid-column: auto; min-height: 220px; }
.pgm-wide-bottom { grid-column: 1; min-height: 220px; }
/* Row 3 - last portrait spans more */
.pgm-item:last-child { grid-column: 1 / -1; min-height: 260px; }
.pgm-item:last-child img { object-position: center 30%; }

.pgm-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, transparent 55%);
  pointer-events: none;
}
.pgm-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-left: 2px solid var(--orange);
  padding-left: 9px;
}
.pgm-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8,8,8,0.75);
  border: 1px solid rgba(34,197,94,0.4);
  border-radius: 100px;
  padding: 5px 12px 5px 9px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 10px;
  width: fit-content;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.pgm-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: live-pulse 2s infinite;
  flex-shrink: 0;
}
.proj-gallery-note {
  text-align: center;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.35);
  margin-top: 20px;
  font-style: italic;
}

/* PROJECTS: outcome photo in description sidebar */
.proj-outcome-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
  border: 1px solid var(--border-orange);
}
.proj-outcome-photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.6) saturate(0.8);
  transition: filter 0.4s ease, transform 0.6s ease;
}
.proj-outcome-photo:hover img {
  filter: brightness(0.55) saturate(1);
  transform: scale(1.03);
}
.proj-outcome-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, transparent 100%);
  pointer-events: none;
}
.proj-outcome-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
}
.proj-outcome-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.proj-outcome-addr {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 600;
}

/* ─── CONTACT: TEAM TRUST PHOTO ─── */
.contact-trust-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
  border: 1px solid var(--border);
}
.contact-trust-frame img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.75) saturate(0.85);
  transition: filter 0.4s ease, transform 0.6s ease;
}
.contact-trust-frame:hover img {
  filter: brightness(0.68) saturate(1.0);
  transform: scale(1.03);
}
.contact-trust-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, transparent 100%);
  pointer-events: none;
}
.contact-trust-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .svc-photo-panel { flex-direction: row; }
  .svcpp-main img, .svcpp-secondary img { max-height: 240px; }
  .svc-gov-frame img { height: 360px; }
  .about-team-img { height: 380px; }
  .svc-monitoring-banner { height: 320px; }
  .svc-banner-heading { font-size: clamp(1.5rem,3vw,2.4rem); }
  .proj-gallery-mosaic { grid-template-columns: 1fr 1fr; }
  .pgm-tall { grid-row: auto; }
  .pgm-wide, .pgm-wide-bottom { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .about-team-chips { grid-template-columns: repeat(4,1fr); }
  .about-team-img { height: 300px; }
  .about-infra-img { height: 220px; }
  .svc-photo-panel { flex-direction: column; }
  .svc-gov-frame img { height: 280px; }
  .svc-monitoring-banner { height: 260px; }
  .svc-banner-heading { font-size: 1.5rem; }
  .proj-gallery-mosaic { grid-template-columns: 1fr; }
  .pgm-tall { grid-column: 1 / -1; min-height: 260px; }
  .pgm-item:last-child { min-height: 200px; }
}
@media (max-width: 480px) {
  .about-team-chips { grid-template-columns: repeat(4,1fr); }
  .about-chip-val { font-size: 0.78rem; }
  .about-chip-lbl { font-size: 0.48rem; }
}

/* =============================================
   SVC6 — 6 PHOTO SERVICE CARDS (homepage)
   ============================================= */

.svc6-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* Subtle outer glow on the whole grid */
  box-shadow: 0 0 0 1px var(--border);
}

/* ── Individual Card ── */
.svc6-card {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  aspect-ratio: 3 / 4;          /* portrait proportion — tall cards feel premium */
  min-height: 360px;
  background: var(--charcoal-3);
}

/* Photo fills the card */
.svc6-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.svc6-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.6) saturate(0.75);
  transition: filter 0.55s ease, transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.svc6-card:hover .svc6-photo img {
  filter: brightness(0.45) saturate(0.9);
  transform: scale(1.06);
}

/* Dark gradient overlay — bottom-heavy so text stays readable */
.svc6-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.97)  0%,
    rgba(8, 8, 8, 0.82)  35%,
    rgba(8, 8, 8, 0.35)  65%,
    rgba(8, 8, 8, 0.10)  100%
  );
  transition: background 0.4s ease;
}
/* Orange-tinted overlay for CCTV + Mobile Patrol cards (cards 2 and 5) */
.svc6-overlay-orange {
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.97)  0%,
    rgba(15, 8, 4, 0.85)  35%,
    rgba(40, 16, 4, 0.30)  65%,
    rgba(8, 8, 8, 0.08)  100%
  );
}
.svc6-card:hover .svc6-overlay {
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.98)  0%,
    rgba(8, 8, 8, 0.90)  45%,
    rgba(8, 8, 8, 0.50)  70%,
    rgba(8, 8, 8, 0.18)  100%
  );
}

/* Content sits above photo + overlay */
.svc6-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 26px 26px;
}

/* Service number — large ghost number top-right */
.svc6-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.10);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: -webkit-text-stroke-color 0.3s ease, color 0.3s ease;
}
.svc6-card:hover .svc6-num {
  -webkit-text-stroke-color: rgba(232, 101, 26, 0.25);
}

/* Icon at top of content stack */
.svc6-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 101, 26, 0.18);
  border: 1px solid rgba(232, 101, 26, 0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.svc6-icon svg { width: 20px; height: 20px; }
.svc6-card:hover .svc6-icon {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

/* Title */
.svc6-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  line-height: 1.15;
  text-transform: uppercase;
}

/* Description — hidden by default, reveals on hover */
.svc6-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  margin-bottom: 18px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin-bottom 0.35s ease;
}
.svc6-card:hover .svc6-desc {
  max-height: 100px;
  opacity: 1;
}

/* "Learn More →" CTA */
.svc6-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  border-top: 1px solid rgba(232, 101, 26, 0.25);
  padding-top: 14px;
  transition: gap 0.25s ease, color 0.2s ease;
}
.svc6-card:hover .svc6-cta { gap: 12px; color: var(--orange-light); }
.svc6-arrow {
  font-size: 0.9rem;
  transition: transform 0.25s ease;
  display: inline-block;
}
.svc6-card:hover .svc6-arrow { transform: translateX(4px); }

/* Orange left-border accent that sweeps down on hover */
.svc6-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, var(--orange-light), var(--orange-dark));
  z-index: 3;
  transition: height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.svc6-card:hover::before { height: 100%; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .svc6-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .svc6-card {
    aspect-ratio: auto;
    min-height: 300px;
  }
  /* On tablet, always show description */
  .svc6-desc {
    max-height: 80px;
    opacity: 0.75;
  }
}
@media (max-width: 768px) {
  .svc6-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }
  .svc6-card {
    min-height: 280px;
  }
  .svc6-title { font-size: 1.1rem; }
  .svc6-desc { display: none; }
  .svc6-card:hover .svc6-desc { display: none; }
}
@media (max-width: 480px) {
  .svc6-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .svc6-card { min-height: 230px; }
  .svc6-content { padding: 18px 16px 16px; }
  .svc6-num { font-size: 2.5rem; top: 12px; right: 14px; }
  .svc6-icon { width: 36px; height: 36px; margin-bottom: 10px; }
  .svc6-icon svg { width: 16px; height: 16px; }
  .svc6-title { font-size: 0.95rem; margin-bottom: 6px; }
  .svc6-cta { font-size: 0.62rem; }
}

/* =============================================
   SERVICES — 6-CARD PHOTO GRID (v4 redesign)
   ============================================= */

/* Remove old svc-layout styles that no longer apply on homepage */
.services-section .svc-layout { display: none; }

/* ── 6-card grid ── */
.svc6-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Individual card */
.svc6-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--charcoal-2);
}

/* Photo layer */
.svc6-photo {
  position: absolute;
  inset: 0;
  line-height: 0;
}
.svc6-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.55) saturate(0.75);
  transition: filter 0.55s ease, transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform, filter;
}
.svc6-card:hover .svc6-photo img {
  filter: brightness(0.45) saturate(0.9);
  transform: scale(1.06);
}

/* Gradient overlay — dark at bottom, mostly transparent at top */
.svc6-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(8,8,8,0.97) 0%,
      rgba(8,8,8,0.78) 35%,
      rgba(8,8,8,0.25) 65%,
      rgba(8,8,8,0.06) 100%);
  pointer-events: none;
  transition: background 0.4s ease;
}
.svc6-card:hover .svc6-overlay {
  background:
    linear-gradient(to top,
      rgba(8,8,8,0.99) 0%,
      rgba(8,8,8,0.88) 40%,
      rgba(8,8,8,0.35) 70%,
      rgba(8,8,8,0.1) 100%);
}

/* Number badge — top left */
.svc6-num {
  position: absolute;
  top: 20px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--orange);
  background: rgba(8,8,8,0.65);
  border: 1px solid var(--border-orange);
  border-radius: 2px;
  padding: 4px 8px;
  z-index: 2;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Orange left-edge accent — slides in on hover */
.svc6-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--orange-light), var(--orange-dark));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}
.svc6-card:hover::before {
  transform: scaleY(1);
}

/* Content block — sits over the gradient */
.svc6-body {
  position: relative;
  z-index: 2;
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Icon */
.svc6-icon {
  width: 38px;
  height: 38px;
  color: var(--orange);
  margin-bottom: 12px;
  opacity: 0.9;
}
.svc6-icon svg {
  width: 100%;
  height: 100%;
}

/* Title */
.svc6-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Description — hidden by default, fades in on hover */
.svc6-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.0);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: color 0.35s ease 0.05s, max-height 0.4s ease, margin-bottom 0.3s ease;
  margin-bottom: 0;
}
.svc6-card:hover .svc6-desc {
  color: rgba(255,255,255,0.62);
  max-height: 120px;
  margin-bottom: 16px;
}

/* Link — visible always, shifts slightly on hover */
.svc6-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  transition: gap 0.25s ease;
  text-decoration: none;
  padding-top: 2px;
}
.svc6-link:hover { gap: 12px; }
.svc6-link span { font-size: 0.9rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .svc6-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc6-card {
    min-height: 340px;
  }
}
@media (max-width: 640px) {
  .svc6-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .svc6-card {
    min-height: 260px;
  }
  .svc6-title {
    font-size: 0.95rem;
  }
  .svc6-body {
    padding: 20px 16px 18px;
  }
  .svc6-desc {
    display: none; /* keep mobile clean */
  }
}
@media (max-width: 400px) {
  .svc6-grid { grid-template-columns: 1fr; }
  .svc6-card { min-height: 220px; }
}

/* =============================================
   V5 — ALL-PAGES UPDATE CSS
   services / about / projects / contact
   ============================================= */

/* ── SERVICES PAGE ── */

/* Overview strip */
.svc-overview-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.svc-ov-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
}
.svc-ov-num {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.12em;
}
.svc-ov-name {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.svc-ov-div {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

/* Service detail sections — alternating layout */
.svc-detail-section { border-top: 1px solid var(--border); }
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.svc-detail-grid-reverse .svc-detail-photo { order: 2; }
.svc-detail-grid-reverse .svc-detail-content { order: 1; }

/* Service detail photo frame */
.svc-dp-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
  border: 1px solid var(--border);
}
.svc-dp-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.78) saturate(0.85);
  transition: filter 0.5s ease, transform 0.65s ease;
}
.svc-dp-frame:hover img {
  filter: brightness(0.72) saturate(1.0);
  transform: scale(1.03);
}
.svc-dp-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.7) 0%, transparent 55%);
  pointer-events: none;
}
.svc-dp-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8,8,8,0.82);
  border: 1px solid var(--border-orange);
  border-radius: 4px;
  padding: 9px 16px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.svc-dp-num {
  position: absolute;
  top: 18px; right: 20px;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Inset pair on CCTV photo */
.svc-dp-inset-pair {
  position: absolute;
  bottom: 60px; right: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100px;
}
.svc-dp-inset {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
}
.svc-dp-inset img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  filter: brightness(0.7);
  transition: filter 0.3s;
}
.svc-dp-inset:hover img { filter: brightness(0.85); }

/* Service detail features list */
.svc-detail-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.svc-df-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--grey-3);
}
.svc-df-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* Installation strip */
.svc-install-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  height: 260px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.svc-is-photo {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.svc-is-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: brightness(0.65) saturate(0.8);
  transition: filter 0.45s ease, transform 0.55s ease;
}
.svc-is-photo:hover img {
  filter: brightness(0.55) saturate(1.0);
  transform: scale(1.06);
}
.svc-is-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 100%);
  pointer-events: none;
}
.svc-is-label {
  position: absolute;
  bottom: 12px; left: 14px;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border-left: 2px solid var(--orange);
  padding-left: 8px;
}

/* Gov compliance layout */
.svc-compliance-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.svc-compliance-creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.svc-cr-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.25s;
}
.svc-cr-card:hover { border-color: var(--border-orange); }
.svc-cr-highlight {
  background: var(--orange-glow);
  border-color: var(--border-orange);
}
.svc-cr-org {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.svc-cr-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.svc-cr-num {
  font-family: var(--font-mono, 'Courier New', monospace);
  font-size: 0.72rem;
  color: var(--grey-4);
  background: var(--charcoal-3);
  border-radius: 3px;
  padding: 3px 8px;
  display: inline-block;
}

/* ── ABOUT PAGE ── */

.about-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-overview-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.about-ov-tag {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 22px;
  text-align: center;
}
.about-ov-tag-orange {
  background: var(--orange-glow);
  border-color: var(--border-orange);
}
.about-ov-tag-val {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.about-ov-tag-lbl {
  font-size: 0.8rem;
  color: var(--grey-3);
  margin-top: 3px;
}

/* Services snapshot on about page */
.about-svc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-svc-item {
  background: var(--charcoal-2);
  padding: 32px 16px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: background 0.25s;
  cursor: default;
}
.about-svc-item:hover { background: var(--charcoal-3); }
.about-svc-icon {
  width: 32px;
  height: 32px;
  color: var(--orange);
  opacity: 0.85;
}
.about-svc-icon svg { width: 100%; height: 100%; }
.about-svc-num {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.25);
}
.about-svc-name {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* Vision/Mission cards */
.about-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about-vm-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}
.about-vm-card-orange { border-color: var(--border-orange); }
.about-vm-accent {
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
}
.about-vm-accent-dim { background: var(--charcoal-4); }
.about-vm-icon {
  width: 44px;
  height: 44px;
  color: var(--orange);
  margin-bottom: 20px;
  opacity: 0.9;
}
.about-vm-icon svg { width: 100%; height: 100%; }
.about-vm-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.about-vm-heading {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1.6rem;
}

/* Quality card icons */
.about-qc-icon {
  width: 44px;
  height: 44px;
  color: var(--orange);
  opacity: 0.85;
}
.about-qc-icon svg { width: 100%; height: 100%; }

/* ── PROJECTS PAGE ── */

/* Project metadata bar */
.proj-meta-bar {
  background: var(--charcoal-2);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
}
.proj-meta-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.proj-meta-val {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
}
.proj-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.85rem;
  color: #4ade80;
  font-weight: 600;
}
.proj-status-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Project description grid */
.proj-desc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.proj-desc-aside { display: flex; flex-direction: column; gap: 20px; }

/* Gallery row of 3 */
.proj-gallery-row3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pgr3-item {
  position: relative;
  overflow: hidden;
  line-height: 0;
  min-height: 220px;
  background: var(--charcoal-3);
}
.pgr3-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) saturate(0.8);
  transition: filter 0.45s ease, transform 0.55s ease;
}
.pgr3-item:hover img {
  filter: brightness(0.65) saturate(1.0);
  transform: scale(1.05);
}
.pgr3-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(8,8,8,0.82) 0%, transparent 55%);
  pointer-events: none;
}

/* ── CONTACT PAGE ── */

.contact-meta-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-meta-icon {
  width: 36px;
  height: 36px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-meta-icon svg { width: 100%; height: 100%; }
.contact-meta-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

/* Contact icon overide — use SVG instead of emoji */
.contact-info-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--orange);
}
.contact-info-icon svg { width: 18px; height: 18px; }

/* Service pills on contact page */
.contact-svc-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.contact-svc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.contact-svc-pill:hover {
  border-color: var(--border-orange);
  color: var(--orange);
  background: var(--orange-glow);
}

/* Contact hover link style */
.contact-link-hover {
  color: var(--white);
  transition: color 0.2s;
  text-decoration: none;
}
.contact-link-hover:hover { color: var(--orange); }

/* Contact strip grid */
.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.contact-strip-item { display: flex; flex-direction: column; align-items: center; }
.contact-strip-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.contact-strip-icon svg { width: 22px; height: 22px; }
.contact-strip-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.contact-strip-val {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .about-svc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .svc-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail-grid-reverse .svc-detail-photo,
  .svc-detail-grid-reverse .svc-detail-content { order: unset; }
  .svc-dp-frame img { height: 360px; }
  .svc-install-strip { grid-template-columns: repeat(2, 1fr); height: auto; }
  .svc-install-strip .svc-is-photo img { min-height: 200px; height: 200px; }
  .svc-compliance-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-overview-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-vm-grid { grid-template-columns: 1fr; }
  .proj-desc-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .svc-overview-strip { gap: 0; }
  .svc-ov-div { display: none; }
}
@media (max-width: 768px) {
  .svc-dp-frame img { height: 280px; }
  .about-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-compliance-creds { grid-template-columns: 1fr 1fr; }
  .proj-gallery-row3 { grid-template-columns: 1fr 1fr; }
  .proj-gallery-row3 .pgr3-item:last-child { grid-column: 1 / -1; }
  .contact-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-svc-strip { gap: 8px; }
  .contact-svc-pill { font-size: 0.72rem; padding: 8px 16px; }
  .svc-install-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .about-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-install-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .about-vm-card { padding: 36px 28px; }
  .proj-meta-bar { padding: 24px; gap: 20px; }
  .contact-strip-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .install-gallery-photos {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }
}
/* Logo image replaces N icon */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}
