/* =============================================================================
   FIRLO — Plant Logistics Management System
   styles.css  |  Version 2.0  |  Fully Optimised & Structured
   © 2026 Amazin Automation Solutions India Ltd.
   
   TABLE OF CONTENTS
   ─────────────────────────────────────────────
   01. CSS Custom Properties (Design Tokens)
   02. Reset & Base
   03. Typography Utilities
   04. Scrollbar
   05. Preloader
   06. Custom Cursor
   07. Accessibility
   08. Navigation
   09. Hamburger Menu & Overlay
   10. Hero Section
   11. Stats Bar
   12. Ticker
   13. Section Commons
   14. Horizontal Scroll Engine
   15. Module Panels
   16. Industry Tiles
   17. Integrations Grid
   18. Case Studies
   19. Metrics Grid
   20. Testimonials
   21. Client Logo Tiles
   22. Powering Growth Section
   23. Contact Section
   24. CTA Section
   25. Footer
   26. Try-It Modal
   27. Cookie Banner
   28. Floating Buttons
   29. Scroll Reveal
   30. Responsive Breakpoints
   ============================================================================= */


/* =============================================================================
   01. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================================= */
:root {
  /* Colours */
  --color-black:    #0d0d0d;
  --color-dark-1:   #111111;
  --color-dark-2:   #161616;
  --color-dark-3:   #1c1c1c;
  --color-orange:   #E85D26;
  --color-orange-2: #FF6B35;
  --color-white:    #ffffff;
  --color-grey:     #888888;
  --color-grey-2:   #444444;
  --color-border:   rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-body:    'Barlow', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  3rem;
  --space-xl:  5rem;
  --space-2xl: 7rem;

  /* Transitions */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-menu: cubic-bezier(0.76, 0, 0.24, 1);
}


/* =============================================================================
   02. RESET & BASE
   ============================================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--color-black);
  color: var(--color-white);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  font-family: inherit;
}


/* =============================================================================
   03. TYPOGRAPHY UTILITIES
   ============================================================================= */
.eyebrow {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--color-orange);
  flex-shrink: 0;
}

/* Alias used in existing HTML */
.sec-eyebrow {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.1rem;
}

.sec-eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--color-orange);
  flex-shrink: 0;
}

h2 {
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 0.97;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 0.9rem;
}

.sec-sub {
  font-size: 0.95rem;
  color: var(--color-grey);
  max-width: 480px;
  line-height: 1.7;
}


/* =============================================================================
   04. SCROLLBAR
   ============================================================================= */
::-webkit-scrollbar       { width: 3px; }
::-webkit-scrollbar-track { background: var(--color-black); }
::-webkit-scrollbar-thumb { background: var(--color-orange); border-radius: 2px; }


/* =============================================================================
   05. PRELOADER
   ============================================================================= */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

#preloader.pl-out {
  opacity: 0;
  pointer-events: none;
}

#pl-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pl-logo {
  height: 90px;
  width: auto;
  display: block;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

#pl-logo.pl-show {
  opacity: 1;
  transform: scale(1);
}

#pl-logo.pl-fly {
  transition: transform 0.65s var(--ease-menu), opacity 0.25s ease 0.4s !important;
}

#pl-ring {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid rgba(232, 93, 38, 0.12);
  border-top-color: var(--color-orange);
  border-right-color: rgba(232, 93, 38, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: spin 0.85s linear infinite;
}

#pl-ring.pl-show { opacity: 1; }

@keyframes spin { to { transform: rotate(360deg); } }


/* =============================================================================
   06. CUSTOM CURSOR
   ============================================================================= */
#truckCursor {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
  width: 48px;
  height: 48px;
  top: -100px;
  left: -100px;
  transform: translate(-50%, -50%);
  transition: left 0.05s linear, top 0.05s linear;
  will-change: left, top;
  opacity: 0;
}

#truckCursor img {
  width: 100%;
  height: 100%;
}

.smoke-particle {
  position: fixed;
  z-index: 999998;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(210, 210, 210, 0.75);
  transform: translate(-50%, -50%) scale(0.2);
  --dx: -30px;
  --dy: -30px;
}

@keyframes smokeAnim {
  0%   { transform: translate(-50%, -50%) scale(0.2); opacity: 0.9; }
  40%  { opacity: 0.7; }
  100% { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(3); opacity: 0; }
}


/* =============================================================================
   07. ACCESSIBILITY
   ============================================================================= */
.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  z-index: 99999;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: top 0.2s;
  text-decoration: none;
}

.skip-link:focus { top: 0.75rem; }


/* =============================================================================
   08. NAVIGATION
   ============================================================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 1.75rem var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    transform 0.45s var(--ease-out),
    padding 0.3s ease,
    background 0.3s ease;
}

nav.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem var(--space-lg);
}

nav.hidden { transform: translateY(-100%); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-talk {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  border-bottom: 2px solid var(--color-orange);
  padding-bottom: 2px;
  transition: color 0.2s;
  cursor: none;
}

.nav-talk:hover { color: var(--color-orange); }

/* Hamburger button */
.nav-ham {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.3s;
  padding: 0;
}

.nav-ham:hover { background: rgba(255, 255, 255, 0.18); }

.nav-ham span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}

.nav-ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* =============================================================================
   09. HAMBURGER MENU OVERLAY
   ============================================================================= */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 699;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.menu-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 700;
  width: min(360px, 38vw);
  background: var(--color-dark-1);
  border-left: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-menu);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

.menu-overlay.open { transform: translateX(0); }

.menu-nav-items { margin-bottom: 2.5rem; }

.menu-nav-items li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.menu-nav-items li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
  padding: 0.65rem 0;
  transition: color 0.25s, padding-left 0.25s;
  cursor: none;
}

.menu-nav-items li a:hover {
  color: var(--color-orange);
  padding-left: 0.75rem;
}

.menu-nav-items li a .arr {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--color-grey);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  flex-shrink: 0;
}

.menu-nav-items li a:hover .arr {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
}

.mnum {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-grey);
  margin-right: 0.75rem;
  width: 20px;
}

.menu-bottom {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.menu-contact a {
  display: block;
  font-size: 0.78rem;
  color: var(--color-grey);
  transition: color 0.2s;
  margin-bottom: 0.3rem;
  cursor: none;
}

.menu-contact a:hover { color: var(--color-white); }

.menu-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.menu-social a {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-grey);
  transition: color 0.2s;
  cursor: none;
}

.menu-social a:hover { color: var(--color-orange); }


/* =============================================================================
   10. HERO SECTION
   ============================================================================= */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background slides */
.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide video,
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Per-slide opacity overrides */
.slide-arch img     { opacity: 0.35; }
.slide-road img     { opacity: 0.45; }
.slide-site img     { opacity: 0.28; }
.slide-dash img     { opacity: 0.55; }
.slide-factory img  { opacity: 0.35; }
.slide-tracking img { opacity: 0.35; }
.slide-gps img      { opacity: 0.45; }

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(13, 13, 13, 0.92) 0%,
    rgba(13, 13, 13, 0.75) 50%,
    rgba(13, 13, 13, 0.30) 100%
  );
}

/* Oversized BG letter */
.hero-bg-letter {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(260px, 38vw, 520px);
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  z-index: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
}

/* Dot-matrix decoration */
.deco-dots {
  position: absolute;
  right: 12%;
  top: 18%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  pointer-events: none;
  opacity: 0.3;
}

.deco-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-white);
  display: block;
}

/* Orange accent bar */
.deco-bar {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--color-orange);
  z-index: 3;
}

/* Scroll hint */
.hero-scroll-txt {
  position: absolute;
  right: 2rem;
  bottom: 3.5rem;
  z-index: 3;
  writing-mode: vertical-rl;
  font-family: var(--font-cond);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-grey);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-scroll-txt::before {
  content: '';
  width: 1px;
  height: 44px;
  background: var(--color-grey);
  display: block;
}

/* Slide dots */
.hero-slide-dots {
  position: absolute;
  bottom: 2.5rem;
  left: var(--space-lg);
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hsd {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: none;
  padding: 0;
  transition: all 0.3s ease;
}

.hsd.on {
  background: var(--color-orange);
  width: 24px;
  border-radius: 3px;
}

/* Mute button */
.mute-btn {
  position: absolute;
  left: var(--space-lg);
  bottom: 5.5rem;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  cursor: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.mute-btn:hover { background: rgba(255, 255, 255, 0.14); }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem var(--space-lg) 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--color-orange);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 0.1em;
}

.hero h1 .orange-line { color: var(--color-orange); }

.hero-desc {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  line-height: 1.6;
  margin: 0.75rem 0 0;
}


/* =============================================================================
   11. STATS BAR
   ============================================================================= */
.stats-bar {
  background: var(--color-dark-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-inner { display: flex; }

.stat-item {
  flex: 1;
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-num em {
  font-style: normal;
  color: var(--color-orange);
}

.stat-lbl {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-grey);
}


/* =============================================================================
   12. TICKER
   ============================================================================= */
.ticker {
  padding: 0.85rem 0;
  background: var(--color-dark-3);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 26s linear infinite;
  width: max-content;
}

.ticker-item {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-grey-2);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.ticker-item::before {
  content: '◆';
  color: var(--color-orange);
  font-size: 0.4rem;
}

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


/* =============================================================================
   13. SECTION COMMONS
   ============================================================================= */
section { padding: 6.5rem var(--space-lg); }

/* Shared button styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 0.95rem 2.5rem;
  border-radius: 100px;
  transition: background 0.3s, transform 0.3s;
  border: none;
  cursor: none;
}

.btn-primary:hover {
  background: var(--color-orange-2);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--color-white);
  padding: 0.95rem 2.5rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 0.3s;
  cursor: none;
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.07); }


/* =============================================================================
   14. HORIZONTAL SCROLL ENGINE
   ============================================================================= */
.hscroll-outer { position: relative; }

.hscroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.hscroll-track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.hscroll-panel {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 var(--space-lg);
  position: relative;
}

.hscroll-panel.mod-panel {
  background: var(--color-black);
  border-right: 1px solid var(--color-border);
}

.hscroll-panel.mod-panel:first-child { background: var(--color-dark-2); }

/* Intro panel */
.hscroll-panel.intro-panel {
  background: var(--color-dark-3);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 4rem;
}

.intro-panel h2          { font-size: clamp(3rem, 7vw, 6rem); margin-bottom: 1rem; }
.intro-panel .sec-sub    { font-size: 1rem; max-width: 600px; }

.intro-scroll-hint {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-grey);
}

.intro-scroll-hint::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-orange);
  flex-shrink: 0;
}

/* Panel header */
.hpanel-header {
  flex: 0 0 320px;
  padding-right: var(--space-lg);
  border-right: 1px solid var(--color-border);
  margin-right: var(--space-lg);
}

.hpanel-num {
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.hpanel-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 0.5rem;
}

.hpanel-title {
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hpanel-desc {
  font-size: 0.92rem;
  color: var(--color-grey);
  line-height: 1.68;
  margin-bottom: 1.25rem;
}

.hpanel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.hpanel-tag {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--color-border);
  color: var(--color-grey-2);
  border-radius: 2px;
}

/* Panel visual area */
.hpanel-visual {
  flex: 1;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Nav dots / progress bar */
.hscroll-counter { display: none; }

.hs-nav {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  z-index: 10;
  pointer-events: none;
}

.hs-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}

.hs-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  flex-shrink: 0;
  pointer-events: auto;
}

.hs-dot.on {
  background: var(--color-orange);
  width: 22px;
  border-radius: 4px;
}

.hs-bar-wrap {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
}

.hs-bar-fill {
  height: 100%;
  background: var(--color-orange);
  border-radius: 2px;
  width: 0%;
  transition: width 0.08s linear;
}

.hs-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--color-grey);
  letter-spacing: 0.08em;
  min-width: 36px;
  text-align: center;
}

.hs-label em {
  color: var(--color-white);
  font-style: normal;
}


/* =============================================================================
   15. MODULE PANELS  (IMS, Bidding, PLMS, Slot, WB, etc.)
   ============================================================================= */

/* Wide header variant used across module panels */
.ims-header { flex: 0 0 420px !important; }

/* IMS Panel */
.ims-panel { padding: 0 2rem 0 var(--space-lg) !important; }

.ims-visual {
  flex: 1;
  position: relative;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 2.5rem;
  overflow: hidden;
}

.ims-img-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Bidding Panel */
.bidding-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2rem;
  overflow: hidden;
}

.bidding-imgs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 85%;
}

.bidding-img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.bidding-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s;
}

.bidding-img-wrap:hover .bidding-img { transform: scale(1.03); }

.bid-img {
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.9;
  width: 100%;
  height: 100%;
}

/* PLMS Panel */
.plms-panel  { padding: 0 2rem 0 var(--space-lg) !important; }

.plms-visual {
  flex: 1;
  position: relative;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2rem;
  overflow: hidden;
  background: var(--color-dark-1);
  border-radius: 6px;
}

/* Zone labels */
.plms-zones { position: absolute; inset: 0; pointer-events: none; }

.plms-zone {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pz-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-orange);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(232, 93, 38, 0.7);
  animation: pulse 2s ease-in-out infinite;
}

.pz-label {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  background: rgba(232, 93, 38, 0.85);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  white-space: nowrap;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 6px rgba(232, 93, 38, 0.6); }
  50%       { box-shadow: 0 0 14px rgba(232, 93, 38, 1); }
}

/* Slot Panel */
.slot-panel  { padding: 0 2rem 0 var(--space-lg) !important; }

.slot-visual {
  flex: 1;
  position: relative;
  height: 85%;
  padding-left: 2rem;
  overflow: hidden;
}

.slot-img-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.95;
}

/* Weighbridge / Smart Bag / Printer / Bulker panels (shared) */
.wb-panel    { padding: 0 2rem 0 var(--space-lg) !important; }
.bulker-panel{ padding: 0 2rem 0 var(--space-lg) !important; }

.wb-visual,
.bulker-visual {
  flex: 1;
  position: relative;
  height: 85%;
  padding-left: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wb-img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* E-POD + GPS Panel */
.epod-panel  { padding: 0 2rem 0 var(--space-lg) !important; }

.epod-visual {
  flex: 1;
  position: relative;
  height: 85%;
  padding-left: 2rem;
  overflow: hidden;
  border-radius: 6px;
}

.epod-map-wrap { position: absolute; inset: 0; }

/* Reporting Panel */
.reporting-panel { padding: 0 2rem 0 var(--space-lg) !important; }

.reporting-visual {
  flex: 1;
  position: relative;
  height: 85%;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Reporting cards */
.rep-cards {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.rep-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  transition: background 0.25s, border-color 0.25s;
}

.rep-card:hover {
  background: rgba(226, 113, 28, 0.06);
  border-color: rgba(226, 113, 28, 0.2);
}

.rep-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.rep-card-title {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 0.2rem;
}

.rep-card-desc {
  font-size: 0.74rem;
  color: var(--color-grey);
  line-height: 1.55;
}

/* Bulker orange accent */
.bulker-panel .hpanel-title,
.bulker-panel .hpanel-label { color: var(--color-orange) !important; }


/* =============================================================================
   16. INDUSTRY TILES PANEL
   ============================================================================= */
.hscroll-panel.ind-tiles-panel {
  background: var(--color-dark-2) !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  padding: 0 var(--space-lg) !important;
}

.ind-tiles-wrap {
  width: 100%;
  max-width: 1100px;
}

.ind-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--color-border);
  width: 100%;
}

.ind-tile {
  background: var(--color-dark-1);
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.ind-tile::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.ind-tile:hover { background: var(--color-dark-2); }
.ind-tile:hover::after { transform: scaleX(1); }

.ind-tile-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  display: block;
}

.ind-tile-name {
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.ind-tile-desc {
  font-size: 0.78rem;
  color: var(--color-grey);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.ind-tile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.ind-tile-tag {
  font-family: var(--font-cond);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border: 1px solid var(--color-border);
  color: var(--color-grey-2);
  border-radius: 2px;
}


/* =============================================================================
   17. INTEGRATIONS GRID
   ============================================================================= */
.int-section { background: var(--color-dark-2); }

.int-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid var(--color-border);
}

.int-card {
  background: var(--color-dark-1);
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s;
}

.int-card:hover { background: var(--color-dark-3); }

.int-icon {
  font-size: 1.7rem;
  margin-bottom: 0.55rem;
}

.int-name {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 0.3rem;
}

.int-desc {
  font-size: 0.7rem;
  color: var(--color-grey);
  line-height: 1.5;
}


/* =============================================================================
   18. CASE STUDIES
   ============================================================================= */
.cs-section { background: var(--color-dark-3); }

.cs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid var(--color-border);
}

.cs-card {
  background: var(--color-dark-1);
  padding: 2.75rem 2.25rem;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.cs-card:hover { background: var(--color-dark-2); }

.cs-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--ccol, var(--color-orange));
}

.cs-ind-logo   { margin-bottom: 0.6rem; }
.cs-ind-logo img { width: auto; height: 48px; }

.cs-client,
.cs-client-orange {
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: 1.9rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 0.4rem;
  line-height: 1;
}

.cs-tagline {
  font-size: 0.83rem;
  color: var(--color-grey);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.cs-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.cs-badge {
  font-family: var(--font-cond);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  border: 1px solid var(--color-border);
  color: var(--color-grey);
  border-radius: 2px;
}

.cs-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: 1.25rem;
  border: 1px solid var(--color-border);
}

.cs-res {
  background: var(--color-dark-2);
  padding: 0.9rem;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.cs-res-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-white);
  letter-spacing: 0.04em;
}

.cs-res-num em {
  font-style: normal;
  color: var(--color-orange);
}

.cs-res-lbl {
  font-family: var(--font-cond);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-grey);
  margin-top: 2px;
}

.cs-detail {
  font-size: 0.8rem;
  color: var(--color-grey);
  line-height: 1.65;
  border-top: 1px solid var(--color-border);
  padding-top: 1.1rem;
}

.cs-list {
  margin-top: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cs-list li {
  font-size: 0.76rem;
  color: var(--color-grey-2);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.5;
}

.cs-list li::before {
  content: '→';
  color: var(--color-orange);
  flex-shrink: 0;
  margin-top: 1px;
}


/* =============================================================================
   19. METRICS GRID
   ============================================================================= */
.metrics-section { background: var(--color-black); }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid var(--color-border);
}

.metric-box {
  background: var(--color-dark-1);
  padding: 2.25rem 1.75rem;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s;
}

.metric-box:hover { background: var(--color-dark-2); }

.metric-big {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--color-white);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.metric-big em {
  font-style: normal;
  color: var(--color-orange);
}

.metric-lbl {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-grey);
}


/* =============================================================================
   20. TESTIMONIALS
   ============================================================================= */
.testi-section { background: var(--color-dark-2); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid var(--color-border);
}

.testi-card {
  background: var(--color-dark-1);
  padding: 2.25rem 1.75rem;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s;
}

.testi-card:hover { background: var(--color-dark-3); }

.testi-q {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.72;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.testi-q::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--color-orange);
  line-height: 0;
  vertical-align: -0.6rem;
  margin-right: 3px;
  font-style: normal;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.testi-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-white);
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
}

.testi-co {
  font-size: 0.7rem;
  color: var(--color-grey);
}


/* =============================================================================
   21. CLIENT LOGO TILES
   ============================================================================= */
.logo-tiles-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
}

.logo-tile {
  background: var(--color-dark-1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.25s;
  min-height: 90px;
}

.logo-tile:hover { background: var(--color-dark-2); }

.logo-tile img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%) brightness(1.05);
  transition: filter 0.25s;
  border-radius: 2px;
}

.logo-tile:hover img {
  filter: grayscale(0%) brightness(1.1);
}


/* =============================================================================
   22. POWERING GROWTH SECTION
   ============================================================================= */
.powering-section {
  background: var(--color-dark-3);
  padding: 5rem var(--space-lg);
}

.powering-section h2 {
  color: var(--color-orange);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-align: center;
}


/* =============================================================================
   23. CONTACT SECTION
   ============================================================================= */
.contact-section { background: var(--color-dark-2); padding: 7rem var(--space-lg); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 0.5rem;
}

.contact-detail-item {
  border-left: 2px solid var(--color-orange);
  padding-left: 1.25rem;
}

.cd-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-grey);
  margin-bottom: 0.4rem;
}

.cd-value {
  color: var(--color-white);
  font-size: 0.92rem;
  transition: color 0.2s;
}

.cd-value:hover { color: var(--color-orange); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cf-group label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-grey);
}

.cf-group input,
.cf-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 3px;
  padding: 0.78rem 1rem;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.cf-group input::placeholder,
.cf-group textarea::placeholder { color: var(--color-grey-2); }

.cf-group input:focus,
.cf-group textarea:focus { border-color: var(--color-orange); }

.cf-btn {
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: 0.85rem;
  padding: 0.9rem 2rem;
  margin-top: 0.25rem;
}

.cf-note {
  font-size: 0.72rem;
  color: var(--color-grey);
  margin-top: 0.5rem;
}


/* =============================================================================
   24. CTA SECTION
   ============================================================================= */
.cta-section {
  background: var(--color-dark-1);
  padding: 8rem var(--space-lg);
  position: relative;
  overflow: hidden;
}

.cta-bg-txt {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(100px, 18vw, 220px);
  color: rgba(255, 255, 255, 0.018);
  white-space: nowrap;
  letter-spacing: 0.04em;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

.cta-content {
  position: relative;
  max-width: 700px;
}

.cta-content h2   { font-size: clamp(3rem, 6vw, 5.5rem); margin-bottom: 1rem; }
.cta-content .sec-sub { margin-bottom: 2.5rem; }

.cta-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-tagline {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--color-grey);
  margin-top: 1.5rem;
  letter-spacing: 0.04em;
}


/* =============================================================================
   25. FOOTER
   ============================================================================= */
footer {
  background: var(--color-dark-2);
  padding: 4.5rem var(--space-lg) 2rem;
  border-top: 1px solid var(--color-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--color-grey);
  line-height: 1.7;
  max-width: 250px;
  margin-bottom: 1rem;
}

.footer-brand a {
  display: block;
  font-size: 0.78rem;
  color: var(--color-grey-2);
  transition: color 0.2s;
  margin-bottom: 0.3rem;
  cursor: none;
}

.footer-brand a:hover { color: var(--color-orange); }

.footer-col h4 {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1.1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-col ul li a {
  font-size: 0.8rem;
  color: var(--color-grey-2);
  transition: color 0.2s;
  cursor: none;
}

.footer-col ul li a:hover { color: var(--color-orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-grey-2);
}


/* =============================================================================
   26. TRY-IT MODAL
   ============================================================================= */
#tryItModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  cursor: none;
}

#tryItModal * { cursor: none; }

.try-modal-box {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  max-width: 480px;
  width: 100%;
  padding: 2.75rem 2.25rem;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

.try-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  background: none;
  border: none;
  color: var(--color-grey);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.try-modal-close:hover { color: var(--color-white); }

.try-modal-icon  { font-size: 2.5rem; margin-bottom: 1rem; }

.try-modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.try-modal-title em { color: var(--color-orange); font-style: normal; }

.try-modal-body {
  font-size: 0.87rem;
  color: var(--color-grey);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.try-modal-body strong { color: var(--color-white); }

.try-modal-email {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-orange);
  border: 1px solid var(--color-orange);
  padding: 0.4rem 1rem;
  border-radius: 3px;
  margin-bottom: 2rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.try-modal-email:hover {
  background: var(--color-orange);
  color: var(--color-white);
}

.try-modal-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.try-modal-cancel {
  flex: 1;
  padding: 0.75rem 1rem;
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-grey);
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.try-modal-cancel:hover {
  border-color: var(--color-grey);
  color: var(--color-white);
}

.try-modal-proceed {
  flex: 2;
  padding: 0.75rem 1rem;
  background: var(--color-orange);
  border: none;
  color: var(--color-white);
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.try-modal-proceed:hover { background: #c04a1a; }


/* =============================================================================
   27. COOKIE BANNER
   ============================================================================= */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(17, 17, 17, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cookie-text {
  font-size: 0.8rem;
  color: var(--color-grey);
  margin: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-text a { color: var(--color-orange); }

.cookie-btns {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1.25rem;
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cookie-btn--decline {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-grey);
}

.cookie-btn--accept {
  background: var(--color-orange);
  border: none;
  color: var(--color-white);
}

.cookie-btn--accept:hover { background: var(--color-orange-2); }


/* =============================================================================
   28. FLOATING BUTTONS
   ============================================================================= */
#backToTop {
  position: fixed;
  bottom: 2rem;
  left: 1.75rem;
  z-index: 8888;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-orange);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232, 93, 38, 0.45);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(12px);
}

#backToTop img {
  width: 20px;
  height: 20px;
}

#waBtn {
  position: fixed;
  bottom: 5.5rem;
  right: 1.75rem;
  z-index: 8888;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

#waBtn:hover { transform: scale(1.1); }

#waBtn img { width: 28px; height: 28px; }


/* =============================================================================
   29. SCROLL REVEAL
   ============================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}


/* =============================================================================
   30. RESPONSIVE BREAKPOINTS
   ============================================================================= */
@media (max-width: 1200px) {
  .logo-tiles-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 1100px) {
  .metrics-grid    { grid-template-columns: 1fr 1fr; }
  .footer-top      { grid-template-columns: 1fr 1fr; }
  .int-grid        { grid-template-columns: repeat(3, 1fr); }
  .ind-tiles-grid  { grid-template-columns: 1fr 1fr; }
}

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

@media (max-width: 768px) {
  nav          { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.85rem 1.5rem; }
  section      { padding: 4rem 1.5rem; }

  .hero-content { padding: 0 1.5rem; }
  .hero h1      { font-size: clamp(2.8rem, 11vw, 5.5rem); }

  .cs-grid,
  .testi-grid     { grid-template-columns: 1fr; }
  .metrics-grid   { grid-template-columns: 1fr 1fr; }
  .int-grid       { grid-template-columns: 1fr 1fr; }

  .stats-inner    { flex-wrap: wrap; }
  .stat-item      { flex: 1 1 50%; border-bottom: 1px solid var(--color-border); }

  .footer-top     { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom  { flex-direction: column; text-align: center; }

  .menu-overlay   { padding: 5.5rem 1.5rem 2rem; width: min(340px, 90vw); }
  .menu-nav-items li a { font-size: clamp(1.3rem, 5vw, 2.2rem); }

  .hscroll-panel  { padding: 0 1.5rem; }
  .hpanel-header  { flex: 0 0 200px; padding-right: 1.5rem; margin-right: 1.5rem; }
  .ind-tiles-panel{ padding: 0 1.5rem !important; }

  .powering-section { padding: 3rem 1.5rem; }
  .logo-tiles-grid  { grid-template-columns: repeat(3, 1fr); }
  .logo-tile        { padding: 1rem 0.75rem; min-height: 70px; }
  .logo-tile img    { max-height: 38px; }

  .cf-row           { grid-template-columns: 1fr; }
  .contact-section  { padding: 4rem 1.5rem; }

  #cookieBanner { padding: 1rem 1.5rem; }
}

@media (max-width: 600px) {
  .ind-tiles-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .metrics-grid { grid-template-columns: 1fr; }
  .cs-results   { grid-template-columns: 1fr; }
  .int-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .logo-tiles-grid { grid-template-columns: repeat(2, 1fr); }
}


/* =============================================================================
   31. IMAGE UTILITIES — ensures proper image display across all sections
   ============================================================================= */

/* Nav logo */
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

/* Footer logo */
.footer-logo-img {
  height: 65px;
  width: auto;
  display: block;
  margin-bottom: 0.6rem;
}

/* Module panel images — full fill */
.module-img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  display: block;
}

/* Module panel images — contain (fit inside box) */
.module-img-contain {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* GPS/tracking full panel image */
.module-img-gps {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ETL reporting panel */
.module-img-etl {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* PLMS zone overlay — positioned inline via data attributes */
.plms-zone[data-pos="tl"]  { top: 12%; left:  8%; }
.plms-zone[data-pos="tc"]  { top: 12%; left: 42%; }
.plms-zone[data-pos="mr"]  { top: 35%; left: 58%; }
.plms-zone[data-pos="tr"]  { top: 12%; right: 4%; }

/* Powering Growth heading */
.powering-title {
  margin-bottom: 0.5rem;
}

.powering-subtitle {
  text-align: center;
  margin: 0 0 2.5rem;
  color: var(--color-grey);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

/* Industry eyebrow spacing */
.sec-eyebrow--spaced {
  margin-bottom: 1.5rem;
}

/* Case study accent colour utilities */
.cs-card--amber  { --ccol: #f59e0b; }
.cs-card--green  { --ccol: #22c55e; }
.cs-card--violet { --ccol: #a78bfa; }
.cs-card--sky    { --ccol: #38bdf8; }

/* Cookie banner privacy link */
.cookie-privacy-link {
  color: var(--color-orange);
  text-decoration: none;
}

/* WhatsApp button (when enabled) */
#waBtn {
  position: fixed;
  bottom: 5.5rem;
  right: 1.75rem;
  z-index: 8888;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

#waBtn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* Nav logo anchor wrapper */
.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
