/* ============================================================
   InfoTech Solutions — Main Stylesheet
   Colour Scheme: Navy / Steel Blue / Light Mode
   ============================================================ */

/* Google Fonts loaded via <link> in header.php (avoids render-blocking @import) */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --announce-h:    38px;
  --nav-h:         72px;
  --header-h:      110px;
  --green-dark:    #0d1f3c;
  --green-deep:    #102a52;
  --green-mid:     #1a4a8a;
  --green-main:    #1e5fb5;
  --green-bright:  #2979e8;
  --green-accent:  #5ba3f5;
  --green-pale:    #edf3fc;
  --green-border:  rgba(41,121,232,0.22);
  --lime:          #3a8fd6;
  --lime-light:    #7ec3f9;
  --white:         #ffffff;
  --off-white:     #f5f8fd;
  --grey-100:      #eef2f8;
  --grey-200:      #d4dff0;
  --grey-400:      #6b82a8;
  --grey-600:      #3a526e;
  --text:          #0d1f3c;
  --text-light:    #3a526e;
  --shadow-sm:     0 2px 12px rgba(13,31,60,0.08);
  --shadow-md:     0 8px 32px rgba(13,31,60,0.12);
  --shadow-lg:     0 20px 60px rgba(13,31,60,0.18);
  --radius:        4px;
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; background: #0b1730; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow: auto;
  overflow-x: hidden;
  line-height: 1.6;
}
body.smooth-active {
  overflow: hidden;
}
body.loader-active { overflow: hidden; }
body.loader-active #smooth-content > *:not(#truck-loader) { opacity: 0; visibility: hidden; }
body.loader-revealing .hero-tag,
body.loader-revealing .hero-title-shell,
body.loader-revealing .hero-subtitle,
body.loader-revealing .hero-btns,
body.loader-revealing .hero-proof,
body.loader-revealing .hero-right,
body.loader-revealing .hero-ticker,
body.loader-revealing .announce-bar,
body.loader-revealing nav { opacity: 0 !important; visibility: hidden !important; }

#smooth-wrapper {
  overflow: visible;
  position: relative;
  width: 100%;
  min-height: 100vh;
}
#smooth-content { overflow: visible; width: 100%; }
html, #smooth-wrapper, #smooth-content {
  overflow-x: hidden;
}
body.smooth-active #smooth-wrapper {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
body.smooth-active #smooth-content {
  overflow: visible;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── SCROLL ANIMATIONS ──────────────────────────────────────── */
/* GSAP drives opacity/transform on these classes — no CSS initial states */
.reveal, .reveal-left, .reveal-right, .reveal-scale { will-change: transform, opacity; }
.stagger > * { will-change: transform, opacity; }

/* ── ANNOUNCEMENT BAR ──────────────────────────────────────── */
.announce-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: var(--announce-h, 38px) !important;
  background: linear-gradient(90deg, #eaf4ff 0%, #d9ecff 52%, #edf6ff 100%) !important;
  z-index: 9999 !important;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  border-bottom: 1px solid rgba(41,121,232,0.28);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.65);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
}
body.announce-scrolled .announce-bar {
  transform: translateY(-100%);
}
.announce-bar:not(.announce-bar) { display: none; } /* specificity anchor, never matches */
.announce-content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(22px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 0;
}
.announce-label {
  display: inline-flex;
  align-items: center;
  color: var(--green-deep);
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.announce-message {
  min-width: 0;
  overflow: hidden;
  color: var(--green-dark);
  font-family: 'Barlow', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.announce-link {
  flex: 0 0 auto;
  color: var(--green-main);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  border-bottom: 1px solid rgba(30,95,181,0.38);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.announce-link:hover {
  color: var(--green-bright);
  border-color: currentColor;
}
@media (max-width: 720px) {
  .announce-content {
    justify-content: flex-start;
    gap: 10px;
    padding: 0 16px;
  }
  .announce-label {
    display: none;
  }
  .announce-message,
  .announce-link {
    font-size: 0.7rem;
  }
}

/* ── TOPBAR — hidden, replaced by announce bar ──────────────── */
.topbar { display: none; }
.topbar a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.topbar a:hover { color: var(--lime-light); }
.topbar-right { display: flex; gap: 24px; align-items: center; }
.topbar-sep { color: rgba(255,255,255,0.2); }

/* ── NAVIGATION ─────────────────────────────────────────────── */
nav {
  background: var(--green-dark);
  border-bottom: 3px solid var(--green-bright);
  padding: 0 60px;
  display: flex;
  align-items: stretch;
  position: fixed;
  top: var(--announce-h, 38px);
  width: 100%;
  z-index: 10000;
  box-shadow: 0 4px 24px rgba(13,31,60,0.35);
  transition: top 0.38s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(13,31,60,0.5); }
body.announce-scrolled nav { top: 0 !important; }

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  margin-right: 48px;
}
.logo-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-text .lt1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #ffffff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.1;
}
.logo-text .lt2 {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: stretch;
  list-style: none;
  flex: 1;
  gap: 0;
}
.nav-links > li {
  position: relative;
  display: flex;
  align-items: stretch;
}
.nav-links > li > a,
.nav-links > li > span {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > span:hover,
.nav-links > li > a.active {
  color: #fff;
  border-bottom-color: var(--green-accent);
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-top: 3px solid var(--green-main);
  min-width: 250px;
  box-shadow: var(--shadow-lg);
  z-index: 600;
  animation: dropIn 0.2s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown a {
  display: block;
  padding: 11px 20px;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--grey-100);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.dropdown a:hover {
  background: var(--green-pale);
  color: var(--green-mid);
  padding-left: 26px;
}
.nav-links > li:hover .dropdown { display: block; }

/* ── MEGA MENU ──────────────────────────────────────────── */
.has-mega > a { display: flex; align-items: center; gap: 4px; }
.has-mega .nav-chevron {
  display: inline-block;
  transition: transform 0.22s ease;
  font-style: normal;
}
.has-mega.is-open .nav-chevron { transform: rotate(180deg); }

.mega-overlay {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: rgba(13, 31, 60, 0.42);
  z-index: 489;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
body.announce-scrolled .mega-overlay { top: var(--nav-h); }

.mega-panel {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  z-index: 490;
  border-top: 3px solid var(--green-bright);
  box-shadow: 0 32px 80px rgba(13, 31, 60, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  display: none;
}
.mega-panel.is-ready { display: block; }
body.announce-scrolled .mega-panel { top: var(--nav-h); }

.mega-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 270px;
}

.mega-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 28px 36px 28px 0;
  gap: 3px;
  border-right: 1px solid var(--grey-100);
}

.mega-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  border-left: 2px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}
.mega-item:hover {
  background: var(--off-white);
  border-left-color: var(--green-bright);
}
.mega-item-tag {
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-main);
  line-height: 1;
}
.mega-item-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.3px;
  line-height: 1.15;
}
.mega-item-desc {
  font-size: 0.76rem;
  color: var(--text-light);
  line-height: 1.45;
}

.mega-sidebar {
  background: var(--green-dark);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mega-sidebar::before {
  content: '';
  position: absolute;
  bottom: -70px; right: -70px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41,121,232,0.24), transparent 70%);
  pointer-events: none;
}
.mega-sidebar::after {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41,121,232,0.12), transparent 70%);
  pointer-events: none;
}
.mega-sidebar-eyebrow {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 8px;
  position: relative;
}
.mega-sidebar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  line-height: 1.0;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  position: relative;
}
.mega-sidebar-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 22px;
  position: relative;
}
.mega-sidebar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  align-self: flex-start;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mega-sidebar-cta:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(41, 121, 232, 0.45);
}
.mega-sidebar-stats {
  display: flex;
  gap: 18px;
  position: relative;
}
.mega-stat { display: flex; flex-direction: column; gap: 2px; }
.mega-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.mega-stat-lbl {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* hide mega on small screens */
@media (max-width: 1023px) {
  .mega-panel, .mega-overlay { display: none !important; }
  .has-mega .dropdown { display: none; }
  .has-mega:hover .dropdown { display: block; }
}

/* Nav CTAs */
.nav-ctas { display: flex; align-items: center; gap: 10px; margin-left: auto; padding: 12px 0; position: relative; }
.nav-socials,
.mm-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-socials {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
}
.social-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.72);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.social-link:hover,
.social-link:focus-visible {
  background: rgba(41,121,232,0.22);
  border-color: rgba(126,195,249,0.6);
  color: #fff;
  transform: translateY(-1px);
}
.social-link:focus-visible {
  outline: 2px solid rgba(126,195,249,0.9);
  outline-offset: 2px;
}
.social-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-link-facebook span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.header-contact {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.header-contact-btn {
  position: relative;
  z-index: 2;
  min-height: 34px;
  line-height: 1;
}
.header-contact-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 250px;
  padding: 12px;
  background: rgba(7, 24, 42, 0.98);
  border: 1px solid rgba(91,163,245,0.28);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.header-contact:hover .header-contact-panel,
.header-contact:focus-within .header-contact-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.header-contact-panel a {
  display: block;
  padding: 8px 10px;
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  line-height: 1.25;
  text-decoration: none;
  border-radius: calc(var(--radius) - 2px);
  transition: background 0.16s ease, color 0.16s ease;
}
.header-contact-panel a:hover,
.header-contact-panel a:focus-visible {
  background: rgba(41,121,232,0.22);
  color: #fff;
  outline: none;
}

@media (min-width: 1025px) {
  nav {
    position: fixed;
  }
  .nav-logo,
  .nav-ctas {
    position: relative;
    z-index: 2;
  }
  .nav-links {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    flex: none;
    transform: translateX(-50%);
    z-index: 1;
  }
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  color: white;
  box-shadow: 0 4px 14px rgba(91,163,245,0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(91,163,245,0.45);
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
}
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-white {
  background: white;
  color: var(--green-deep);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid rgba(13,31,60,0.35);
}
.btn-outline-white:hover { background: rgba(13,31,60,0.06); color: var(--green-main); }
.btn-sm { padding: 7px 16px; font-size: 0.78rem; }

/* ── SECTION HELPERS ────────────────────────────────────────── */
.section-wrap { padding: 90px 60px; }
.section-wrap-sm { padding: 60px 60px; }
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--green-main);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green-main);
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.5px;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 0.96rem;
  line-height: 1.75;
  max-width: 560px;
  font-weight: 300;
  margin-top: 14px;
}
.section-header { margin-bottom: 52px; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  background: #f0f4fb;
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: 1fr 480px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  isolation: isolate;
}

/* No decoration on hero left */
.hero::before { display: none; }

/* Blue glow top-left */
.hero::after {
  content: '';
  position: absolute;
  top: -80px; left: -60px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(41,121,232,0.09) 0%, transparent 70%);
  animation: breathe 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes breathe {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.15); opacity: 1; }
}

.hero-content {
  padding: clamp(56px, 8vh, 90px) 70px clamp(56px, 8vh, 90px) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(30,95,181,0.07);
  border: 1px solid rgba(30,95,181,0.22);
  color: var(--green-main);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  margin-bottom: 28px;
  width: fit-content;
  opacity: 0;
  animation: fadeSlideUp 0.6s 0.2s forwards;
}
.hero-tag-dot {
  width: 7px; height: 7px;
  background: var(--green-main);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.03;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeSlideUp 0.6s 0.4s forwards;
}
.hero h1 em { color: var(--green-main); font-style: normal; }

.hero-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 500px;
  margin: 22px 0 38px;
  font-weight: 400;
  opacity: 0;
  animation: fadeSlideUp 0.6s 0.6s forwards;
}
.hero-subtitle strong { color: var(--green-dark); font-weight: 700; }

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.6s 0.8s forwards;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 54px;
  padding-top: 36px;
  border-top: 1px solid rgba(13,31,60,0.1);
  opacity: 0;
  animation: fadeSlideUp 0.6s 1s forwards;
}
.hero-stat .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-main);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.72rem;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-top: 3px;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero visual — dark navy side panel */
.hero-visual {
  background: linear-gradient(160deg, #0f2240 0%, #162e55 50%, #0f2240 100%);
  border-left: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 36px;
  position: relative;
  overflow: visible;
  z-index: 2;
  min-height: 100%;
}
/* Soft radial glow only — no grids */
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(41,121,232,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 70% 80%, rgba(91,163,245,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-visual::after { display: none; }

/* legacy ring/orbit elements hidden */
.hero-visual-inner, .ring, .ring-center, .orbit-node, .hero-illus { display: none; }


/* ── INDUSTRY TICKER ────────────────────────────────────────── */
.ticker {
  background: var(--green-deep);
  padding: 18px 0;
  overflow: hidden;
  border-bottom: 2px solid var(--green-mid);
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}

/* ── VIDEO SLOT (Homepage) ─────────────────────────────────── */
.video-slot {
  padding-top: 0;
}
.video-shell {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 26px;
  align-items: stretch;
  border-radius: 22px;
  padding: 26px;
  background: linear-gradient(160deg, rgba(7,24,16,0.86), rgba(5,18,12,0.88));
  border: 1px solid rgba(41,121,232,0.18);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  overflow: hidden;
  position: relative;
}
.video-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 15% 35%, rgba(41,121,232,0.12) 0%, transparent 65%),
    radial-gradient(760px 420px at 80% 65%, rgba(62,170,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.video-copy {
  position: relative;
  z-index: 1;
}
.video-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  letter-spacing: 0.3px;
}
/* .video-frame / .play-badge removed — superseded by product showcase styles below */
.demo-video,
.demo-embed {
  width: 100%;
  height: 100%;
  display: block;
}
.demo-embed {
  aspect-ratio: 16/9;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.ticker-item .dot {
  width: 5px;
  height: 5px;
  background: var(--green-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SERVICES SECTION ───────────────────────────────────────── */
/* Trust Manifesto */
.trust-manifesto {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fe 100%);
  border-top: 1px solid rgba(13,31,60,0.06);
  border-bottom: 1px solid rgba(13,31,60,0.08);
}
.trust-manifesto-inner {
  width: min(100%, 1560px);
  margin: 0 auto;
  padding: clamp(76px, 9vw, 132px) clamp(52px, 4vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.65fr);
  gap: clamp(36px, 5vw, 78px);
  align-items: center;
}
.trust-eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--green-main);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}
.trust-title {
  max-width: 980px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.9rem, 4.7vw, 5.65rem);
  font-weight: 800;
  line-height: 0.88;
  color: var(--green-dark);
  letter-spacing: 0;
  text-transform: uppercase;
}
.trust-line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  transform-origin: 0 50%;
}
.trust-line-priority {
  letter-spacing: 0.01em;
}
.trust-line-creating,
.trust-line-efficient {
  margin-top: 0.02em;
}
.trust-title em {
  color: var(--green-main);
  font-style: normal;
}
.trust-manifesto-right {
  position: relative;
  padding-left: clamp(24px, 3vw, 42px);
  --trust-rule-scale: 1;
}
.trust-manifesto-right::before {
  content: '';
  position: absolute;
  top: 0.3em;
  bottom: 0.5em;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green-bright), rgba(41,121,232,0.08));
  transform: scaleY(var(--trust-rule-scale));
  transform-origin: top;
}
.trust-copy {
  margin: 0;
  color: var(--text-light);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 400;
  line-height: 1.85;
}
.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(41,121,232,0.18);
  background: rgba(255,255,255,0.72);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--grey-200);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(41,121,232,0.34);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

/* Banner image area */
.sc-banner {
  position: relative;
  height: 178px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--green-pale);
}
.sc-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.service-card:hover .sc-banner img {
  transform: scale(1.035);
}

/* Card body */
.sc-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.sc-desc {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
}
.sc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-main);
  opacity: 1;
  transition: color 0.2s ease;
}
.service-card:hover .sc-arrow { color: var(--green-bright); }

/* Legacy sc-icon hidden (no longer used on homepage) */
.sc-icon { display: none; }

/* ── NEWS & CASE STUDIES ─────────────────────────────────────── */
.content-section {
  background: var(--white);
  padding-top: 64px;
  padding-bottom: 64px;
}

.tabs-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--grey-200);
  margin-bottom: 44px;
}
.tab-btn {
  padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--grey-400);
  border: none;
  background: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.tab-btn.active { color: var(--green-main); border-bottom-color: var(--green-main); }
.tab-btn:hover:not(.active) { color: var(--green-dark); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* News grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.news-carousel {
  --drag-x: 50%;
  --drag-y: 50%;
  position: relative;
  overflow: hidden;
  margin-left: -60px;
  margin-right: -60px;
  padding: 4px 60px 18px;
  touch-action: pan-y;
}
.news-carousel::before,
.news-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}
.news-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--white), rgba(255,255,255,0));
}
.news-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--white), rgba(255,255,255,0));
}
.news-carousel .news-grid {
  display: flex;
  grid-template-columns: none;
  gap: 18px;
  width: max-content;
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.news-carousel.is-dragging .news-grid { cursor: grabbing; }
.news-carousel .news-card {
  flex: 0 0 clamp(270px, 28vw, 340px);
  cursor: grab;
}
.news-carousel.is-dragging .news-card { cursor: grabbing; }
.news-carousel .news-card.featured { flex-basis: clamp(280px, 30vw, 360px); }
.news-drag-cue {
  position: absolute;
  left: var(--drag-x);
  top: var(--drag-y);
  z-index: 4;
  transform: translate(-50%, -50%) scale(0.9);
  pointer-events: none;
  opacity: 0;
  padding: 9px 13px;
  border: 1px solid rgba(91,163,245,0.35);
  background: rgba(8,22,44,0.86);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(8,22,44,0.24);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.news-carousel:hover .news-drag-cue,
.news-carousel.is-dragging .news-drag-cue {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.news-card {
  background: var(--off-white);
  overflow: hidden;
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1.5px solid transparent;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-border);
}
.news-card.featured { grid-row: auto; }
.news-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.news-card.featured .news-thumb { aspect-ratio: 16/9; }
.news-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,60,0.72) 0%, transparent 60%);
}
.news-body { padding: 16px 18px 18px; }
.news-meta {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-main);
  margin-bottom: 8px;
}
.news-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card.featured .news-card-title { font-size: 1.12rem; }
.news-excerpt {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.55;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-main);
  text-decoration: none;
  cursor: pointer;
  transition: gap 0.2s;
}
.news-card:hover .news-more { gap: 10px; }

/* Case study grid */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case-card {
  border: 1.5px solid var(--grey-200);
  padding: 22px 22px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--green-mid), var(--green-accent));
}
.case-card:hover {
  border-color: var(--green-main);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.case-sector {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.case-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 12px;
}
.case-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 18px;
}
.case-result {
  background: var(--green-pale);
  border-left: 3px solid var(--green-main);
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-dark);
}
.case-result strong { color: var(--green-mid); }

/* ── ABOUT BANNER ───────────────────────────────────────────── */
.about-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deep) 100%);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: crosshair;
}
.about-banner-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.about-banner > *:not(.about-banner-canvas) {
  position: relative;
  z-index: 1;
}
.about-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41,121,232,0.12) 0%, transparent 70%);
}
.about-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  line-height: 1.1;
}
.about-banner h2 em { color: var(--green-accent); font-style: normal; }
.about-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 600px;
  margin-top: 14px;
  font-weight: 300;
}
.about-ctas { display: flex; flex-direction: column; gap: 12px; }

/* ── WHERE WE OPERATE ─────────────────────────────────────────── */
.operate-section {
  background: #fff;
  position: relative;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.operate-two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 700px;
  align-items: stretch;
}
.operate-map-panel {
  padding: 52px 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #f7fafd;
  border-right: 1px solid var(--grey-200);
}
.omp-header { flex-shrink: 0; }
.omp-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--green-dark);
  line-height: 1.05;
  margin: 6px 0 8px;
  white-space: nowrap;
}
.omp-title em { color: var(--green-bright); font-style: normal; }
.omp-sub { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; max-width: 420px; }

/* Globe frame */
.world-map-wrap {
  flex: 1;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #060e1c;
  border: 1px solid rgba(41,121,232,0.22);
  box-shadow: 0 4px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(91,163,245,0.08);
  width: 100%;
  min-height: clamp(440px, 58vh, 580px);
}

#globe-container {
  position: absolute;
  inset: 0;
  cursor: grab;
  overflow: hidden;
}
#globe-container:active { cursor: grabbing; }
#globe-container canvas { display: block; width: 100% !important; height: 100% !important; }

.globe-drag-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 5;
  white-space: nowrap;
}

.map-stat-pill {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 3;
  background: rgba(13,31,60,0.88);
  border-radius: 999px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(91,163,245,0.22);
}
.msp-num { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 800; color: #fff; }
.msp-lbl { font-size: 0.6rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.55); }

.map-region-strip { display: flex; flex-wrap: wrap; gap: 5px 18px; flex-shrink: 0; }
.mrs-item { display: flex; align-items: center; gap: 6px; font-size: 0.7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); }
.mrs-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 4px rgba(41,121,232,0.5); flex-shrink: 0; }
.mrs-dot-muted { background: var(--grey-300) !important; box-shadow: none !important; }

.operate-cards-panel {
  padding: 52px 32px 44px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
}
.operate-card {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 1px 6px rgba(13,31,60,0.04);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.operate-card:hover {
  background: var(--green-pale);
  border-color: rgba(41,121,232,0.35);
  transform: translateX(3px);
  box-shadow: 0 4px 18px rgba(41,121,232,0.10);
}
.oc-flag { font-size: 1.6rem; flex-shrink: 0; padding-top: 1px; }
.oc-content { flex: 1; min-width: 0; }
.oc-title { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--green-dark); }
.oc-stat { font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-bright); margin: 2px 0 5px; }
.oc-sub { font-size: 0.78rem; color: var(--text-light); line-height: 1.55; margin-bottom: 8px; }
.oc-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.pill {
  display: inline-flex; align-items: center; padding: 3px 9px; border-radius: 999px;
  border: 1px solid rgba(41,121,232,0.2); background: rgba(41,121,232,0.06);
  color: var(--green-mid); font-size: 0.65rem; font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}
.operate-card:hover .pill { border-color: rgba(41,121,232,0.38); background: rgba(41,121,232,0.12); }
.customers-block{margin-top:22px;border:1px solid rgba(41,121,232,.14);background:#fff;border-radius:18px;padding:18px;box-shadow:var(--shadow-md)}
.customers-head{display:flex;justify-content:space-between;align-items:flex-end;gap:18px;flex-wrap:wrap;margin-bottom:14px}
.customers-title{margin:6px 0 6px;font-size:22px;letter-spacing:-.3px;color:var(--green-dark)}
.customers-sub{margin:0;color:var(--text-light);max-width:720px}

.logo-grid{display:grid;grid-template-columns:repeat(5, minmax(0,1fr));gap:12px}
.logo-slot{height:74px;border-radius:14px;border:1px dashed rgba(41,121,232,.28);background:var(--off-white);display:flex;align-items:center;justify-content:center;overflow:hidden}
.logo-slot img{max-width:85%;max-height:56px;filter:saturate(1.03);opacity:.95}

/* ── CUSTOMERS SHOWCASE ── */
.customers-showcase{
  margin-top: 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deep) 55%, var(--green-mid) 100%);
  border-radius: 0;
  padding: 52px 56px 56px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(41,121,232,0.2);
}
.customers-showcase::before{
  content:'';
  position:absolute;
  top:-100px; right:-80px;
  width:420px; height:420px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(41,121,232,0.18) 0%, transparent 68%);
  pointer-events:none;
}
.customers-showcase::after{
  content:'';
  position:absolute;
  bottom:-60px; left:-60px;
  width:320px; height:320px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(91,163,245,0.10) 0%, transparent 68%);
  pointer-events:none;
}
.customers-showcase-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
  margin-bottom:36px;
  position:relative;
  z-index:1;
}
.customers-showcase-left{ flex:1; }
.customers-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:0.72rem;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(255,255,255,0.55);
  margin-bottom:12px;
}
.customers-badge-dot{
  width:7px; height:7px;
  border-radius:50%;
  background:var(--green-accent);
  box-shadow:0 0 8px var(--green-accent);
  animation: livePulse 2s ease-in-out infinite;
}
.customers-showcase-title{
  font-family:'Barlow Condensed', sans-serif;
  font-size:clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight:800;
  text-transform:uppercase;
  color:white;
  line-height:1.1;
  margin:0 0 8px;
}
.customers-showcase-title em{ color:var(--green-accent); font-style:normal; }
.customers-showcase-sub{
  color:rgba(255,255,255,0.58);
  font-size:0.92rem;
  max-width:520px;
  line-height:1.65;
  font-weight:300;
  margin:0;
}

/* Logo auto-scroll track */
.customers-logo-track-wrap{
  position:relative;
  overflow:hidden;
  z-index:1;
}
.customers-logo-track{
  display:flex;
  gap:16px;
  animation:logoScroll 32s linear infinite;
  width:max-content;
}
.customers-logo-track:hover{ animation-play-state:paused; }
@keyframes logoScroll{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}
.clogo-slot{
  flex-shrink:0;
  width:160px; height:76px;
  border-radius:14px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.14);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  transition:background 0.3s, border-color 0.3s, transform 0.3s;
  backdrop-filter:blur(4px);
}
.clogo-slot:hover{
  background:rgba(255,255,255,0.16);
  border-color:rgba(91,163,245,0.55);
  transform:translateY(-3px);
}
.clogo-slot img{
  max-width:80%; max-height:52px;
  filter:brightness(0) invert(1);
  opacity:0.68;
  transition:opacity 0.3s;
}
.clogo-slot:hover img{ opacity:0.95; }

.logo-track-fade{
  position:absolute;
  top:0; bottom:0;
  width:120px;
  pointer-events:none;
  z-index:2;
}
.logo-track-fade-l{
  left:0;
  background:linear-gradient(90deg, var(--green-dark), transparent);
}
.logo-track-fade-r{
  right:0;
  background:linear-gradient(-90deg, var(--green-dark), transparent);
}

/* ── EXTRA ANIMATIONS & EFFECTS ─────────────────────────────── */

/* Service card tilt — handled via JS mousemove */

/* Stat items animated glow on hover */
.stat-item{
  transition: background 0.3s;
  position:relative;
}
.stat-item:hover .stat-num{
  text-shadow: 0 0 24px rgba(255,255,255,0.5);
}



/* Form input focus glow */
.contact-section input:focus,
.contact-section select:focus,
.contact-section textarea:focus{
  outline:none;
  border-color: var(--green-accent);
  box-shadow: 0 0 0 3px rgba(91,163,245,0.18);
  transition: box-shadow 0.2s, border-color 0.2s;
}

/* Section label entrance */
.section-label{
  transition-delay: 0.1s;
}

/* Ticker item hover */
.ticker-item{
  transition: color 0.2s;
}
.ticker-item:hover{ color: var(--lime-light); }

/* Floating badge extra glow on hover */
.dash-float-badge:hover{
  border-color: rgba(91,163,245,0.6);
  background: rgba(13,30,61,0.95);
}

/* Hero stat number counting glow */
.hero-stat .num{
  transition: color 0.5s;
}

/* Customers section responsive */
@media (max-width:900px){
  .customers-showcase{ padding:32px 24px 28px; }
  .customers-showcase-header{ flex-direction:column; align-items:flex-start; }
  .clogo-slot{ width:130px; height:66px; }
}
@media (max-width:640px){
  .customers-showcase{ padding:24px 16px 20px; }
  .clogo-slot{ width:110px; height:60px; }
}
.stats-bar {
  background: var(--green-main);
  padding: 48px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

/* ── CONTACT MAP CONTROLS ────────────────────────────────────── */
.map-ctrl-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  color: var(--green-main);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 6px;
  border: 1px solid rgba(41,121,232,0.22);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, box-shadow 0.15s;
}
.map-ctrl-btn:hover {
  background: var(--green-pale);
  box-shadow: 0 3px 12px rgba(41,121,232,0.18);
}
.map-ctrl-reset {
  width: 30px;
  height: 30px;
  padding: 0;
  justify-content: center;
  margin-top: 4px;
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-section { background: var(--grey-100); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 70px; }
.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.ci-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: white;
}
.ci-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 3px;
}
.ci-value { font-size: 0.9rem; color: var(--text); font-weight: 500; }

/* Forms */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  color: var(--text);
  padding: 11px 15px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: var(--radius);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(91,163,245,0.16);
}
.form-group textarea { height: 120px; resize: vertical; }
.captcha-group {
  border-top: 1px solid var(--grey-200);
  padding-top: 16px;
  margin-top: 4px;
}
.captcha-group input[type="number"] { max-width: 220px; }
.form-submit { width: 100%; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(91,163,245,0.22), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(41,121,232,0.22), transparent 34%),
    linear-gradient(145deg, #071225 0%, #0d1f3c 44%, #102a52 100%);
  color: rgba(255,255,255,0.72);
  padding: clamp(48px, 6vw, 78px) clamp(22px, 5vw, 72px) 30px;
}
footer.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, transparent 0%, rgba(91,163,245,0.08) 50%, transparent 100%);
  opacity: 0.45;
}
footer.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7,18,37,0.08), rgba(7,18,37,0.76));
}
.footer-underlay-active footer.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  min-height: min(76svh, 820px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}
.footer-underlay-active #smooth-content > [data-barba="wrapper"] {
  position: relative;
  z-index: 1;
  background: var(--white);
}
.footer-underlay-active footer.site-footer.is-revealing {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.site-footer__glow { display: none; }
.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 4vw, 54px);
  max-width: 1440px;
  min-height: inherit;
  margin: 0 auto;
}
.site-footer__brand-row,
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.site-footer__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.site-footer__logo-name,
.site-footer__logo-sub {
  display: block;
}
.site-footer__logo-name {
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}
.site-footer__logo-sub {
  margin-top: 5px;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.site-footer__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.72);
  font-size: 0.86rem;
}
.site-footer__cta a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(91,163,245,0.42);
  background: rgba(41,121,232,0.16);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.site-footer__cta a:hover {
  background: rgba(41,121,232,0.28);
  border-color: rgba(126,195,249,0.68);
  transform: translateY(-1px);
}
.site-footer__wordmark {
  max-width: 12ch;
  color: rgba(255,255,255,0.95);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.2rem, 7.5vw, 7.8rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}
.site-footer__main {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(150px, 0.75fr));
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}
.site-footer nav {
  position: static !important;
  top: auto !important;
  width: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.site-footer__intro p {
  max-width: 470px;
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 0.95rem;
  line-height: 1.75;
}
.site-footer__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.site-footer__stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(91,163,245,0.22);
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer__stats strong {
  color: var(--lime-light);
  font-size: 0.84rem;
}
.site-footer__col {
  display: grid;
  gap: 7px;
}
.site-footer__col h4 {
  margin: 0 0 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(91,163,245,0.2);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}
.site-footer__col a,
.site-footer__legal a {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  line-height: 1.35;
  transition: color 0.18s ease, transform 0.18s ease;
}
.site-footer__col a:hover,
.site-footer__legal a:hover {
  color: var(--lime-light);
  transform: translateX(4px);
}
.site-footer__bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(91,163,245,0.18);
  color: rgba(255,255,255,0.46);
  font-size: 0.78rem;
}
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  justify-content: flex-end;
}

/* ── MODAL ───────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13,31,60,0.88);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.modal-backdrop.open { display: flex; animation: backdropIn 0.25s ease; }
@keyframes backdropIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: var(--white);
  max-width: 720px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s cubic-bezier(0.4,0,0.2,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.93) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header {
  background: var(--green-dark);
  padding: 26px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modal-sector { font-size: 0.68rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green-accent); margin-bottom: 6px; }
.modal-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.7rem; font-weight: 800; color: white; text-transform: uppercase; line-height: 1.1; }
.modal-close {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 16px;
  transition: background 0.2s;
  border-radius: 2px;
}
.modal-close:hover { background: rgba(255,255,255,0.2); }
.modal-body { padding: 30px; }
.modal-date { font-size: 0.76rem; color: var(--grey-400); font-weight: 600; margin-bottom: 18px; }
.modal-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; font-weight: 300; }
.modal-text p { margin-bottom: 14px; }
.modal-result {
  background: var(--green-pale);
  border-left: 4px solid var(--green-main);
  padding: 14px 18px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
}
.modal-result strong { color: var(--green-mid); }

/* ── NOTIFICATION TOAST ─────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--green-dark);
  color: white;
  padding: 14px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  border-left: 4px solid var(--green-accent);
  z-index: 9999;
  transform: translateX(140%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  max-width: 340px;
  box-shadow: var(--shadow-lg);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.toast.show { transform: translateX(0); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 70px 60px; }
  .trust-manifesto-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .trust-title {
    max-width: 980px;
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card.featured { grid-column: span 2; }
  .site-footer__main { grid-template-columns: 1fr 1fr; }
  .site-footer__intro { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .section-wrap, .section-wrap-sm { padding: 60px 30px; }
  .news-carousel {
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .news-carousel .news-card,
  .news-carousel .news-card.featured {
    flex-basis: min(82vw, 330px);
  }
  nav, .topbar { padding: 0 24px; }
  .topbar { padding: 8px 24px; }
  .video-shell { grid-template-columns: 1fr; }
  .video-frame { min-height: 260px; }
  .about-banner { padding: 50px 30px; grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2,1fr); padding: 40px 30px; gap: 30px 0; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.2); }
  .trust-manifesto-inner { padding: 66px 30px; }
  .trust-manifesto-right { padding-left: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  footer { padding: 40px 24px 20px; }
  .site-footer__brand-row,
  .site-footer__bottom,
  .site-footer__cta {
    align-items: flex-start;
    flex-direction: column;
  }
  /* 3-col nav on tablet since each col is now just one link */
  .site-footer__main {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  .site-footer__intro { grid-column: 1 / -1; }
  /* Hide individual product/page links — just show the section heading link */
  .site-footer__col > a {
    display: none;
  }
  /* Style the h4 link to look like a nav item */
  .site-footer__col h4 a {
    color: #fff;
    text-decoration: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
  }
  .site-footer__col h4 a:hover {
    color: var(--lime-light);
  }
  /* Smaller wordmark on tablet/mobile */
  .site-footer__wordmark {
    font-size: clamp(2rem, 8vw, 3.6rem);
    line-height: 0.85;
  }
  .site-footer__legal {
    justify-content: flex-start;
  }
}

/* ── HAMBURGER BUTTON ───────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: #0b1829;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--header-h, 110px) + 3px);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
body.announce-scrolled .mobile-menu {
  padding-top: calc(var(--nav-h, 72px) + 3px);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}
.mobile-menu-backdrop.is-open { opacity: 1; pointer-events: auto; }

.mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: var(--nav-h, 72px);
  min-height: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.mm-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.mm-logo img { border-radius: 4px; }
.mm-logo strong { color: var(--green-accent); font-style: normal; }
.mm-close {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  line-height: 1;
  padding: 0;
}
.mm-close:hover, .mm-close:active { background: rgba(255,255,255,0.16); color: #fff; border-color: rgba(255,255,255,0.4); }

.mm-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}
.mm-link {
  display: flex;
  align-items: center;
  padding: 16px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.mm-link:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.mm-link:hover, .mm-link:active { background: rgba(255,255,255,0.05); color: #fff; padding-left: 34px; }

.mm-footer {
  padding: 24px 24px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.mm-cta-primary {
  display: block;
  background: var(--green-bright);
  color: #fff;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.mm-cta-secondary {
  display: block;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 13px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}
.mm-socials {
  justify-content: center;
  padding: 2px 0 4px;
}
.mm-socials .social-link {
  width: 40px;
  height: 40px;
}
.mm-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
}
.mm-contact a {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  text-align: center;
  text-decoration: none;
}
.mm-contact a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 1024px) {
  .nav-links, .nav-ctas { display: none; }
  .nav-hamburger { display: flex; }
  nav { padding: 0 20px; }
  .logo-text .lt2 { display: none; }
}

@media (max-width: 640px) {
  /* Disable footer underlay on small phones — too tall to reveal cleanly */
  .footer-underlay-active footer.site-footer {
    position: relative;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    min-height: 0;
  }

  .nav-links, .topbar-right, .nav-ctas { display: none; }

  /* Hero */
  .hero-content { padding: 44px 20px 40px; }
  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .hero-subtitle { font-size: 0.88rem; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-stats { gap: 20px; }
  .hero-proof { flex-wrap: wrap; gap: 14px; }
  .hero-proof-sep { display: none; }

  /* Sections */
  .section-wrap, .section-wrap-sm { padding: 48px 20px; }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  /* About banner */
  .about-banner { padding: 44px 20px; grid-template-columns: 1fr; gap: 24px; }
  .about-banner h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .about-ctas { flex-direction: row; }

  /* Stats */
  .stats-bar { grid-template-columns: repeat(2,1fr); }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Home news carousel cards */
  .news-carousel .news-card,
  .news-carousel .news-card.featured { flex-basis: 82vw; }
  .news-card.featured { grid-column: span 1; }
  .news-grid { grid-template-columns: 1fr; }

  /* Trust manifesto */
  .trust-manifesto-inner { padding: 48px 20px; }
  .trust-title { font-size: clamp(2.2rem, 11vw, 4rem); }
  .trust-line { white-space: normal; }
  .trust-manifesto-right { padding-left: 0; }
  .trust-manifesto-right::before { display: none; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .video-shell { padding: 16px; }

  /* Tap target enforcement */
  .btn { min-height: 44px; }
  .filter-btn { min-height: 36px; }
}

/* ══════════════════════════════════════════════════════════════
   HERO DASHBOARD — WeighControl Live (Blue)
   ══════════════════════════════════════════════════════════════ */

/* Match the original green hero layout, but in blue */
.hero-visual {
  background: linear-gradient(145deg, #061326 0%, #071a33 55%, #040f22 100%) !important;
  border-left: 1px solid rgba(91,163,245,0.18);
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 32px 28px !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-visual::before { display: none; }

.hero-dash-scene {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.dash-glow {
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(41,121,232,0.18) 0%, transparent 68%);
  pointer-events: none;
  animation: breathe 6s ease-in-out infinite;
}

/* ── Card — solid, visible ── */
.dash-card {
  background: #0d1e3d;
  border: 1px solid rgba(91,163,245,0.30);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.6),
    0 0 0 1px rgba(91,163,245,0.10),
    inset 0 1px 0 rgba(255,255,255,0.05);
  /* No animation — just show it */
  opacity: 1;
}

/* ── Title bar ── */
.dash-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  background: rgba(41,121,232,0.20);
  border-bottom: 1px solid rgba(91,163,245,0.18);
}
.dash-logo-dot {
  width: 8px; height: 8px;
  background: #5ba3f5;
  border-radius: 50%;
  box-shadow: 0 0 7px rgba(91,163,245,0.9);
  flex-shrink: 0;
  animation: livePulse 2s ease-in-out infinite;
}
.dash-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 2px;
  text-transform: uppercase;
  flex: 1;
}
.dash-badge {
  font-size: 0.58rem;
  font-weight: 700;
  color: #7ec3f9;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── Body padding ── */
.dash-body-pad {
  padding: 16px 16px 14px;
}

/* ── Weight readout ── */
.dash-weight-section { margin-bottom: 12px; }
.dash-weight-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.dash-weight-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
  transition: color 0.4s;
}
.dash-weight-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.dash-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
}
.dash-tag.green {
  color: #6ee7a0;
  background: rgba(110,231,160,0.12);
  border: 1px solid rgba(110,231,160,0.28);
}
.dash-time {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.28);
  margin-left: auto;
  font-weight: 300;
}

/* ── Progress bar ── */
.dash-bar-wrap { margin-bottom: 14px; }
.dash-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  position: relative;
}
.dash-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #1a4a8a, #5ba3f5);
  border-radius: 10px;
  width: 83%;
  box-shadow: 0 0 10px rgba(91,163,245,0.45);
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.dash-bar-fill::after {
  content: '';
  position: absolute;
  right: -2px; top: -4px;
  width: 14px; height: 14px;
  background: #7ec3f9;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(126,195,249,0.8);
}
.dash-bar-limit {
  position: absolute;
  right: 0; top: -18px;
  font-size: 0.55rem;
  color: rgba(255,255,255,0.2);
}

/* ── Stat row ── */
.dash-stat-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 7px;
  margin-bottom: 12px;
}
.dash-mini-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 8px 10px;
}
.dash-mini-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1;
}
.dash-mini-val.green { color: #6ee7a0; }
.dash-mini-lbl {
  font-size: 0.56rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
  font-weight: 500;
}

/* ── ANPR / Vehicle row ── */
.dash-vehicle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(41,121,232,0.08);
  border: 1px solid rgba(41,121,232,0.18);
  border-radius: 9px;
  margin-bottom: 12px;
}
.dash-anpr-plate {
  display: flex;
  align-items: stretch;
  background: #f5cb16;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  font-family: 'Courier New', monospace;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 1px;
  color: #111;
}
.anpr-gb {
  background: #003399;
  color: white;
  font-size: 0.52rem;
  font-weight: 700;
  padding: 3px 5px;
  display: flex;
  align-items: center;
  letter-spacing: 0;
}
.dash-anpr-plate > span:last-child { padding: 5px 8px; }
.dash-vehicle-info { flex: 1; min-width: 0; }
.dash-veh-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-veh-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
  font-weight: 300;
}
.dash-anpr-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
.dash-anpr-icon span {
  font-size: 0.52rem;
  color: #7ec3f9;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Activity feed ── */
.dash-feed { margin-bottom: 12px; }
.dash-feed-title {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  margin-bottom: 7px;
}
.dash-feed-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  opacity: 1;
}
.feed-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.feed-dot.green { background: #6ee7a0; box-shadow: 0 0 5px rgba(110,231,160,0.5); }
.feed-dot.amber { background: #fbbf24; box-shadow: 0 0 5px rgba(251,191,36,0.5); }
.feed-dot.blue  { background: #5ba3f5; box-shadow: 0 0 5px rgba(91,163,245,0.5); }
.feed-text {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.5);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feed-time {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.22);
  flex-shrink: 0;
}

/* ── Sparkline chart ── */
.dash-chart-label {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.dash-chart { height: 40px; }
.chart-svg { width: 100%; height: 100%; }
.chart-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 0;
}
.dash-chart-nums {
  display: flex;
  justify-content: space-between;
  margin-top: 3px;
}
.dash-chart-nums span {
  font-size: 0.54rem;
  color: rgba(255,255,255,0.18);
}

/* ── Floating badges ── */
.dash-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0d1e3d;
  border: 1px solid rgba(91,163,245,0.28);
  border-radius: 30px;
  padding: 7px 13px;
  font-size: 0.67rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  white-space: nowrap;
}
.badge-cloud {
  top: 10px; right: 8px;
  animation: floatBadge 4s ease-in-out infinite;
}
.badge-cert {
  bottom: 90px; left: 8px;
  animation: floatBadge 4s 1.3s ease-in-out infinite;
}
.badge-sites {
  bottom: 42px; right: 8px;
  animation: floatBadge 4s 0.7s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ══════════════════════════════════════════════════════════════
   PLACEHOLDER THUMBNAILS
   ══════════════════════════════════════════════════════════════ */

.news-thumb { position: relative; overflow: hidden; }
.news-thumb-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transform: scale(1.03);
}
.case-thumb {
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(91,163,245,0.14);
  margin-bottom: 14px;
  background: rgba(255,255,255,0.03);
}
.case-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.prod-card-thumb { position: relative; overflow: hidden; }
.prod-thumb-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.95;
  transform: scale(1.03);
}

.cf-visual { position: relative; overflow: hidden; }
.cf-visual-img, .nf-visual-img, .cec-thumb-img, .ec-thumb-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.95;
}

.nf-visual { position: relative; overflow: hidden; }
.editorial-card { position: relative; }
.ec-thumb {
  overflow: hidden;
  position: relative;
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT VIDEO SHOWCASE
   ════════════════════════════════════════════════════════════════ */

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 18px;
}

/* Static image showcase banner */
.showcase-static-banner {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #040f22;
  border: 1px solid rgba(91,163,245,0.20);
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
  display: block;
}
.showcase-static-banner .vp-poster {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  opacity: 0.90;
}

/* Bottom label bar */
.vp-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(4,15,34,0.92) 0%, rgba(4,15,34,0) 100%);
  display: flex;
  flex-direction: column;
  gap: 3px;
  pointer-events: none;
}
.vp-label {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  line-height: 1;
}
.vp-sub {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.50);
  font-weight: 400;
  line-height: 1;
}

/* Sub-text under section heading */
.product-section-sub {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.product-section-sub code {
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 0.82em;
  color: var(--green-mid);
}

@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: 1fr; }
}


@media (max-width: 980px){
  .operate-two-col { grid-template-columns: 1fr; }
  .operate-map-panel { padding: 48px 28px 36px; border-right: none; border-bottom: 1px solid var(--grey-200); }
  .operate-cards-panel { padding: 36px 28px 48px; }
  .logo-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  /* Smaller globe on tablet */
  .world-map-wrap { min-height: clamp(300px, 40vh, 400px); }
}

@media (max-width: 640px){
  .logo-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .logo-slot { height: 70px; }
  /* Compact globe on phones */
  .world-map-wrap { min-height: clamp(240px, 55vw, 320px); }
  .operate-map-panel { padding: 36px 16px 28px; }
  .operate-cards-panel { padding: 24px 16px 36px; }
  .operate-card { padding: 14px 14px; }
}

/* ── HOME HERO: two-column layout ────────────────────────────── */
.hero {
  background:
    /* fine dot grid — adds texture without weight */
    radial-gradient(circle, rgba(26,74,138,0.08) 1px, transparent 1px) 0 0 / 26px 26px,
    /* soft right-column spotlight draws eye to the truck */
    radial-gradient(ellipse 62% 80% at 78% 58%, rgba(41,121,232,0.13) 0%, transparent 68%),
    /* left-side counter-glow for balance */
    radial-gradient(ellipse 55% 55% at 8% 14%, rgba(91,163,245,0.10) 0%, transparent 62%),
    /* base gradient — slightly richer than before */
    linear-gradient(160deg, #f3f7fd 0%, #e8f0fa 55%, #edf3fc 100%);
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  height: 100svh;
  min-height: 560px;
  overflow: visible !important;
}
.hero-ticker {
  margin: 0;
  position: relative;
  z-index: 3;
}
.hero::before { display: none; }
.hero::after  { display: none; }

/* ── Left column ── */
.hero-content {
  padding: calc(var(--header-h, 110px) + clamp(14px, 2vh, 26px)) clamp(32px, 5vw, 80px) clamp(28px, 3.5vh, 48px) clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  position: relative;
  z-index: 2;
  max-width: none;
  margin: 0;
}
.hero-tag {
  display: inline-block;
  padding: 0 0 0 14px;
  border-left: 3px solid var(--green-main);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-600);
  opacity: 0;
  background: none;
  border-radius: 0;
  border-top: none;
  border-right: none;
  border-bottom: none;
}
.hero-tag-dot { display: none; }
.hero-title-shell {
  position: relative;
  width: 100%;
  min-height: 0;
  margin: 20px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.hero-title-webgl {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.hero h1,
.hero-title-fallback {
  font-size: clamp(3.2rem, 5vw, 5.8rem);
  line-height: 0.87;
  letter-spacing: 0.5px;
  max-width: none;
  opacity: 1;
  animation: none;
  position: relative;
  z-index: 1;
  text-align: left;
}
.hero.webgl-title-active .hero-title-fallback {
  color: rgba(16,36,72,0.07);
  -webkit-text-stroke: 1px rgba(16,36,72,0.05);
  text-shadow: none;
}
.hero h1 em,
.hero-title-fallback em {
  display: inline-block;
  text-shadow: 0 6px 24px rgba(41,121,232,0.18);
}
.hero-subtitle {
  font-size: 1rem;
  line-height: 1.8;
  max-width: 500px;
  margin: 22px 0 0;
  color: var(--text-light);
  opacity: 0;
}
.hero-subtitle strong { color: var(--green-main); }
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  justify-content: flex-start;
  opacity: 0;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 36px 0 0;
}
.hero-proof-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 0 24px 0 0;
  color: var(--grey-600);
  opacity: 0;
}
.hero-proof-item:first-child { padding-left: 0; }
.hero-proof-item svg { color: var(--green-main); flex-shrink: 0; }
.hero-proof-item span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--grey-600);
}
.hero-proof-sep {
  width: 1px;
  height: 44px;
  background: rgba(13,31,60,0.14);
  margin: 0 24px 0 0;
  flex-shrink: 0;
  align-self: center;
  opacity: 0;
}
.hero-stats { display: none; }
.hero-visual { display: none !important; }
.hero-art    { display: none; }

/* ── Right column ── */
.hero-right {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-truck {
  width: 120%;
  margin-left: -10%;
  max-height: 100%;
  position: relative;
  z-index: 1;
  display: block;
  opacity: 0;
}

.hero-image-cycle {
  aspect-ratio: 1.35 / 1;
  min-height: 360px;
  max-height: calc(100svh - var(--header-h, 110px) - 70px);
  overflow: hidden;
  pointer-events: none;
}
.hero-cycle-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.hero-cycle-current {
  z-index: 1;
}
.hero-cycle-next {
  z-index: 2;
  opacity: 0;
}
.hero-cycle-strips {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(var(--hero-strip-count, 5), minmax(0, 1fr));
  overflow: hidden;
  opacity: 0;
}
.hero-cycle-strip {
  min-width: 0;
  height: 100%;
  background-image: var(--hero-next-image);
  background-repeat: no-repeat;
  background-size: var(--hero-strip-bg-size, 500% 100%);
  background-position-x: var(--hero-strip-bg-position, 0%);
  background-position-y: bottom;
  transform: scaleX(0);
  transform-origin: left center;
}

/* ── Floating UI cards (shared) ── */
.hc {
  position: absolute;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(13,31,60,0.13), 0 1px 3px rgba(13,31,60,0.07);
  padding: 16px 18px;
  z-index: 4;
  font-family: 'Barlow', sans-serif;
  opacity: 0;
}
.hc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.hc-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0d1f3c;
  letter-spacing: 0.3px;
}
.hc-meta {
  font-size: 0.68rem;
  color: #6b82a8;
  cursor: default;
}

/* Dashboard card */
.hc-dashboard {
  top: calc(var(--header-h, 110px) + 10px);
  left: 2%;
  width: clamp(220px, 22vw, 300px);
  animation-delay: 0.9s;
}
.hc-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.hc-kl {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #6b82a8;
  margin-bottom: 3px;
}
.hc-kv {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d1f3c;
  line-height: 1.1;
}
.hc-kd {
  font-size: 0.6rem;
  font-weight: 600;
  margin-top: 2px;
}
.hc-kd.up { color: #22c55e; }
.hc-chart-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  color: #6b82a8;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.hc-chart {
  width: 100%;
  height: 52px;
  display: block;
}
.hc-chart-axis {
  display: flex;
  justify-content: space-between;
  font-size: 0.56rem;
  color: #a0aec0;
  margin-top: 4px;
}

/* ANPR card */
.hc-anpr {
  top: calc(var(--header-h, 110px) + 10px);
  right: 2%;
  width: clamp(160px, 16vw, 210px);
  animation-delay: 1.05s;
}
.hc-anpr .hc-title { margin-bottom: 10px; }
.hc-plate-view {
  background: #1a1a2e;
  border-radius: 8px;
  padding: 14px 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hc-plate-inner {
  background: #fbbf24;
  border: 2px solid #d97706;
  border-radius: 4px;
  padding: 5px 14px;
}
.hc-plate-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #1a1a1a;
}
.hc-plate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.hc-plate-num {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0d1f3c;
}
.hc-badge {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 4px;
  padding: 2px 6px;
}
.hc-anpr-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: #6b82a8;
}
.hc-anpr-row span:last-child { color: #0d1f3c; font-weight: 600; }

/* Live Weighing card */
.hc-weighing {
  bottom: 12%;
  right: 2%;
  width: clamp(170px, 17vw, 220px);
  animation-delay: 1.2s;
}
.hc-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #16a34a;
  letter-spacing: 0.5px;
}
.hc-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
.hc-gross-lbl {
  font-size: 0.65rem;
  color: #6b82a8;
  margin: 10px 0 2px;
}
.hc-gross-val {
  font-size: 1.55rem;
  font-weight: 800;
  color: #0d1f3c;
  line-height: 1;
  margin-bottom: 12px;
}
.hc-rows { display: grid; gap: 6px; }
.hc-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(13,31,60,0.06);
}
.hc-row:last-child { border-bottom: none; padding-bottom: 0; }
.hc-row span:first-child { color: #6b82a8; }
.hc-row span:last-child  { color: #0d1f3c; font-weight: 600; }
.hc-stable {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #16a34a !important;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hc-dashboard { width: 200px; }
  .hc-anpr      { width: 160px; }
  .hc-weighing  { width: 175px; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-content { padding: 56px 32px 52px; text-align: left; align-items: flex-start; }
  .hc { display: none; }
}
@media (max-width: 640px) {
  .hero-image-cycle {
    width: 118%;
    min-height: 250px;
  }
  .hero-proof { flex-wrap: wrap; gap: 16px; }
  .hero-proof-sep { display: none; }
  .hero-proof-item { padding: 0; }
  /* Ensure hero tag clears the fixed header on small phones */
  .hero-content {
    padding: calc(var(--header-h, 110px) + 18px) 20px 40px;
    justify-content: flex-start;
  }
}

/* ── TABLET HERO: typographic stage (641px – 1180px) ───────── */
/* No images on tablets — hero becomes a full-bleed type moment  */
@media (min-width: 641px) and (max-width: 1180px) {
  /* Single column, no right panel, no floating UI cards */
  .hero {
    grid-template-columns: 1fr !important;
    min-height: 100svh;
  }
  .hero-right  { display: none !important; }
  .hc          { display: none !important; }

  /* Centre the content and give it room to breathe */
  .hero-content {
    padding: calc(var(--header-h, 110px) + clamp(52px, 7vh, 88px))
             clamp(48px, 10vw, 120px)
             clamp(52px, 6vh, 88px) !important;
    text-align: center !important;
    align-items: center !important;
    max-width: 880px;
    margin: 0 auto;
  }

  /* Tag: swap left-border rule for a bottom-border centred version */
  .hero-tag {
    border-left: none !important;
    border-bottom: 3px solid var(--green-main);
    padding: 0 0 10px 0 !important;
    margin: 0 auto 28px !important;
    display: inline-block !important;
  }

  /* Big typographic headline */
  .hero h1,
  .hero-title-fallback {
    font-size: clamp(5rem, 10vw, 8.5rem) !important;
    text-align: center !important;
    line-height: 0.88 !important;
  }
  .hero-title-shell {
    justify-content: center;
  }

  /* Subtitle — slightly larger and centred */
  .hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem) !important;
    max-width: 640px !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Buttons centred */
  .hero-btns {
    justify-content: center !important;
  }

  /* Proof strip centred */
  .hero-proof {
    justify-content: center;
  }
  .hero-proof-item {
    align-items: center;
    padding: 0 20px !important;
  }
  .hero-proof-item span {
    text-align: center;
  }
}

.hero-panels-scene,
.hero-panel,
.hero-panels-glow {
  position: absolute;
}
.hero-panels-scene {
  inset: 0;
}
.hero-panels-glow {
  display: none;
}
.hero-panel {
  position: absolute;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.82);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.90) 0%, rgba(246,250,255,0.70) 100%);
  box-shadow:
    0 26px 54px rgba(13,31,60,0.10),
    inset 0 1px 0 rgba(255,255,255,0.86);
  backdrop-filter: blur(20px);
}
.hero-panel::before {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  top: 14px;
  height: 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 6px 5px, rgba(41,121,232,0.75) 0 2px, transparent 2.4px),
    radial-gradient(circle at 22px 5px, rgba(26,74,138,0.38) 0 2px, transparent 2.4px),
    linear-gradient(90deg, rgba(26,74,138,0.08) 42px, transparent 42px);
}
.hero-panel span {
  display: block;
  margin: 18px 0 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: rgba(13,31,60,0.54);
}
.hero-panel strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #102448;
}
.hero-panel-a,
.hero-panel-b,
.hero-panel-c {
  width: clamp(190px, 18vw, 260px);
  min-height: 182px;
  padding: 18px;
  border-radius: 26px;
}
.hero-panel-a {
  left: 7%;
  top: 16%;
  transform: rotate(-7deg);
  animation: heroPanelFloatA 13s ease-in-out infinite;
}
.hero-panel-b {
  right: 8%;
  top: 12%;
  transform: rotate(5deg);
  animation: heroPanelFloatB 11s ease-in-out infinite;
}
.hero-panel-c {
  right: 14%;
  bottom: 18%;
  transform: rotate(-4deg);
  animation: heroPanelFloatA 14s ease-in-out infinite reverse;
}
.hero-panel-list,
.hero-panel-log {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.hero-panel-row,
.hero-log-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(233,241,251,0.70);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.52);
}
.hero-panel-row b,
.hero-log-item b {
  font-size: 0.83rem;
  font-weight: 700;
  color: #17325d;
}
.hero-panel-row em,
.hero-log-item em {
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(26,74,138,0.70);
}
.hero-panel-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.hero-mini-card {
  padding: 12px 10px 14px;
  border-radius: 18px;
  background: rgba(233,241,251,0.72);
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.56);
}
.hero-mini-card small {
  display: block;
  margin-bottom: 8px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(13,31,60,0.52);
}
.hero-mini-card b {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #17325d;
}
.hero-panel-footer {
  margin-top: auto;
  padding-top: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: rgba(26,74,138,0.64);
}
@keyframes heroDiagramFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.4deg); }
}
@keyframes heroPanelFloatA {
  0%,100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-14px) rotate(-4deg); }
}
@keyframes heroPanelFloatB {
  0%,100% { transform: translateY(0) rotate(6deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}
@keyframes heroOrbDrift {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(10px,-14px,0) scale(1.04); }
}



/* ── INTRO LOADER ─────────────────────────────────────────── */
#truck-loader {
  position: fixed; inset: 0;
  background: radial-gradient(520px 260px at 50% 38%, rgba(41,121,232,0.14) 0%, transparent 70%),
              linear-gradient(180deg, #0b1730 0%, #0d1f3c 100%);
  z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  visibility: hidden; pointer-events: none; will-change: transform, opacity;
}
#truck-loader.is-intro {
  background: radial-gradient(620px 320px at 50% 44%, rgba(91,163,245,0.18) 0%, transparent 72%),
              linear-gradient(180deg, #0b1730 0%, #0d1f3c 58%, #102a52 100%);
}
.loader-curtain { position: absolute; inset: 0; z-index: 0; display: none; flex-direction: column; pointer-events: none; overflow: hidden; }
#truck-loader.is-intro .loader-curtain { display: flex; }
.loader-curtain-panel { display: block; width: 100%; height: 50%; background: linear-gradient(180deg, #0b1730 0%, #0d1f3c 100%); will-change: transform; }
.loader-curtain-bottom { background: linear-gradient(180deg, #0d1f3c 0%, #102a52 100%); }
.loader-intro-stage {
  position: relative; z-index: 2; display: none; flex-direction: column;
  align-items: center; justify-content: center; gap: clamp(16px, 2.8vw, 28px);
  width: min(92vw, 980px); min-height: 220px; text-align: center; pointer-events: none;
}
.loader-full-wordmark {
  display: flex; justify-content: center; gap: clamp(0.22em, 2vw, 0.42em); overflow: hidden;
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(3rem, 8.5vw, 8.8rem);
  font-weight: 800; line-height: 0.86; text-transform: uppercase; color: #fff;
}
.loader-word { display: inline-flex; color: #d8eaff; will-change: transform, opacity, filter; }
.loader-word-letter { display: inline-block; overflow: hidden; line-height: 0.9; }
.loader-word-letter-inner { display: inline-block; will-change: transform, filter; }
.loader-resolve-word {
  position: absolute; inset: 50% auto auto 50%; z-index: 3;
  display: flex; align-items: center; justify-content: center; gap: 0.02em;
  overflow: hidden; transform: translate(-50%, -50%);
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(4.6rem, 13vw, 12rem);
  font-weight: 800; line-height: 0.82; color: #fff; text-shadow: 0 18px 44px rgba(0,0,0,0.26);
}
.loader-resolve-letter { display: inline-block; will-change: transform, opacity; }
.loader-intro-kicker {
  overflow: hidden; font-size: clamp(0.68rem, 1.15vw, 0.86rem); font-weight: 700;
  letter-spacing: clamp(0.22em, 1vw, 0.42em); text-transform: uppercase;
  color: rgba(216,234,255,0.52); white-space: nowrap;
}
#truck-loader-text { display: none; }
@media (max-width: 640px) {
  .loader-full-wordmark { flex-direction: column; gap: 0.08em; font-size: clamp(3.1rem, 18vw, 5.8rem); }
  .loader-intro-kicker  { white-space: normal; max-width: 280px; line-height: 1.8; }
}

/* ── PAGE CURTAIN TRANSITION ──────────────────────────────── */
#page-curtain {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
}
#page-curtain .curtain-panel {
  position: absolute;
  inset: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  will-change: transform;
}
#page-curtain .curtain-panel:nth-child(1) { background: #0d1f3c; }
#page-curtain .curtain-panel:nth-child(2) { background: #102a52; }
#page-curtain .curtain-panel:nth-child(3) { background: #1a4a8a; }
#page-curtain .curtain-panel:nth-child(4) { background: #1e5fb5; }
#page-curtain .curtain-panel:nth-child(5) { background: #2979e8; }
