/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif; color: #1a1a1a; background: #fff;
}

/* === Tokens === */
:root {
  --brand: #eb6823;
  --blue: #1e5697;
  --dark: #0d0d0d;
}

/* ─────────────────────────────────────────
   ACCESSIBILITY
───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 2px;
}
.hamburger-btn:focus-visible,
.nav-modal-close:focus-visible,
.nav-modal-accordion-btn:focus-visible,
.nav-modal-link:focus-visible,
.nav-modal-sub-link:focus-visible,
.soc-btn:focus-visible,
.footer-link:focus-visible,
.back-to-top:focus-visible {
  outline-color: #fff;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--brand);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 4px 4px;
  font-weight: 700;
  font-size: 14px;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; outline: none; }

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }
.section { padding: 64px 24px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.four-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: center;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-grid > * { flex: 1 1 200px; min-width: 0; }
.footer-col-logo  { flex: 2 1 280px; }

@media (min-width: 640px) {
  .four-col { grid-template-columns: 1fr 1fr; }
  .accred-bar { gap: 32px; }
  .accred-items { gap: 36px; }
}
@media (min-width: 1024px) {
  .section { padding: 96px 24px; }
  .two-col { grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .four-col { grid-template-columns: repeat(4, 1fr); }
  .stat-grid { grid-template-columns: repeat(4, 1fr); gap: 48px; }
}

/* Order helpers (used in journey two-col on mobile) */
.order-first  { order: 1; }
.order-second { order: 2; }

/* ─────────────────────────────────────────
   HEADER & NAV
───────────────────────────────────────── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: var(--dark); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.logo-img    { height: 38px; width: auto; }
.logo-img-lg { height: 40px; width: auto; }

/* Desktop nav */
.header-nav { display: none; align-items: center; gap: 2px; }
.header-nav-link {
  color: rgba(255,255,255,0.80);
  font-size: 13px; font-weight: 600;
  text-decoration: none; padding: 8px 13px; border-radius: 6px;
  letter-spacing: -0.01em; white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}
.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 13px; right: 13px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-nav-link:hover { color: #fff; }
.header-nav-link:hover::after { transform: scaleX(1); }
.header-nav-link-active { color: var(--brand); }
.header-nav-link-active::after { background: var(--brand); transform: scaleX(1); }
.header-nav-link-active:hover { color: var(--brand); }
.header-nav-link-active:hover::after { background: var(--brand); transform: scaleX(1); }

@media (min-width: 1024px) {
  .header-nav { display: flex; }
}

/* Dropdown */
.header-nav-item { position: relative; display: flex; align-items: center; }
.header-nav-item::after {
  content: ''; position: absolute;
  top: 100%; left: 0; right: 0; height: 12px;
  display: none;
}
.header-nav-item:hover::after { display: block; }
.header-nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #131313;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  min-width: 270px;
  padding: 6px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 200;
}
.header-nav-item:hover .header-nav-dropdown { display: block; }
.header-nav-dropdown-link {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,0.80);
  font-size: 13px; font-weight: 500;
  text-decoration: none; white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.header-nav-dropdown-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.header-nav-dropdown-link-active { color: var(--brand); }
.header-nav-dropdown-link-active:hover { color: var(--brand); background: rgba(235,104,35,0.06); }
.header-nav-chevron { font-size: 9px; margin-left: 5px; opacity: 0.55; }

/* Header right group */
.header-right { display: flex; align-items: center; gap: 12px; }

/* Header phone */
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}
.header-phone i { font-size: 11px; color: var(--brand); }
.header-phone:hover { color: #fff; }

/* Hamburger button */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
@media (min-width: 1024px) {
  .hamburger-btn { display: none; }
}

/* Nav modal overlay */
.nav-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.nav-modal.open {
  opacity: 1;
  pointer-events: all;
}

/* Slide-in panel */
.nav-modal-panel {
  position: absolute;
  top: 0; right: 0;
  width: 50vw;
  min-width: 220px;
  min-height: 100dvh;
  background: #131313;
  padding: 20px 24px 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-modal.open .nav-modal-panel {
  transform: translateX(0);
}

.nav-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  margin-bottom: 24px;
}
.nav-modal-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.80);
  cursor: pointer;
  padding: 4px;
  font-size: 22px;
  line-height: 1;
  transition: color 0.15s;
}
.nav-modal-close:hover { color: #fff; }

.nav-modal-nav { display: flex; flex-direction: column; }
.nav-modal-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.90);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  letter-spacing: -0.01em;
  transition: color 0.15s;
}
.nav-modal-link i { width: 18px; text-align: center; font-size: 15px; opacity: 0.8; }
.nav-modal-link:hover { color: #fff; }
.nav-modal-link-active { color: var(--brand); }
.nav-modal-link-active:hover { color: var(--brand); }

/* Burger nav accordion (Case Studies) */
.nav-modal-accordion-btn {
  width: 100%; display: flex; align-items: center; gap: 14px;
  background: none; border: none; cursor: pointer; text-align: left;
  color: rgba(255,255,255,0.90);
  font-size: 17px; font-weight: 600; font-family: inherit;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  letter-spacing: -0.01em;
  transition: color 0.15s;
}
.nav-modal-accordion-btn i:first-child { width: 18px; text-align: center; font-size: 15px; opacity: 0.8; }
.nav-modal-accordion-btn:hover { color: #fff; }
.nav-modal-accordion-btn.nav-modal-link-active { color: var(--brand); }
.nav-modal-chevron { margin-left: auto; font-size: 10px; opacity: 0.5; transition: transform 0.22s cubic-bezier(0.4,0,0.2,1); }
.nav-modal-accordion-btn[aria-expanded="true"] .nav-modal-chevron { transform: rotate(180deg); }
.nav-modal-accordion-panel {
  overflow: hidden; max-height: 0;
  transition: max-height 0.25s cubic-bezier(0.4,0,0.2,1);
}
.nav-modal-accordion-panel.open { max-height: 220px; }
.nav-modal-sub-link {
  display: block; padding: 10px 0 10px 32px;
  color: rgba(255,255,255,0.80); font-size: 14px; font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.15s;
}
.nav-modal-sub-link:hover { color: rgba(255,255,255,0.85); }
.nav-modal-sub-link-active { color: var(--brand); }
.nav-modal-sub-link-active:hover { color: var(--brand); }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-green {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 11px 22px; border-radius: 10px; text-decoration: none;
  transition: background 0.18s, transform 0.14s;
}
.btn-green:hover { background: #174578; transform: translateY(-1px); }
.btn-green:active { transform: translateY(0); }
.btn-green.btn-sm { padding: 9px 18px; font-size: 11px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,0.45);
  text-decoration: none; transition: border-color 0.18s, background 0.18s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.07); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 24px; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero-section {
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.72) 100%),
    url('../Assets/Main Plant Room Header.webp');
  background-size: cover;
  background-position: center 55%;
}
.hero-page  { padding-top: 60px; display: flex; flex-direction: column; }
.hero-full  { min-height: 100vh; }
.hero-tall  { min-height: 80vh; }

.hero-body    { flex: 1; display: flex; align-items: flex-start; padding: 24px 24px 40px; }
.hero-body-lg { flex: 1; display: flex; align-items: flex-start; padding: 28px 24px 48px; }
.hero-text-sm { max-width: 640px; }
.hero-text-md { max-width: 680px; }

.hero-h1    { color: #fff; font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1.09; letter-spacing: -0.03em; margin-bottom: 18px; }
.hero-h1-sm { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem);     font-weight: 800; line-height: 1.09; letter-spacing: -0.03em; margin-bottom: 20px; }
.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 17px; line-height: 1.6; margin-bottom: 32px; max-width: 460px;
  display: inline-block;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 16px;
}
.hero-sub-sm {
  color: rgba(255,255,255,0.85);
  font-size: 16px; line-height: 1.65; max-width: 520px;
  display: inline-block;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 16px;
}

/* ─────────────────────────────────────────
   ACCREDITATION STRIP
───────────────────────────────────────── */
.accred-strip       { border-top: 3px solid var(--brand); background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.10); }
.accred-strip-inner { padding-top: 16px; padding-bottom: 16px; }
.accred-bar  { display: flex; align-items: center; gap: 20px; overflow: hidden; }
.trust-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(0,0,0,0.35); white-space: nowrap; flex-shrink: 0; }
.trust-item  { display: inline-flex; align-items: center; flex-shrink: 0; padding: 0 12px; }
.accred-img  { height: 48px; width: auto; display: block; }

/* Ticker */
.ticker-wrap {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: ticker 40s linear infinite;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   SECTION TYPES
───────────────────────────────────────── */
.sec-white    { padding: 56px 24px; background: #fff; }
.sec-testi-head { padding: 40px 24px 32px; background: #fff; text-align: center; }
.testi-icon { font-size: 28px; color: var(--brand); opacity: 0.85; margin-bottom: 12px; display: block; }
.sec-testi    { padding: 72px 0; }
.sec-sectors  { padding: 96px 24px 0; background: #fff; overflow: hidden; }
.sec-wwd      { padding: 56px 24px 72px; }
.sec-stats {
  padding: 80px 24px;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.52) 100%),
    url('https://images.unsplash.com/photo-1565891741441-64926e441838?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 1023px) {
  .sec-stats { background-attachment: scroll; }
}
.stat-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 32px 16px;
}
.sec-center   { text-align: center; }
.sec-overflow { overflow: hidden; padding-bottom: 0; }

/* ─────────────────────────────────────────
   BACKGROUND IMAGES
───────────────────────────────────────── */
.wwd-bg {
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.6) 100%),
    url('https://images.unsplash.com/photo-1538474705339-e87de81450e8?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center;
}
.testi-bg {
  background-image:
    linear-gradient(to bottom, rgba(6,16,6,0.88) 0%, rgba(6,16,6,0.92) 100%),
    url('https://images.unsplash.com/photo-1773517458836-aeaeb22de617?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center;
}

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 14px;
}
.eyebrow-tight { margin-bottom: 8px; }

.intro-h2 { font-size: clamp(1.9rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 24px; }
.section-heading { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 20px; }
.testi-h2  { font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; }
.cta-h2    { font-size: 2rem; font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 20px; }

.em-brand { color: var(--brand); font-weight: 700; }

.body-text       { color: #4a4a4a; font-size: 14.5px; line-height: 1.78; margin-bottom: 16px; }
.body-text-faint { color: #666;    font-size: 14.5px; line-height: 1.78; margin-bottom: 16px; }
.sec-p           { color: #4a4a4a; font-size: 14.5px; line-height: 1.78; margin-bottom: 16px; }
.sec-p-faint     { color: #666;    font-size: 14.5px; line-height: 1.78; margin-bottom: 32px; }
.cta-p           { color: #666;    font-size: 14.5px; line-height: 1.78; margin-bottom: 32px; }
.mb-32 { margin-bottom: 32px; }

/* ─────────────────────────────────────────
   STACKED IMAGES
───────────────────────────────────────── */
.img-stack { position: relative; height: 300px; }
.img-stack .img-back {
  position: absolute; right: 0; top: 0;
  width: 80%; height: 75%;
  object-fit: cover; border-radius: 12px;
}
.img-stack .img-front {
  position: absolute; left: 0; bottom: 0;
  width: 52%; height: 55%;
  object-fit: cover; border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
}
.img-stack .wm {
  position: absolute; right: -8px; top: 50%; transform: translateY(-50%);
  width: 120px; height: 120px; opacity: 0.07; pointer-events: none;
}
@media (min-width: 1024px) {
  .img-stack { height: 460px; }
  .img-stack .img-back  { height: 360px; }
  .img-stack .img-front { height: 230px; }
  .img-stack .wm        { width: 180px; height: 180px; }
}

/* ─────────────────────────────────────────
   CARDS
───────────────────────────────────────── */
.wwd-card { background: #fff; border-radius: 8px; padding: 24px; box-shadow: 0 6px 28px rgba(0,0,0,0.18); }
.wwd-icon { margin-bottom: 14px; }
.wwd-icon img { height: 48px; width: auto; mix-blend-mode: multiply; }
.card-h3 { font-size: 13.5px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.card-p  { color: #555; font-size: 12.5px; line-height: 1.7; }

/* ─────────────────────────────────────────
   PILL BANNER
───────────────────────────────────────── */
.pill-wrap  { display: flex; justify-content: center; margin-bottom: 48px; }
.dark-pill {
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 20px 40px;
  max-width: 680px;
  width: 100%;
  text-align: center;
}
.dark-pill-p { color: rgba(255,255,255,0.80); font-size: 13.5px; line-height: 1.65; }

/* ─────────────────────────────────────────
   STATS
───────────────────────────────────────── */
.stat-number { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--brand); line-height: 1; margin-bottom: 12px; }
.stat-label  { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.80); }

/* ─────────────────────────────────────────
   TESTIMONIAL
───────────────────────────────────────── */
.quote-card {
  max-width: 760px; margin: 0 auto;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 12px;
  padding: 48px 52px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.quote-mark { color: var(--brand); font-size: 56px; line-height: 1; font-family: Georgia, serif; font-weight: 700; margin-bottom: 8px; }
.quote-text { color: rgba(255,255,255,0.85); font-size: 17px; line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.quote-cite { color: var(--brand); font-size: 13px; font-weight: 600; letter-spacing: 0.05em; font-style: normal; display: block; }

.testi-ticker-wrap {
  overflow: hidden;
  padding: 0 24px;
}
.testi-ticker-track {
  display: flex;
  gap: 24px;
  width: max-content;
  --testi-step: calc(100vw - 24px); /* card width (100vw - 48px) + 24px gap */
  animation: testi-scroll-mobile 20s ease-in-out infinite;
}
@keyframes testi-scroll-mobile {
  0%, 22.5%  { transform: translateX(0); }
  25%, 47.5% { transform: translateX(calc(-1 * var(--testi-step))); }
  50%, 72.5% { transform: translateX(calc(-2 * var(--testi-step))); }
  75%, 97.5% { transform: translateX(calc(-3 * var(--testi-step))); }
  100%       { transform: translateX(calc(-4 * var(--testi-step))); }
}
.testi-card {
  flex: 0 0 calc(100vw - 48px);
  width: calc(100vw - 48px);
  height: auto;
  min-height: 320px;
  background: rgba(0,0,0,0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 36px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.testi-card-mark {
  color: var(--brand); font-size: 44px; line-height: 1;
  font-family: Georgia, serif; font-weight: 700;
  margin-bottom: 10px; flex-shrink: 0;
}
.testi-card-text {
  color: rgba(255,255,255,0.85); font-size: 13.5px;
  line-height: 1.7; font-style: italic; flex: 1; overflow: hidden;
}
.testi-card-cite {
  color: var(--brand); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.05em; font-style: normal;
  display: block; margin-top: 16px; flex-shrink: 0;
}
@media (min-width: 768px) {
  .testi-ticker-wrap {
    padding: 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
  .testi-ticker-track {
    animation: testi-scroll 140s linear infinite;
  }
  .testi-ticker-wrap:hover .testi-ticker-track { animation-play-state: paused; }
  @keyframes testi-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .testi-card {
    flex: 0 0 360px;
    width: 360px;
    height: 360px;
  }
}

/* ─────────────────────────────────────────
   DECORATIVE TEXT
───────────────────────────────────────── */
.deco-text {
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.02em;
  color: #efefef; white-space: nowrap;
  pointer-events: none; user-select: none;
}
.deco-wrap       { margin-top: 48px; overflow: hidden; }
.deco-text-right { text-align: right; padding-right: 24px; overflow: hidden; text-overflow: ellipsis; }

/* Deco ticker */
.deco-ticker {
  display: flex;
  align-items: center;
  width: max-content;
  animation: deco-scroll 35s linear infinite;
}
.deco-ticker .deco-text { padding: 0 32px; }
.deco-sep { opacity: 0.3; padding: 0 !important; }

@keyframes deco-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   CTA
───────────────────────────────────────── */
.cta-inner { max-width: 560px; margin: 0 auto; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer   { background: var(--dark); }
.footer-inner  { padding: 40px 24px 32px; }
.footer-logo   { display: flex; align-items: center; text-decoration: none; margin-bottom: 20px; }
.badges-row    { display: flex; gap: 8px; margin-top: 16px; }
.badge         { background: rgba(255,255,255,0.1); border-radius: 3px; padding: 4px 10px; font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 600; }
.footer-col-heading { color: #fff; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.footer-address { color: rgba(255,255,255,0.42); font-size: 13px; line-height: 1.7; margin-bottom: 10px; }
.footer-contact { color: rgba(255,255,255,0.42); font-size: 13px; display: block; margin-bottom: 6px; }
.footer-contact-last { color: rgba(255,255,255,0.42); font-size: 13px; display: block; margin-bottom: 10px; }
.footer-reg    { color: rgba(255,255,255,0.28); font-size: 11px; line-height: 1.7; }
.socials-row   { display: flex; gap: 8px; margin-top: 20px; }
.footer-link   { color: rgba(255,255,255,0.45); font-size: 13px; text-decoration: none; display: block; margin-bottom: 8px; transition: color 0.15s; }
.footer-link:hover { color: var(--brand); }
@media (max-width: 767px) {
  .footer-grid > * { text-align: center; }
  .footer-logo, .socials-row { justify-content: center; }
}
.copyright-bar   { border-top: 1px solid rgba(255,255,255,0.08); }
.copyright-inner { padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.copyright-text  { color: rgba(255,255,255,0.25); font-size: 12px; }
.copyright-links { display: flex; gap: 20px; flex-wrap: wrap; }
.copyright-link  { color: rgba(255,255,255,0.25); font-size: 12px; text-decoration: none; transition: color 0.15s; }
.copyright-link:hover { color: rgba(255,255,255,0.5); }

/* ─────────────────────────────────────────
   SOCIAL ICONS
───────────────────────────────────────── */
.soc-btn {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); text-decoration: none;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.soc-btn:hover { color: #fff; border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); }

/* ─────────────────────────────────────────
   CONTACT FORM
───────────────────────────────────────── */
.contact-section {
  background-image:
    linear-gradient(to bottom, rgba(6,16,6,0.90) 0%, rgba(6,16,6,0.94) 100%),
    url('https://images.unsplash.com/photo-1565891741441-64926e441838?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 24px;
}
@media (max-width: 1023px) { .contact-section { background-attachment: scroll; } }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .contact-inner { grid-template-columns: 1fr 1.6fr; align-items: start; }
}

.contact-info-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -0.03em; color: #fff; margin-bottom: 16px;
}
.contact-info-p {
  color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.75; margin-bottom: 28px;
}
.contact-detail-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.contact-detail-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(235,104,35,0.18); border: 1px solid rgba(235,104,35,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); font-size: 13px; flex-shrink: 0;
}
.contact-detail-text { color: rgba(255,255,255,0.85); font-size: 13.5px; line-height: 1.5; }
.contact-detail-text a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.15s; }
.contact-detail-text a:hover { color: #fff; }

.contact-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.form-row {
  display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px;
}
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group-full { margin-bottom: 16px; }
.form-label {
  font-size: 12px; font-weight: 600; color: #444; letter-spacing: 0.03em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px; font-family: inherit;
  color: #1a1a1a;
  background: #f8f8f8;
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.18s, background 0.18s;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--brand);
  background: #fff;
}
.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.form-input::placeholder,
.form-textarea::placeholder { color: #aaa; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-submit { width: 100%; margin-top: 4px; justify-content: center; font-size: 13px; padding: 13px 24px; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-error-text { font-size: 12px; color: #dc2626; font-weight: 500; min-height: 16px; }
.form-global-error { font-size: 13px; color: #dc2626; font-weight: 500; margin-bottom: 12px; }
.form-input[aria-invalid="true"],
.form-select[aria-invalid="true"],
.form-textarea[aria-invalid="true"] { border-color: #dc2626; background: #fff8f8; }
.form-success-msg { display: none; text-align: center; padding: 48px 20px; }
.form-success-msg i { font-size: 52px; color: var(--brand); display: block; margin-bottom: 16px; }
.form-success-msg p { font-size: 16px; color: #333; font-weight: 500; line-height: 1.6; }

/* ─────────────────────────────────────────
   BACK TO TOP
───────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 100;
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--brand); color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.22s, transform 0.22s, background 0.15s;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: #c9551a; }
.back-to-top:active { transform: translateY(2px); }

/* ─────────────────────────────────────────
   MULTI-STEP FORMS
───────────────────────────────────────── */
.step-progress { display: flex; align-items: center; margin-bottom: 32px; }
.step-dot {
  width: 30px; height: 30px; border-radius: 50%;
  background: #e8e8e8; color: #aaa;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.2s, color 0.2s;
}
.step-dot.active { background: var(--brand); color: #fff; }
.step-dot.done { background: var(--blue); color: #fff; }
.step-line { flex: 1; height: 2px; background: #e8e8e8; transition: background 0.2s; }
.step-line.done { background: var(--blue); }
.form-step { display: none; }
.form-step.active { display: block; animation: nb-fade 0.2s ease; }
@keyframes nb-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.step-title { font-size: 1.15rem; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; letter-spacing: -0.01em; }
.step-subtitle { font-size: 13px; color: #888; margin-bottom: 24px; }

/* ─────────────────────────────────────────
   CASE STUDY PAGES
───────────────────────────────────────── */

/* Hero: background-image set per page */
.cs-hero {
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}
.cs-hero-sub {
  display: inline-block;
  background: rgba(235,104,35,0.12);
  border: 1px solid rgba(235,104,35,0.28);
  color: var(--brand);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em;
  padding: 6px 14px; border-radius: 6px; margin-top: 16px;
}

/* Breadcrumb */
.cs-breadcrumb {
  margin-top: 60px;
  background: #f6f6f6;
  border-bottom: 1px solid #e8e8e8;
  padding: 11px 0;
}
.cs-breadcrumb-inner { display: flex; align-items: center; flex-wrap: wrap; }
.cs-bc-link {
  color: #666; font-size: 12px; font-weight: 500;
  text-decoration: none; transition: color 0.15s;
}
.cs-bc-link:hover { color: var(--brand); }
.cs-bc-sep { color: #bbb; font-size: 12px; margin: 0 8px; }
.cs-bc-current { color: #aaa; font-size: 12px; }

/* Meta Bar */
.cs-meta-bar {
  background: #fff;
  border-bottom: 2px solid #f0f0f0;
  padding: 16px 0;
}
.cs-meta-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.cs-meta-left { display: flex; align-items: center; gap: 14px; }
.cs-meta-btn {
  background: var(--brand); color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 7px; white-space: nowrap;
}
.cs-meta-value { color: #1a1a1a; font-size: 15px; font-weight: 600; }
.cs-meta-date { color: #666; font-size: 13px; font-weight: 500; }

/* Executive Summary */
.cs-exec-summary {
  max-width: 820px;
  font-size: 16px; line-height: 1.78; color: #333;
  border-left: 3px solid var(--brand);
  padding-left: 20px; margin-top: 14px;
}

/* Scope Grid: background-image set per page */
.cs-scope-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 1023px) {
  .cs-scope-section { background-attachment: scroll; }
}
.cs-scope-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 600px) {
  .cs-scope-grid { grid-template-columns: 1fr 1fr; }
}
.cs-scope-block {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 28px 26px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.cs-scope-heading {
  display: block; font-size: 13.5px; font-weight: 700; color: #fff;
  border-bottom: 2px solid var(--brand);
  padding-bottom: 9px; margin-bottom: 14px;
}
.cs-scope-p { color: rgba(255,255,255,0.72); font-size: 13.5px; line-height: 1.75; }

/* Project Detail */
.cs-detail { max-width: 760px; }
.cs-detail-h4 {
  font-size: 14.5px; font-weight: 700; color: #1a1a1a;
  margin: 32px 0 10px;
}
.cs-detail-p { color: #555; font-size: 14px; line-height: 1.78; margin-bottom: 14px; }

/* Document Download */
.cs-doc-box {
  display: inline-flex; align-items: center; gap: 18px;
  border: 1px solid #e0e0e0; border-radius: 10px;
  padding: 20px 26px; text-decoration: none; background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.cs-doc-box:hover {
  border-color: var(--brand);
  box-shadow: 0 4px 18px rgba(235,104,35,0.1);
}
.cs-doc-icon { font-size: 30px; color: var(--brand); flex-shrink: 0; }
.cs-doc-name { font-size: 14px; font-weight: 600; color: #1a1a1a; display: block; }
.cs-doc-meta { font-size: 11.5px; color: #888; display: block; margin-top: 3px; }
.cs-doc-cta {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand); display: block; margin-top: 6px;
}

/* Related Projects */
.cs-related-section { background: #f9f9f9; }
.cs-related-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 20px; margin-top: 32px;
}
@media (min-width: 600px) { .cs-related-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cs-related-grid { grid-template-columns: 1fr 1fr 1fr; } }
.cs-related-card {
  display: block; text-decoration: none;
  border: 1px solid #e8e8e8; border-radius: 10px;
  overflow: hidden; background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.cs-related-card:hover {
  border-color: var(--brand);
  box-shadow: 0 6px 24px rgba(235,104,35,0.12);
}
.cs-related-thumb-wrap { position: relative; overflow: hidden; }
.cs-related-thumb { width: 100%; height: 170px; object-fit: cover; display: block; background: #1a1a1a; }
.cs-related-thumb-wrap .csl-sector-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(13,13,13,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.12);
}
.cs-related-body { padding: 18px 20px; }
.cs-related-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 6px; display: block;
}
.cs-related-h4 {
  font-size: 14px; font-weight: 700; color: #1a1a1a;
  margin-bottom: 5px; line-height: 1.35;
}
.cs-related-sub { font-size: 12.5px; color: #777; }

/* Tags */
.cs-tags-wrap { border-top: 1px solid #ebebeb; padding: 24px 0; }
.cs-tags-row { display: flex; flex-wrap: wrap; gap: 8px; }
.cs-tag {
  display: inline-block; background: #f2f2f2; color: #555;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em;
  padding: 6px 14px; border-radius: 20px;
}

/* Share Row */
.cs-share-wrap { padding: 18px 0 56px; }
.cs-share-row { display: flex; align-items: center; gap: 10px; }
.cs-share-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #aaa; margin-right: 4px;
}
.cs-share-link {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid #ddd; color: #666; text-decoration: none; font-size: 13px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.cs-share-link:hover {
  border-color: var(--brand); color: var(--brand);
  background: rgba(235,104,35,0.06);
}

/* ─────────────────────────────────────────
   ACCREDITATION LOGO TICKER
───────────────────────────────────────── */
.logo-grid {
  background: #fff;
  padding: 64px 0 48px;
  border-top: 1px solid rgba(30, 86, 151, 0.08);
  border-bottom: 1px solid rgba(30, 86, 151, 0.08);
  overflow: hidden;
}

.logo-grid__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.logo-ticker {
  overflow: hidden;
  width: 100%;
  padding: 1.5rem 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-ticker__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}

.logo-ticker__track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-placeholder {
  background: #f5f5f3;
  border-radius: 12px;
  height: 96px;
  width: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  transition: background 0.2s;
}

.logo-placeholder:hover { background: #ebebea; }

.accreditation-img {
  max-width: 80px;
  max-height: 72px;
  width: auto;
  height: auto;
  filter: grayscale(1) opacity(0.55);
  display: block;
  transition: filter 0.25s;
}

.logo-placeholder:hover .accreditation-img {
  filter: grayscale(0) opacity(1);
}

/* ─────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.soc-btn i { font-size: 13px; }
.sec-alt { background: #f9f9f9; }
