@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,800;0,900;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: 'Astro Futuristic';
  src: url('assets/fonts/as.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Overcame Demo';
  src: url('assets/fonts/OvercameDemoRegular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ============================================================
   SPACE PLANNERS INDIA — Master Stylesheet
   ============================================================ */
/* Google Fonts loaded via <link> in HTML head for better performance */

/* ── CSS Custom Properties ── */
:root {
  /* PRIMARY COLORS (from logo) */
  --primary: #C41212;
  /* Logo red - bold, confident */
  --primary-dark: #9a0e0e;
  /* Darker red for hover/active states */
  --primary-light: #E85454;
  /* Lighter red for backgrounds */

  /* NEUTRALS (refined for premium feel) */
  --dark: #1a1a1a;
  /* Near-black for primary text */
  --mid: #4a4a4a;
  /* Mid-gray for secondary text */
  --light: #737373;
  /* Light gray for tertiary text */
  --bg: #fafafa;
  /* Off-white background */
  --white: #ffffff;
  /* Pure white */
  --border: #e0e0e0;
  /* Subtle borders */

  /* ACCENT COLORS (complements) */
  --accent-navy: #1b3a52;
  /* Professional accent (optional) */
  --accent-teal: #2a9a9a;
  /* Alternative accent (optional) */
  --success: #4caf50;
  /* For positive feedback */
  --error: #d32f2f;
  /* For error states */
  --warning: #ff9800;
  /* For warnings */

  /* SHADOWS (refined for premium feel) */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 32px 72px rgba(0, 0, 0, 0.16);

  /* TYPOGRAPHY */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Outfit', sans-serif;

  /* SPACING & LAYOUT */
  --radius: 10px;
  /* Slightly tighter radius for modern look */
  --trans: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* ALIASES — used throughout stylesheet */
  --red: #C41212;
  --red-dark: #9a0e0e;
  --orange: #C41212;

  /* DARK THEME VARS (used in assessment section) */
  --navy-mid: #f8f8f8;
  --navy: #ffffff;
  --charcoal: #ffffff;
  --glass: rgba(196, 30, 58, 0.03);
  --glass-md: rgba(196, 30, 58, 0.06);
  --border-hot: rgba(196, 30, 58, 0.25);
  --off-white: #1a1a1a;
  --silver: #4a4a4a;

  /* LAYOUT */
  --max-w: 1280px;
  --section-pad: 40px;
  --font-display: 'Josefin Sans', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* BRAND TOKENS */
  --brand-red: #C41212;
  --brand-black: #0d0d0d;
  --brand-white: #ffffff;
  --grey-70: #3d3d3d;
  --grey-50: #666666;
  --grey-10: #e6e6e6;
  --grey-05: #f5f5f5;
}

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 1rem;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

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

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

button {
  font-family: var(--font-sans);
  cursor: pointer;
}

ul {
  list-style: none;
}

/* ── PRELOADER UTILITY ── */
.preloader-active {
  overflow: hidden !important;
}

/* ── NEW PRELOADER CONTAINER ── */
#sp-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  font-family: 'Josefin Sans', sans-serif;
}

#sp-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#sp-loader .scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#sp-loader .main-row {
  display: flex;
  align-items: center;
}

#sp-loader #c {
  display: block;
}

#sp-loader .word-planners {
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  transform: translateY(0);
}

#sp-loader .word-planners span {
  font-size: clamp(0.9rem, 4.2vw, 1.75rem);
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#sp-loader .progress-track {
  width: min(300px, 90vw);
  height: 1.5px;
  background: #e0e0e0;
  overflow: hidden;
}

#sp-loader .progress-fill {
  height: 100%;
  width: 0%;
  background: #c0392b;
}

#sp-loader .replay {
  margin-top: 28px;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #bbb;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: color 0.2s;
}

#sp-loader .replay:hover {
  color: #c0392b;
}




/* ── Utility ── */
@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .section-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
  }

  .section-subtitle {
    font-size: 0.875rem;
    padding: 0 10px;
  }
}

/* ── data-delay: honour transition delay on stagger items ── */
[data-delay="80"] {
  transition-delay: 80ms !important;
}

[data-delay="100"] {
  transition-delay: 100ms !important;
}

[data-delay="150"] {
  transition-delay: 150ms !important;
}

[data-delay="160"] {
  transition-delay: 160ms !important;
}

[data-delay="200"] {
  transition-delay: 200ms !important;
}

[data-delay="240"] {
  transition-delay: 240ms !important;
}

[data-delay="320"] {
  transition-delay: 320ms !important;
}

[data-delay="400"] {
  transition-delay: 400ms !important;
}

/* ── Industry cards: responsive grid ── */



.section-badge {
  display: inline-block;
  background: rgba(229, 57, 53, .08);
  color: var(--red);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 16px;
  max-max-width: 640px;
  width: 100%;
}

.accent-line {
  width: 56px;
  height: 4px;
  background: var(--red);
  border-radius: 4px;
  margin: 0 auto;
}

.accent-line.left {
  margin: 0;
}

.text-center {
  text-align: center;
}



/* ── Toast Notification ── */
#toast-container {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  width: min(400px, 90vw);
}

@media (max-width: 768px) {
  #toast-container {
    bottom: 170px;
    width: min(90vw, 340px);
  }
}

.toast {
  background: #1a1a1a;
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s ease;
  pointer-events: all;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast .toast-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.toast.success {
  border-left: 4px solid #4caf50;
}

.toast.error {
  border-left: 4px solid var(--red);
}

/* ==============================================
   HEADER & NAVIGATION
============================================== */
header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: visible;
}

/* Blur layer behind header — kept on pseudo so it doesn't clip dropdowns */
header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s ease;
  z-index: -1;
  pointer-events: none;
}

/* Default padding for pages with fixed individual header */
body:not(.transparent-nav) main,
.main-content-wrapper,
body:not(.transparent-nav) section:first-of-type {
  padding-top: 110px;
}

/* transparent-nav pages: hero starts at top-of-page, header overlays */
body.transparent-nav .hero-wrap {
  margin-top: 0 !important;
}

header.scrolled::before {
  background: rgba(255, 255, 255, 0.95) !important;
  border-bottom-color: rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  gap: 20px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  box-sizing: border-box;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.4s ease,
    color 0.4s ease;
}

header.scrolled .header-main {
  padding: 10px 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  flex: 0 0 auto;
}

.logo img {
  height: 120px;
  width: auto;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.4s ease;
  display: block;
}

header.scrolled .logo img {
  height: 100px;
}


/* Base transitions for other header elements */
.main-nav a,
.btn-primary,
.btn-call,
.hamburger span {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop Nav */
.main-nav {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  overflow: visible;
}

.main-nav>ul {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: nowrap;
  overflow: visible;
}


.main-nav li {
  position: relative;
  padding: 8px 12px;
  /* Highlighting whole area includes this padding */
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.main-nav li:hover {
  background: rgba(196, 30, 58, 0.15);
  backdrop-filter: blur(8px);
}

.main-nav li:hover a {
  color: var(--red);
}

.main-nav a {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
  text-transform: capitalize;
  white-space: nowrap;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .3s;
}

.main-nav a:hover,
.main-nav li:hover>a {
  color: var(--red);
}

.main-nav a:hover::after,
.main-nav li:hover>a::after {
  width: 100%;
  height: 2px;
}

.main-nav a.active {
  color: var(--red);
}

.main-nav a.active::after {
  width: 100%;
}

.main-nav li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* DEFAULT: hidden */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  border-radius: 12px;
  padding: 8px 0;
  margin-top: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
  display: flex;
  flex-direction: column;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

/* HOVER: show it */
.main-nav li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li {
  width: 100%;
}

.nav-dropdown a {
  padding: 4px 24px;

  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: 0;
  white-space: nowrap;
}

.nav-dropdown a::after {
  display: none;
}

.nav-chevron {
  transition: transform 0.3s ease;
  margin-left: 2px;
  position: relative;
  top: 1px;
}

.main-nav li:hover .nav-chevron {
  transform: rotate(180deg);
  stroke: var(--red);
}

.nav-dropdown a:hover {
  background: rgba(229, 57, 53, .05);
  color: var(--red);
  padding-left: 24px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  flex: 0 0 auto;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 0;
  border: 3px solid var(--red);
  color: var(--red);
  background: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--trans);
  white-space: nowrap;
}

.btn-call:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(229, 57, 53, .3);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 0;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--trans);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(0);
  background: var(--primary-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--trans);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* Mobile Nav Drawer */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 950;
  opacity: 0;
  transition: opacity .3s;
}

.mobile-nav-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--white);
  z-index: 1500;
  transition: right .35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0, 0, 0, .15);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--mid);
  cursor: pointer;
  padding: 10px;
  margin-right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}

.mobile-nav-close:active {
  color: var(--red);
  transform: scale(0.9);
}

.mobile-nav ul {
  padding: 20px 0;
  flex: 1;
}

.mobile-nav ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: capitalize;
  transition: var(--trans);
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
  color: var(--red);
  background: rgba(229, 57, 53, .05);
  padding-left: 28px;
}

.mobile-nav-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body:not(.transparent-nav) main {
  padding-top: 138px;
}

/* Responsive Navigation Breakpoint */
@media (max-width: 1280px) {
  .main-nav {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .header-main {
    padding: 16px 24px;
  }

  /* Keep scrolled padding consistent on mobile — overrides the desktop 10px 40px */
  header.scrolled .header-main {
    padding: 10px 24px;
  }

  .logo img {
    height: 60px;
  }

  /* Override desktop scrolled logo height so it stays small on mobile */
  header.scrolled .logo img {
    height: 50px;
  }

  body:not(.transparent-nav) main {
    padding-top: 92px;
  }

  .logo-text {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .header-actions .btn-call {
    display: none;
    /* Hide phone number on smaller mobile to save space */
  }

  .header-actions .btn-primary {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
}



/* ==============================================
   TRANSPARENT HEADER OVERRIDES
============================================== */
body.transparent-nav header:not(.scrolled) {
  background: transparent !important;
  box-shadow: none !important;
}

body.transparent-nav header:not(.scrolled)::before {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}

/* Gradient overlay for transparent header legibility */
body.transparent-nav header:not(.scrolled)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

body.transparent-nav header.scrolled::before {
  opacity: 0;
}

body.transparent-nav header:not(.scrolled) .logo img {
  filter: brightness(0) invert(1);
}

body.transparent-nav header:not(.scrolled) .main-nav>ul>li>a {
  color: var(--white) !important;
}

body.transparent-nav header:not(.scrolled) .nav-dropdown a {
  color: var(--dark) !important;
}

body.transparent-nav header:not(.scrolled) .hamburger span {
  background: var(--white) !important;
}

body.transparent-nav header:not(.scrolled) .btn-call {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  backdrop-filter: blur(4px);
}

body.transparent-nav header:not(.scrolled) .btn-call:hover {
  background: var(--white) !important;
  color: var(--primary) !important;
  border-color: var(--white) !important;
}

body.transparent-nav header:not(.scrolled) .btn-primary {
  background: var(--white) !important;
  color: var(--primary) !important;
}


/* Skip Link */
.skip-link {
  position: absolute;
  top: -60px;
  left: 20px;
  background: var(--red);
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 0 0 10px 10px;
  z-index: 2000;
  font-weight: 600;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}



/* ==============================================
   FLOATING BUTTONS
==============================================*/
/* ── Floating Buttons Stack ── */
.float-stack {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: floatIn .6s ease 1s both;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

/* Mobile: Adjust spacing to prevent overlap with back-to-top */
@media (max-width: 768px) {
  .float-stack {
    bottom: 100px;
    right: 12px;
  }

  #back-to-top {
    left: 12px;
    bottom: 28px;
  }
}

/* Floating Quick Inquiry Button */
.float-inquiry-btn {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--trans);
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.float-inquiry-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.float-inquiry-btn:active {
  transform: scale(0.95);
}

.float-inquiry-btn svg {
  width: 22px;
  height: 22px;
  fill: white;
}

/* Mini Inquiry Popup */
.float-inquiry-popup {
  position: fixed;
  bottom: 210px;
  right: 28px;
  z-index: 1200;
  width: 360px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, .2);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 8px;
  animation: popupIn .3s cubic-bezier(.4, 0, .2, 1);
  border: 1px solid var(--border);
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .float-inquiry-popup {
    width: 340px;
    bottom: 200px;
    right: 12px;
  }
}

@media (max-width: 480px) {
  .float-inquiry-popup {
    width: calc(100vw - 24px);
    max-width: 360px;
    bottom: 180px;
    right: 12px;
    left: 12px;
  }
}

.float-inquiry-popup.show {
  display: flex;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(.96)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

.popup-header {
  position: relative;
  margin-bottom: 16px;
}


.popup-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.popup-subtitle {
  font-size: 0.75rem;
  color: var(--light);
  margin: 4px 0 0 0;
}

.popup-close {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 0.875rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}

.popup-close:hover {
  background: var(--primary-dark);
  transform: rotate(90deg);
}

.popup-input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.875rem;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  transition: var(--trans);
}

.popup-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.popup-submit {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--trans);
  font-family: var(--font-sans);
}

.popup-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.popup-note {
  font-size: 0.75rem;
  color: var(--light);
  text-align: center;
  margin: 12px 0 0 0;
}


.whatsapp-float {
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-btn {
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
  transition: var(--trans);
  position: relative;
  flex-shrink: 0;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
}


/* Back to top — moved to LEFT to avoid overlap with float-stack on right */
#back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 800;
  width: 42px;
  height: 42px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--trans);
  box-shadow: var(--shadow-md);
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--red);
  transform: translateY(-2px);
}

/* Primary CTA Button - Prominent */
.btn-white {
  background: var(--white);
  color: var(--primary);
  border: none;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0;
  cursor: pointer;
  transition: var(--trans);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  background: var(--red-dark);
}

.btn-white:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Secondary CTA Button - Outline */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 28px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0;
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  transform: scale(1.02);
}

.btn-outline-white:active {
  transform: scale(0.98);
}

/* Hero Gradient Overlay */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  z-index: 1;
  /* Below the text content but above the image */
  pointer-events: none;
}

/* Ensure buttons don't have full width styling in hero */
.slide-cta .btn-white,
.slide-cta .btn-outline-white {
  width: auto;
}

/* ==============================================
   FORM VALIDATION STYLES
============================================== */
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: var(--red);
  background-color: rgba(229, 57, 53, 0.05);
}

.form-group input.is-valid,
.form-group select.is-valid,
.form-group textarea.is-valid {
  border-color: #00a86b;
}

.error-message {
  color: var(--red);
  font-size: 0.6875rem;
  font-weight: 500;
  margin-top: 4px;
  display: none;
}

/* ══════════════════════════════════════════════════════════
   3. FREE STORAGE ASSESSMENT
   ══════════════════════════════════════════════════════════ */
.assessment-section {
  background: transparent;
  position: relative;
  overflow: hidden;
}

.assessment-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  max-width: 800px;
  width: 100%;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 93, 38, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.assessment-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.assessment-left {
  position: sticky;
  top: 40px;
}

.assessment-benefits {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 10px;
  border: 1px solid var(--border);
  background: var(--glass);
  transition: all 0.3s;
  border-radius: 12px;
}

.benefit-item:hover {
  border-color: var(--border-hot);
  background: var(--glass-md);
}

.benefit-num {
  font-family: var(--font-display);
  font-size: 2.1875rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.benefit-text h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}

.benefit-text p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--silver);
  line-height: 1.5;
}

.assessment-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.assessment-form h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 8px;
}

.assessment-form p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--light);
  margin-bottom: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--dark);
  padding: 13px 16px;
  font-size: 0.875rem;
  transition: border-color 0.3s;
  border-radius: 8px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-sans);
}

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

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select option {
  background: var(--charcoal);
}

/* .btn is an alias — specific variants (btn-primary etc.) provide the full style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--trans);
  border: none;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-submit {
  margin-top: 10px;
  width: fit-content;
  padding: 12px 28px;
  font-size: 0.875rem;
}

@media(max-width:1024px) {
  .assessment-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .assessment-form {
    padding: 20px;
  }
}

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

/* ==============================================
   MODALS
============================================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  z-index: 2000;
  backdrop-filter: blur(3px);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  max-width: 540px;
  width: 100%;
  position: relative;
  animation: modalIn .35s cubic-bezier(.4, 0, .2, 1);
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(.97)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

@media (max-width: 600px) {
  .modal.active {
    padding: 12px;
    align-items: flex-end;
  }

  .modal-content {
    padding: 28px 20px 24px;
    border-radius: 16px 16px 0 0;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin: 0;
    display: block;
  }

  .modal-buttons {
    flex-direction: column;
  }

  .product-detail-image {
    height: 180px;
  }

  /* Full-width captcha, no scaling on mobile modal */
  .modal-content .h-captcha {
    transform: none;
  }
}

.product-modal-content {
  max-width: 1100px;
  /* Even wider for full horizontal detail */
}

.close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--bg);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}

.close-btn:hover {
  background: var(--red);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  color: var(--dark);
  margin: 10px 0 24px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--mid);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  transition: var(--trans);
  background: var(--white);
  color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, .12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: var(--trans);
}

.submit-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(229, 57, 53, .35);
}

/* Form submit area — captcha sits above, button below, always full-width */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 4px;
}

.form-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
}

/* Product modal image area */
.product-detail-image {
  width: 100%;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-features {
  margin: 18px 0;
}

.product-detail-features h4 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 0.9375rem;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--mid);
}

.feature-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: auto;
  position: sticky;
  bottom: 0;
  background: var(--white);
  padding: 16px 0;
  z-index: 10;
}

.modal-btn {
  flex: 1;
  padding: 12px;
  border: 2px solid var(--red);
  background: var(--white);
  color: var(--red);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.modal-btn:hover {
  background: var(--red);
  color: var(--white);
}

.modal-btn.primary {
  background: var(--red);
  color: var(--white);
}

.modal-btn.primary:hover {
  background: var(--red-dark);
}

/* ==============================================
   STATS RIBBON — Bruynzeel-style horizontal strip
============================================== */
.stats-ribbon {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .12), 0 2px 8px rgba(0, 0, 0, .06);
  position: relative;
  z-index: 30;
  /* Pull up over the bottom of the carousel */
  margin-top: -64px;
  /* Constrain width so it doesn't touch edges — gives the "card over photo" look */
  width: calc(100% + 0px);
  /* Keep horizontal scrollable strip inside a max-width container */
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.stats-strip {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* deliberately NO padding-right so last items are partially cut off */
  padding: 0 0 0 0;
}

.stats-strip::-webkit-scrollbar {
  display: none;
}

.stat-strip-item {
  flex: 1 1 180px;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: var(--trans);
  cursor: default;
  position: relative;
  background: transparent;
}

@media (max-width: 1024px) {
  .stat-strip-item {
    flex: 0 0 210px;
    padding: 36px 24px;
  }
}

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

.stat-strip-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.stat-strip-item:hover::after {
  transform: scaleX(1);
}

.stat-strip-item:hover {
  background: rgba(229, 57, 53, .03);
}

.stat-strip-icon {
  color: var(--dark);
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  transition: color .4s ease, transform .4s ease;
}

.stat-strip-item:hover .stat-strip-icon {
  color: var(--red);
  transform: translateY(-6px) scale(1.08);
}

/* SVG stroke draw-in animation */
.stat-strip-icon svg {
  color: var(--dark);
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* All stroked paths/lines/rects/circles/polylines get the draw-in */
.stat-strip-icon svg path,
.stat-strip-icon svg line,
.stat-strip-icon svg rect,
.stat-strip-icon svg circle,
.stat-strip-icon svg polyline,
.stat-strip-icon svg polygon {
  stroke-dasharray: 400;
  /* Increased to accommodate larger icons */
  stroke-dashoffset: 0;
  /* Visible by default fallback */
  stroke: currentColor;
  fill: none;
  transition: stroke-dashoffset 0.3s ease;
}

/* When .drawn class is added via JS, animate the stroke in */
.stat-strip-item.drawn .stat-strip-icon svg path,
.stat-strip-item.drawn .stat-strip-icon svg line,
.stat-strip-item.drawn .stat-strip-icon svg rect,
.stat-strip-item.drawn .stat-strip-icon svg circle,
.stat-strip-item.drawn .stat-strip-icon svg polyline,
.stat-strip-item.drawn .stat-strip-icon svg polygon {
  animation: drawStroke .9s cubic-bezier(.4, 0, .2, 1) forwards;
}


/* Animated counter number */
.stat-strip-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
  transition: color .35s;
}

.stat-strip-num span {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--red);
  margin-left: 2px;
}

.stat-strip-item:hover .stat-strip-num {
  color: var(--red);
}

.stat-strip-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #aaa;
  transition: color .35s;
}

.stat-strip-item:hover .stat-strip-label {
  color: var(--mid);
}

/* Animated scroll hint */
.stats-strip-hint {
  position: absolute;
  bottom: 10px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.625rem;
  font-weight: 600;
  color: #ccc;
  letter-spacing: .06em;
  text-transform: uppercase;
  pointer-events: none;
  animation: fadeInHint 1s ease 2s both;
}

@keyframes fadeInHint {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.stats-hintdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.4s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .2;
  }
}

/* Count-up animation class applied by JS */
.stat-strip-num.counting {
  animation: countPop .4s cubic-bezier(.4, 0, .2, 1);
}

@keyframes countPop {
  0% {
    transform: scale(.9);
  }

  60% {
    transform: scale(1.07);
  }

  100% {
    transform: scale(1);
  }
}

/* ==============================================
   HERO CAROUSEL
============================================== */
.carousel-section {
  width: 100%;
  position: relative;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: min(1020px, 95vh);
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 10;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.carousel-slide .slide-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  /* Strong consistent gradient — left 50% solid, then fades — guarantees white text is always readable */
  background: linear-gradient(to right,
      rgba(0, 0, 0, .82) 0%,
      rgba(0, 0, 0, .72) 35%,
      rgba(0, 0, 0, .40) 60%,
      rgba(0, 0, 0, .10) 100%);
}

.slide-content {
  position: absolute;
  z-index: 20;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22% 80px 200px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 880px;
}

.slide-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 14px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}

.slide-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .7), 0 1px 3px rgba(0, 0, 0, .5);
}

.slide-description {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, .95);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.65;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .6);
}

.slide-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: auto;
}

.slide-cta .btn-white {
  padding: 13px 28px;
  border-radius: 8px;
  border: 2px solid var(--white);
  background: var(--white);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--trans);
}

.slide-cta .btn-white:hover {
  background: transparent;
  color: var(--white);
}

.slide-cta .btn-outline-white {
  padding: 13px 28px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, .6);
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--trans);
}

.slide-cta .btn-outline-white:hover {
  background: rgba(255, 255, 255, .15);
  border-color: var(--white);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, .32);
  transform: translateY(-50%) scale(1.08);
}

.carousel-nav.prev {
  left: 28px;
}

.carousel-nav.next {
  right: 28px;
}

.carousel-controls,
#carouselDots {
  position: absolute;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 30;
}

.control-dot,
.carousel-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--trans);
  padding: 0;
}

/* Invisible 44px tap target — keeps the visible dot small without shrinking the hit area */
.control-dot::before,
.carousel-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
}

.control-dot.active,
.carousel-dot.active {
  background: var(--white);
  border-color: var(--white);
  width: 32px;
  border-radius: 5px;
}

/* ==============================================
   SECTION: PRODUCTS
============================================== */
.products-section {
  padding: 40px 0;
}

.products-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header-small {
  text-align: center;
  margin-bottom: 32px;
}

.section-header-small .accent-line {
  margin: 0 auto;
}

.products-container {
  display: block;
  /* Modified to block instead of grid for index.html */
}

/* Home Page specific filter section */
.filter-section-home {
  background: var(--white);
  padding: 0 0 24px 0;
  z-index: 100;
}

.filter-section-home .filter-container {
  max-max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  justify-content: center;
  /* Center horizontally */
}

.filter-section-home .filter-container::-webkit-scrollbar {
  display: none;
}

/* Horizontal scrollable wrapper for products on homepage */
.products-scroll-wrapper {
  position: relative;
  margin-top: 8px;
}

.products-grid-scrollable {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
}

.products-grid-scrollable::-webkit-scrollbar {
  display: none;
}

.products-grid-scrollable .products-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
}

.products-grid-scrollable .product-card {
  flex: 0 0 320px;
  /* Fixed width for cards inside the horizontal scroll */
  scroll-snap-align: start;
}

.sidebar,
.right-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-btn {
  width: 100%;
  text-align: left;
  padding: 11px 16px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--mid);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.8125rem;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.category-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: center;
  transition: var(--trans);
}

.category-btn:hover {
  border-color: var(--red);
  background: rgba(229, 57, 53, .04);
  color: var(--red);
}

.category-btn:hover::before {
  transform: scaleY(1);
}

.category-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.category-btn.active::before {
  transform: scaleY(1);
  background: rgba(255, 255, 255, .3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(196, 18, 18, 0.2);
}

.product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card:hover .product-image img {
  transform: scale(calc(var(--zoom, 1) + 0.06));
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
}

.product-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.25;
}

.product-description {
  font-size: 0.8125rem;
  color: var(--light);
  margin-bottom: 14px;
  line-height: 1.55;
}

.product-features {
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.feature-tag {
  background: var(--bg);
  color: var(--mid);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  transition: var(--trans);
}

.product-card:hover .feature-tag {
  background: var(--red);
  color: var(--white);
}

.product-applications {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.applications-label {
  font-size: 0.625rem;
  color: #aaa;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.applications-text {
  font-size: 0.75rem;
  color: var(--mid);
  font-weight: 500;
}

/* ==============================================
   SECTION: SECTORS
============================================== */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 64px;
}

@media (max-width: 1100px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .industry-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 600px) {
  .industries-grid {
    grid-template-columns: 1fr !important;
    border: none !important;
  }

  .industry-card {
    padding: 24px 20px !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }
}




.industry-card {
  padding: 40px 28px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
}

.industry-card:last-child {
  border-right: none;
}

.industry-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out-expo);
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-card:hover {
  background: var(--glass);
  transform: translateY(-4px);
}

.industry-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--orange);
}

.industry-icon svg {
  width: 100%;
  height: 100%;
}

.industry-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
  align-items: center;
}

.industry-desc {
  font-size: 0.8125rem;
  color: var(--light);
  line-height: 1.6;
}

/* ── UTILITY ───────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  max-width: 32px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.section-title span {
  color: var(--orange);
}

.section-sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--light);
  line-height: 1.7;
  max-max-width: 520px;
  width: 100%;
  margin-top: 20px;
}

/* ── ANIMATIONS ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.storage-systems-section {
  padding: 20px 0;
  background: linear-gradient(to bottom, #fff, var(--bg));
}

.storage-systems-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Sectors container matches the standard container width for card alignment */
.sectors-section .container {
  max-max-width: 1280px;
  width: 100%;
  padding: 0 40px;
}



/* ==============================================
   SECTION: PRODUCT FINDER
============================================== */
.product-finder-section {
  padding: 10px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.product-finder-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.finder-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.finder-left .section-title {
  text-align: left;
}

.finder-left .section-subtitle {
  text-align: left;
}

.finder-left .accent-line {
  margin-left: 0;
}

.finder-benefits {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.finder-benefits li {
  font-size: 0.9375rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 12px;
}

.finder-benefits li span {
  color: var(--red);
  font-weight: 700;
  font-size: 1.125rem;
}

.finder-form-box {
  background: linear-gradient(135deg, var(--dark), #2d2d2d);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, .2);
}

.finder-form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.finder-form-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 28px;
}

.finder-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.finder-form .form-group label {
  color: rgba(255, 255, 255, .75);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.finder-form .form-group select {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
  color: var(--white);
}

.finder-form .form-group select option {
  background: #2d2d2d;
  color: var(--white);
}

.finder-form .form-group select:focus {
  border-color: var(--red);
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, .2);
}

.finder-submit-btn {
  padding: 10px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: var(--trans);
  margin-top: 4px;
}

.finder-submit-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(229, 57, 53, .4);
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 22px;
  top: 30px;
  width: 2px;
  height: calc(100% + 2px);
  background: var(--border);
}

.process-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.process-step-content h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.process-step-content p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--light);
  line-height: 1.55;
}

/* ==============================================
   SECTION: PROJECTS
============================================== */
.projects-section {
  padding: 40px 0;
}

.projects-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.projects-container {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 28px;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--trans);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.project-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.project-card:hover .project-image img {
  transform: scale(1.06);
}

.project-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.project-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--red);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 700;
  z-index: 5;
}

.project-content {
  padding: 24px;
}

.project-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.project-description {
  font-size: 0.8125rem;
  color: var(--light);
  margin-bottom: 14px;
  line-height: 1.55;
}

.project-scale {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  color: var(--mid);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Hover-zoom on the case-study card image (kept — not covered by the live .case-studies-scroll block below) */
.case-study-card:hover .case-study-image img {
  transform: scale(1.08);
}

/* Industry Badge — live, used by projects.html's rendered case cards */
.industry-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.3);
  z-index: 10;
}

/* Top Metric Highlight */
.top-metric {
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.1), rgba(229, 57, 53, 0.05));
  padding: 12px;
  border-radius: 8px;
  border-left: 3px solid var(--red);
  margin-bottom: 16px;
  text-align: center;
}

.top-metric>div:first-child {
  line-height: 1;
  margin-bottom: 4px;
}

/* View More Button */
.view-more-btn {
  width: 100%;
  margin-top: 14px;
  padding: 11px;
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  transition: var(--trans);
  cursor: pointer;
}

.view-more-btn:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ─── Results Highlight Section ─── */
.results-highlight-section {
  background: linear-gradient(135deg, rgba(229, 57, 53, .08), rgba(229, 57, 53, .02));
  padding: 60px 0;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  margin-bottom: 60px;
}

.results-dashboard {
  animation: slideUp .6s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.result-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.result-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: var(--red);
}

.result-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.result-metric {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.result-label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.result-detail {
  font-size: 0.75rem;
  color: var(--light);
  font-weight: 500;
}

@media (max-width: 768px) {
  .results-highlight-section {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  .result-card {
    padding: 24px 16px;
  }

  .result-metric {
    font-size: 2.25rem;
  }

  .result-label {
    font-size: 0.8125rem;
  }
}

.case-studies-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}

.case-studies-wrapper {
  position: relative;
  margin-top: 48px;
}

.case-studies-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 16px 4px 32px;
  scrollbar-width: none;
}

.case-studies-scroll::-webkit-scrollbar {
  display: none;
}

.case-study-card {
  position: relative;
  flex: 0 0 360px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--trans);
}

.case-study-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.case-study-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.case-study-content {
  padding: 26px 24px;
}

.case-study-title {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.case-study-subtitle {
  font-size: 0.6875rem;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px;
}

.case-study-section {
  margin-bottom: 12px;
}

.case-study-label {
  font-size: 0.6875rem;
  color: #aaa;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.case-study-text {
  font-size: 0.8125rem;
  color: var(--mid);
  line-height: 1.55;
}

.case-study-text.result {
  color: var(--red);
  font-weight: 700;
  font-size: 0.875rem;
}

.scroll-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.125rem;
  transition: var(--trans);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.scroll-nav:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.08);
}

.scroll-nav.left {
  left: -22px;
}

.scroll-nav.right {
  right: -22px;
}

/* ==============================================
   SECTION: TESTIMONIALS
============================================== */
.testimonials-section {
  padding: 30px 0;
  background: rgba(196, 30, 58, 0.03);
}

.testimonials-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials-scroll-wrapper {
  position: relative;
  margin-top: 24px;
}

.testimonials-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 16px 4px 24px;
  scrollbar-width: none;
}

.testimonials-scroll::-webkit-scrollbar {
  display: none;
}

.testimonials-scroll .testimonial-card {
  flex: 0 0 360px;
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--trans);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 3rem;
  color: rgba(229, 57, 53, .1);
  font-family: serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--dark);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--light);
  margin-top: 2px;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.8125rem;
  margin-bottom: 14px;
}

/* Client Logos */
.clients-section {
  padding: 30px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.clients-label {
  text-align: center;
  font-size: 0.75rem;
  color: #aaa;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 20px;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

/* Horizontal Scrolling Client Logos */
.clients-scroll-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  /* Fade edges for a premium look */
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-scroll {
  display: flex !important;
  width: max-content !important;
  flex-wrap: nowrap !important;
  gap: 0;
  animation: logo-marquee 60s linear infinite;
  -webkit-animation: logo-marquee 60s linear infinite;
  padding: 20px 0;
  will-change: transform;
}

@keyframes logo-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@-webkit-keyframes logo-marquee {
  0% {
    -webkit-transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-50%);
  }
}

.clients-scroll::-webkit-scrollbar {
  display: none;
}

.client-logo-item {
  flex: 0 0 180px;
  padding: 24px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--mid);
  transition: var(--trans);
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  margin: 4px;
  position: relative;
}

.client-logo-item:hover {
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .10);
  transform: translateY(-4px);
  z-index: 2;
}

.client-logo-item .logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 12px;
  filter: grayscale(30%);
  opacity: .85;
  transition: var(--trans);
  padding: 6px;
}

.client-logo-item:hover .logo-img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}

.client-logo-item .logo-fallback {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--red);
}

.client-logo-item .logo-icon {
  font-size: 2rem;
  line-height: 1;
}

.client-logo-item .logo-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--mid);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.client-logo-item:hover .logo-name {
  color: var(--dark);
}

.clients-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}

.clients-nav:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.clients-nav.left {
  left: -20px;
}

.clients-nav.right {
  right: -20px;
}

/* Vertical Scrolling Client Logos */
.clients-section.clients-vertical {
  padding: 40px 40px;
  background: var(--white);
}

.clients-scroll-wrapper-vertical {
  position: relative;
  max-max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-scroll-vertical {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--bg);
  padding: 16px 20px;
  max-height: 500px;
  width: 100%;
}

.clients-scroll-vertical::-webkit-scrollbar {
  width: 6px;
}

.clients-scroll-vertical::-webkit-scrollbar-track {
  background: var(--bg);
  border-radius: 10px;
}

.clients-scroll-vertical::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 10px;
}

.clients-scroll-vertical::-webkit-scrollbar-thumb:hover {
  background: var(--red-dark);
}

.clients-scroll-vertical .client-logo-item {
  flex: 0 0 auto;
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.clients-scroll-vertical .client-logo-item .logo-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.clients-scroll-vertical .client-logo-item .logo-name {
  flex: 1;
  text-align: left;
}

.clients-nav-vertical {
  position: absolute;
  z-index: 10;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}

.clients-nav-vertical:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.clients-nav-vertical.up {
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.clients-nav-vertical.down {
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

/* ── Bruynzeel-style Industry Icon Strip ── */
.industry-strip {
  position: relative;
  z-index: 40;
  margin-top: -48px;
  padding: 0 40px;
}

.industry-strip-inner {
  max-max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, .1);
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.industry-strip-inner::-webkit-scrollbar {
  display: none;
}

.industry-icon-card {
  flex: 1 0 0;
  min-width: 160px;
  padding: 28px 16px 24px;
  text-align: center;
  text-decoration: none;
  color: var(--mid);
  border-right: 1px solid var(--border);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
}

.industry-icon-card:last-child {
  border-right: none;
}

.industry-icon-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .3s ease;
}

.industry-icon-card:hover::after {
  transform: scaleX(1);
}

.industry-icon-card:hover {
  background: rgba(229, 57, 53, .03);
  color: var(--red);
}

.industry-icon-card .ind-icon {
  font-size: 2.25rem;
  line-height: 1;
  transition: transform .3s ease;
}

.industry-icon-card:hover .ind-icon {
  transform: scale(1.15);
}

.industry-icon-card .ind-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── Full-Width 4-Step Process ── */
.process-section {
  padding: 20px 0;
  background: var(--bg);
}

.process-section-content {
  max-max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Circle-style Process Steps (like reference screenshot) ── */
.process-steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 36px;
}

.process-step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.process-step-num {
  font-family: var(--font-serif);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--light);
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.process-step-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  transition: var(--trans);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

.process-step-item:hover .process-step-circle {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 8px 32px rgba(229, 57, 53, .15);
  transform: translateY(-4px);
}

.process-step-item h4 {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.process-step-item p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--light);
  line-height: 1.5;
  max-width: 160px;
  margin: 0 auto;
}

.process-connector {
  flex: 0 0 40px;
  height: 1.5px;
  background: repeating-linear-gradient(to right, var(--border) 0, var(--border) 5px, transparent 5px, transparent 10px);
  margin-top: 33px;
  position: relative;
}

.process-connector::after {
  content: '›';
  position: absolute;
  right: -6px;
  top: -12px;
  font-size: 1.125rem;
  color: var(--border);
}

/* ── Premium Card Layout ── */
.process-cards-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 30px;
}

/* Subtle progress line connecting all cards at top */
.process-track-line {
  display: none;
  /* hidden — card top borders act as the visual guide */
}

.process-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

/* Red top accent bar */
.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.process-card:hover::before {
  transform: scaleX(1);
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
}

/* Giant faded watermark step number */
.process-card-watermark {
  position: absolute;
  top: -10px;
  right: 12px;
  font-family: var(--font-serif);
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(229, 57, 53, .06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color .3s ease;
}

.process-card:hover .process-card-watermark {
  color: rgba(229, 57, 53, .1);
}

/* Icon circle */
.process-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(229, 57, 53, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 18px;
  transition: background .3s ease, transform .3s ease;
}

.process-card:hover .process-card-icon {
  background: rgba(229, 57, 53, .14);
  transform: scale(1.08);
}

/* Step label e.g. "Step 01" */
.process-card-step {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

/* Step title */
.process-card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.25;
}

/* Tagline */
.process-card-sub {
  font-size: 0.75rem;
  color: var(--light);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Forward arrow (hidden on last card via :last-child) */
.process-card-arrow {
  position: absolute;
  bottom: 20px;
  right: 18px;
  font-size: 1.125rem;
  color: #ddd;
  transition: color .3s, transform .3s;
}

.process-card:hover .process-card-arrow {
  color: var(--red);
  transform: translateX(3px);
}

.process-card:last-child .process-card-arrow {
  display: none;
}

.client-logo {
  font-weight: 700;
  font-size: 0.9375rem;
  color: #ccc;
  letter-spacing: .02em;
  transition: var(--trans);
}

.client-logo:hover {
  color: var(--mid);
}

/* ==============================================
   SECTION: MAP
============================================== */
.map-section {
  padding: 28px 0;
  background: linear-gradient(to bottom, var(--white), var(--bg));
}

.map-section-content {
  max-max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.map-container {
  width: 100%;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
  border: 3px solid rgba(229, 57, 53, .15);
  position: relative;
}

/* Themed map label strip */
.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  z-index: 10;
}

/* ==============================================
   SECTION: FAQ
============================================== */
.faq-section {
  padding: 40px 0;
  background: var(--bg);
}

.faq-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-header {
  text-align: center;
  margin-bottom: 30px;
}

.faq-header .accent-line {
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-list .faq-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.faq-list .faq-question {
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--trans);
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9375rem;
}

.faq-list .faq-question:hover {
  background: rgba(229, 57, 53, .03);
  padding-left: 28px;
}

.faq-list .faq-toggle {
  font-size: 1.125rem;
  color: var(--red);
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-list .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-list .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 24px;
}

.faq-list .faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 24px 22px;
}

.faq-list .faq-answer-text {
  color: var(--light);
  line-height: 1.75;
  font-size: 0.875rem;
}

/* ==============================================
   FOOTER
============================================== */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 0 0;
}

.footer-inner {
  max-max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-brand .logo-footer {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-brand .logo-footer span {
  color: var(--red);
}

.footer-brand p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 380px;
}

.footer-col h4 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 20px;
  padding-top: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, .55);
  transition: var(--trans);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, .55);
  transition: var(--trans);
}

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

.footer-contact a span.icon {
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin-top: 32px;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
}

.footer-bottom p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, .3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, .3);
  transition: var(--trans);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, .7);
}

/* ==============================================
   INNER PAGE COMMON STYLES
============================================== */
.hero-section {
  padding: 48px 0 36px;
  text-align: center;
  background: var(--red-dark);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .12;
}

.hero-section>* {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4.25rem);
  font-weight: 800;
  color: var(--white);
  margin-top: 150px;
  margin-bottom: 12px;
  line-height: 1.15;
  background: var(--red-dark);
  letter-spacing: 3px;
}

.hero-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, .5);
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, .6);
  transition: var(--trans);
}

.hero-breadcrumb a:hover {
  color: var(--red);
}

.hero-breadcrumb .sep {
  color: rgba(255, 255, 255, .3);
}

.page-section {
  padding: 40px 0;
}

.page-content {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 40px;
  padding: 0 40px;
}

.section-intro {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.75;
  background: var(--bg);
  padding: 28px 32px;
  border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0;
  margin-bottom: 28px;
}

.section-intro p {
  margin-bottom: 12px;
}

.section-intro p:last-child {
  margin-bottom: 0;
}

/* About grids */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.value-card {
  background: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--red);
}

.value-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.value-text {
  font-size: 0.875rem;
  color: var(--light);
  line-height: 1.7;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.stat-card {
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--red);
}

.stat-number-big {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--light);
  font-weight: 600;
}

/* ==============================================
   ABOUT PAGE — TEAM
============================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--trans);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font-weight: 700;
  color: var(--white);
}

.team-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.8125rem;
  color: var(--light);
  line-height: 1.65;
}

/* Certifications badges */
.certs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--mid);
  box-shadow: var(--shadow-sm);
}

.cert-badge span {
  font-size: 1.375rem;
}

/* ==============================================
   PRODUCTS PAGE
============================================== */
.filter-section {
  background: var(--white);
  padding: 16px 40px;
  position: sticky;
  top: 80px;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.filter-container {
  max-max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.filter-container::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  padding: 9px 20px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--mid);
  border-radius: 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8125rem;
  white-space: nowrap;
  transition: var(--trans);
  flex-shrink: 0;
}

.filter-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.filter-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ==============================================
   RESPONSIVE — 1024px
============================================== */
@media (max-width:1024px) {

  .container,
  .products-content,
  .projects-content,
  .case-studies-content,
  .storage-systems-content,
  .product-finder-content,
  .map-section-content,
  .testimonials-content,
  .clients-content,
  .faq-content,
  .footer-inner {
    padding: 0 28px;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .finder-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 20px;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .1);
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }


  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==============================================
   RESPONSIVE — 768px
============================================== */
@media (max-width:768px) {

  .container,
  .products-content,
  .projects-content,
  .case-studies-content,
  .storage-systems-content,
  .product-finder-content,
  .map-section-content,
  .testimonials-content,
  .clients-content,
  .faq-content,
  .footer-inner,
  .page-content {
    padding: 0 20px;
  }

  .header-top {
    display: none;
  }

  .header-main {
    padding: 14px 20px;
  }

  .header-actions .btn-call {
    display: none;
  }

  .filter-section {
    padding: 14px 20px;
  }

  .float-stack {
    bottom: 100px;
    right: 12px;
  }

  .carousel-container {
    height: min(480px, 70vh);
  }

  .slide-content {
    padding: 100px 60px 40px;
    justify-content: center;
  }

  .slide-title {
    font-size: clamp(2rem, 5vw, 4.25rem);
  }

  .slide-description {
    font-size: 0.9375rem;
  }

  .slide-cta {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .slide-cta .btn-white,
  .slide-cta .btn-outline-white,
  .slide-cta .btn-primary {
    padding: 8px 16px !important;
    font-size: 0.8125rem !important;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }

  .carousel-nav.prev {
    left: 14px;
  }

  .carousel-nav.next {
    right: 14px;
  }

  .carousel-controls {
    bottom: 20px;
  }

  .stats-ribbon {
    padding: 36px 20px 0px 20px;
    margin-top: -50px;
  }

  /* 1. Stats ribbon: Stacks vertically instead of horizontal scroll */
  .stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0;
    padding-bottom: 24px;
    width: 100%;
    overflow-x: hidden;
  }

  .stat-strip-item {
    flex: none;
    width: 100%;
    min-width: 0;
    padding: 10px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  /* Add border right to col 1 and 2 */
  .stat-strip-item:nth-child(3n+1),
  .stat-strip-item:nth-child(3n+2) {
    border-right: 1px solid var(--border);
  }

  /* Remove bottom border from last row (items 4, 5, 6) */
  .stat-strip-item:nth-child(4),
  .stat-strip-item:nth-child(5),
  .stat-strip-item:nth-child(6) {
    border-bottom: none;
  }

  .stat-strip-num {
    font-size: 1.5rem !important;
    /* Smaller text size */
  }

  .stat-strip-text {
    font-size: 0.75rem !important;
    /* Smaller label */
  }

  .stat-strip-icon {
    width: 32px !important;
    height: 32px !important;
    margin-bottom: 8px !important;
  }

  /* Hide the desktop scroll hint dot */
  .stats-strip-hint {
    display: none;
  }

  .products-section,
  .projects-section,
  .case-studies-section,
  .storage-systems-section,
  .product-finder-section,
  .map-section,
  .faq-section,
  .testimonials-section,
  .clients-section {
    padding: 56px 0;
  }

  /* 4. Products: Sidebar filters at top */
  .products-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  /* Ensure the sidebar comes first visually */
  .products-container>.right-sidebar {
    order: -1;
  }

  .right-sidebar {
    position: static;
  }

  .products-grid-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding: 10px 20px 30px;
    margin: 0 -20px;
  }

  .products-grid-container::-webkit-scrollbar {
    display: none;
  }

  .products-grid-container .products-grid {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 20px;
    width: max-content;
  }

  .products-grid-container .product-card {
    flex: 0 0 290px;
    scroll-snap-align: center;
    height: auto !important;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .projects-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sidebar {
    position: static;
  }

  .category-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .category-btn {
    width: auto;
  }

  /* 3. 4 Steps process: 2x2 grid in mobile */
  .process-cards-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .process-card {
    padding: 16px 12px;
  }

  .process-card-arrow {
    display: none;
  }

  .finder-wrapper {
    gap: 16px;
  }

  .finder-form-box {
    padding: 28px 24px;
  }

  .case-study-card {
    flex: 0 0 280px;
  }

  .scroll-nav.left {
    left: -10px;
  }

  .scroll-nav.right {
    right: -10px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 20px;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .map-container {
    height: 380px;
  }

  .section-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
  }

  .hero-section {
    padding: 56px 20px 44px;
  }

  .page-section {
    padding: 52px 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header-small {
    margin-bottom: 40px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .faq-content {
    padding: 0 20px;
  }
}

/* ==============================================
   ANIMATIONS (scroll-triggered by JS)
============================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

.delay-4 {
  transition-delay: .4s;
}

/* ==============================================
   RADIO GRID MOBILE UX (Replaces Select)
============================================== */
.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 5px;
}

.radio-card {
  position: relative;
  cursor: pointer;
}

.radio-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-card span {
  display: block;
  padding: 12px 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--mid);
  background: #fff;
  transition: all 0.2s ease;
  user-select: none;
}

.radio-card input:checked+span,
.radio-card.selected>span {
  background: rgba(229, 57, 53, 0.06);
  border-color: var(--red);
  color: var(--red);
  font-weight: 600;
}

.radio-card input:focus-visible+span {
  outline: 3px solid #0066cc;
  outline-offset: 1px;
}

.radio-grid.dark span {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.radio-grid.dark input:checked+span {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}


/* ==============================================
   WCAG ACCESSIBILITY: GLOBAL FOCUS & CONTRAST
============================================== */
:focus-visible {
  outline: 3px solid #0066cc !important;
  outline-offset: 3px !important;
  transition: outline-offset 0.1s ease !important;
}

/* Ensure footer links pass WCAG AA on dark backgrounds */
.footer-links a,
.footer-contact p,
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.9) !important;
}

.footer-links a:hover,
.footer-bottom-links a:hover {
  color: #fff !important;
  text-decoration: underline !important;
}

/* Modal Close Buttons */
.close-btn:focus-visible {
  outline: 3px solid #e53935 !important;
  outline-offset: 1px !important;
}


/* ==============================================
   WCAG ACCESS: TOUCH TARGETS & CTA HIERARCHY
============================================== */
/* Ensure all form inputs, selects, and buttons have 44px min height for touch */
@media (max-width: 768px) {

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea,
  button:not(.control-dot):not(.carousel-dot):not(.popup-close):not(.close-btn):not(.hamburger),
  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .btn-white,
  .btn-outline-white,
  .filter-btn,
  .category-btn {
    min-height: 44px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    line-height: 1.5 !important;
  }

  /* Small decorative controls get their own explicit 44px hit target instead */
  .popup-close,
  .close-btn,
  .clients-nav,
  .clients-nav-vertical,
  .carousel-nav,
  .cookie-btn {
    min-width: 44px;
    min-height: 44px;
  }
}

/* CTA Hierarchy — btn-primary uses brand red, btn-secondary is outlined */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
  font-family: var(--font-sans);
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

/* ==============================================
   PRODUCT CATEGORY PAGES (3-COLUMN GRID)
============================================== */
.category-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 30px;
  margin-top: 40px;
}

.category-product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.category-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(229, 57, 53, 0.3);
}

.category-product-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.category-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-product-card:hover .category-product-image img {
  transform: scale(1.05);
}

.category-product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.category-product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.category-product-apps {
  font-size: 0.875rem;
  color: var(--mid);
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.category-product-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--red);
  font-weight: 600;
  font-size: 0.875rem;
}

.category-product-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.category-product-card:hover .category-product-cta svg {
  transform: translateX(4px);
}

/* ==============================================
   SPLIT PRODUCT DETAIL MODAL
============================================== */
.product-modal-split {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .product-modal-split {
    flex-direction: row;
    height: 60vh;
    min-height: 400px;
  }
}

.product-modal-image {
  flex: 1;
  background: #f5f5f5;
  position: relative;
}

.product-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  /* Reduced padding for larger image feel */
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.product-modal-split:hover .product-modal-image img {
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .product-modal-image {
    height: 300px;
    flex: none;
  }
}

.product-modal-details {
  flex: 1.2;
  /* Better balance between image and text */
  padding: 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background: var(--white);
}

.product-modal-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin: 12px 0 20px;
  line-height: 1.2;
}

.product-modal-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  margin-bottom: 4px;
}

.product-modal-description {
  color: var(--mid);
  line-height: 1.8;
  font-size: 0.9375rem;
  margin-bottom: 30px;
}

.product-modal-actions {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  justify-content: flex-end;
}

/* Modal Tags Styling */
.product-modal-meta {
  margin-bottom: 24px;
}

.product-modal-meta-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  display: block;
}

.product-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-modal-tag {
  background: #f0f4f8;
  color: #334155;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.product-modal-tag:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

/* === USER FIXES === */
#products .products-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

.product-modal-content {
  max-width: 1100px !important;
  width: 95vw !important;
}

.product-modal-split {
  height: 75vh !important;
  min-height: min(500px, 80vh) !important;
}

.product-modal-image img {
  padding: 0 !important;
  object-fit: cover !important;
}

.product-modal-image {
  flex: 1.2 !important;
}

.product-modal-details {
  flex: 1 !important;
  padding: 40px !important;
}

.product-modal-actions {
  justify-content: flex-start !important;
  gap: 16px !important;
  margin-top: auto !important;
  padding-top: 24px !important;
  border-top: 1px solid #eee !important;
  display: flex !important;
}

.product-modal-actions button,
.product-modal-actions a {
  flex: 1 !important;
  justify-content: center !important;
}

/* ====================================================
   INDUSTRY CLIENT LOGOS — Infinite Marquee Ticker
   ==================================================== */

.industry-client-logos {
  width: 100%;
  margin-top: 48px;
  border-top: 1px solid #eee;
  padding-top: 32px;
  overflow: hidden;
  /* contain the ticker */
}

.industry-client-logos-label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 20px;
}

/* Ticker viewport — clips overflow, adds edge fades */
.clients-ticker {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* fade left/right edges for a polished look */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

/* Pause on hover */
.clients-ticker:hover .clients-ticker-inner {
  animation-play-state: paused;
}

/* The moving belt — exactly 2× the logo set wide */
.clients-ticker-inner {
  display: flex;
  width: max-content;
  animation: tickerScroll 35s linear infinite;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Each logo card — single row, no wrap */
.clients-ticker .client-logo-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 28px;
  flex-shrink: 0;
  cursor: default;
}

.clients-ticker .logo-img {
  height: 36px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter .25s ease;
  display: block;
}

.clients-ticker .client-logo-item:hover .logo-img {
  filter: grayscale(0%) opacity(1);
}

.clients-ticker .logo-name {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--light);
  white-space: nowrap;
  transition: color .25s;
}

.clients-ticker .client-logo-item:hover .logo-name {
  color: var(--dark);
}

@media (max-width: 640px) {
  .clients-ticker-inner {
    animation-duration: 22s;
  }

  .clients-ticker .logo-img {
    height: 28px;
  }

  .clients-ticker .client-logo-item {
    padding: 8px 18px;
  }
}

/* ══════════════════════════════════════════════
   INDUSTRY SOLUTIONS (SECTORS) SECTION
   ══════════════════════════════════════════════ */

/* Mobile scroll wrapper — clips/scrolls the grid without being constrained by body overflow-x: hidden */

@media (max-width: 768px) {
  .sectors-scroll-container {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding: 0 20px 20px;
  }

  .sectors-scroll-container::-webkit-scrollbar {
    display: none;
  }
}

.sectors-section {
  padding: 80px 0;
  background: rgba(196, 30, 58, 0.03);
}

@media (min-width: 769px) {
  .sectors-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    margin-top: 40px;
    width: 120%;
    height: auto;
  }

  .sectors-grid>.product-card {
    flex: 0 0 280px;
  }
}

.sectors-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.sectors-scroll-container::-webkit-scrollbar {
  display: none;
}

.sectors-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  margin-top: 40px;
  width: 120%;
  height: auto;
}

.sectors-grid>.product-card {
  flex: 0 0 240px;
}

.sector-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--white);
  border: 1px solid #e2e8f0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--dark);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.sector-nav-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.sector-nav-btn.prev-btn {
  left: -50px;
}

.sector-nav-btn.next-btn {
  right: -50px;
}

@media (max-width: 1024px) {
  .sector-nav-btn {
    display: none;
  }
}

@media (min-width: 1025px) and (max-width: 1350px) {
  .sector-nav-btn.prev-btn {
    left: -20px;
  }

  .sector-nav-btn.next-btn {
    right: -20px;
  }
}

/* Tablet: 4-column scrollable */
@media (min-width: 769px) and (max-width: 1200px) {
  .sectors-grid>.product-card {
    flex: 0 0 240px;
  }
}

/* Mobile: display all cards in a single scrollable row */
@media (max-width: 768px) {
  .sectors-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: max-content;
    gap: 10px;
    margin-top: 20px;
    padding-bottom: 4px;
  }

  .sectors-grid>.product-card {
    flex: 0 0 270px !important;
    min-max-width: 270px;
    width: 100% !important;
    scroll-snap-align: start;
    height: auto !important;
  }

  .sectors-grid .sector-icon-box {
    width: 100%;
    height: 140px;
    /* was 220px — way too tall for just an icon */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    border-bottom: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
  }
}

/* Shared card structure for sectors-grid product cards */
.sectors-grid>.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.sectors-grid>.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

/* Ensure image wrapper is fixed height and images don't overflow */
/* Icon Box for Sector Cards */
.sectors-grid .sector-icon-box {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  border-bottom: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.sectors-grid .product-card:hover .sector-icon-box {
  background: rgba(255, 255, 255, 0.03);
}

.sectors-grid .sector-icon-box::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.sectors-grid .product-card:hover .sector-icon-box::after {
  transform: scaleX(1);
}

.sectors-grid .sector-icon-box svg {
  max-width: 56px;
  width: 100%;
  height: 56px;
  color: var(--dark);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  stroke-width: 1.2;
  /* Slightly thinner for elegance */
}

.sectors-grid .product-card:hover .sector-icon-box svg {
  color: var(--primary);
  transform: scale(1.1);
}

.sectors-grid .product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.sectors-grid .product-card>a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex: 1;

}

.sectors-grid .product-name {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--dark);
}

.sectors-grid .product-description {
  color: var(--light);
  font-size: 0.875rem;
  margin: 0 0 12px 0;
}

.sectors-grid .product-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  flex: 1;
}

.sectors-grid .product-info li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--mid);
  margin-bottom: 6px;
  line-height: 1.4;
}

.sectors-grid .product-info li span {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.sectors-grid .product-card>div:last-child {
  padding: 0 16px 16px;
  margin-top: auto;
}

.sectors-grid .product-card>div:last-child .btn-primary {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* -- FAQ Section -- */
.faq-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.faq-grid {
  max-max-width: 900px;
  width: 100%;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-grid .faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  transition: var(--trans);
}

.faq-grid .faq-item:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}

.faq-grid .faq-question {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-grid .faq-question h3 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.faq-grid .faq-item.active {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}

.faq-grid .faq-item.active .faq-question h3 {
  color: var(--red);
}

.faq-grid .faq-icon {
  max-width: 24px;
  width: 100%;
  height: 24px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-grid .faq-icon::before,
.faq-grid .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--light);
  transition: background 0.3s ease;
}

.faq-grid .faq-icon::before {
  max-width: 2px;
  width: 100%;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.faq-grid .faq-icon::after {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-grid .faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-grid .faq-item.active .faq-icon::before,
.faq-grid .faq-item.active .faq-icon::after {
  background: var(--red);
}

.faq-grid .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 32px;
}

.faq-grid .faq-item.active .faq-answer {
  max-height: 500px;
  /* Adjust as needed */
  padding: 0 32px 24px;
}

.faq-grid .faq-answer p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.7;
  color: var(--mid);
  margin: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-grid .faq-question {
    padding: 20px 24px;
  }

  .faq-grid .faq-answer {
    padding: 0 24px;
  }

  .faq-grid .faq-item.active .faq-answer {
    padding: 0 24px 20px;
  }

  .faq-grid .faq-question h3 {
    font-size: clamp(1rem, 2vw, 1.25rem);
  }
}

/* ============================================================
   BRAND TOKENS — Typography & Component Overrides
   ============================================================ */

/* Headings */
h1,
h2,
h3,
h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Body copy */
p,
li,
label,
input,
textarea,
select {
  font-family: 'Barlow', sans-serif;
}

/* ── CTA Buttons (precise class names + wildcards) ── */
.btn-primary,
.btn-white,
.btn-call,
.slide-cta .btn-white,
.cta-btn,
.quote-btn,
[class*="cta"],
[class*="quote"],
input[type="submit"],
button[type="submit"] {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
}

.btn-primary,
button[type="submit"],
input[type="submit"] {
  background: var(--brand-red) !important;
  color: #ffffff !important;
  border: none !important;
}

/* ── Badges / tags / certs ── */
.section-badge,
[class*="badge"],
[class*="tag"],
[class*="cert"] {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Section eyebrow / kicker labels ── */
.slide-eyebrow,
.section-badge,
[class*="label"],
[class*="eyebrow"],
[class*="section-tag"],
[class*="kicker"] {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── Active / accent colour ── */
[class*="accent"],
[class*="highlight"],
.main-nav a.active,
.mobile-nav ul li a.active {
  color: var(--brand-red);
}

/* ── Stat numbers ── */
.stat-strip-num,
[class*="stat"] [class*="number"],
[class*="stat"] [class*="num"],
[class*="counter"] {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

header.scrolled {
  box-shadow: var(--shadow-md);
  background: #ffffff !important;
}

.sp-mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: #ffffff;
  border-top: 1px solid #e6e6e6;
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sp-mobile-cta-bar.sp-mobile-cta-visible {
  transform: translateY(0);
}

.sp-mobile-cta-text {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #3d3d3d;
  flex: 1;
}

.sp-mobile-cta-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #C41212;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .sp-mobile-cta-bar {
    display: flex;
  }
}

@media (min-width: 769px) {
  .sp-mobile-cta-bar {
    display: none !important;
  }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 24px;
  background: #fff;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: none;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s ease;
}

.cookie-banner.show {
  display: block !important;
  opacity: 1;
  transform: translateY(0);
}

.cookie-content {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 700;
}

.cookie-text p {
  margin: 0;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--mid);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn.opt-in {
  background: #e53935;
  color: #fff;
}

.cookie-btn.opt-in:hover {
  background: #c62828;
  transform: translateY(-2px);
}

.cookie-btn.opt-out {
  background: transparent;
  color: var(--mid);
  border: 1px solid #ddd;
}

.cookie-btn.opt-out:hover {
  background: #f5f5f5;
  color: var(--dark);
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 20px;
  }

  .cookie-content {
    gap: 16px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }

  .cookie-icon {
    display: none;
  }
}

/* ==============================================
   SECTOR POPUP MODAL (HOMEPAGE)
============================================== */
.sector-modal-content {
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.sector-products-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.sector-category-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mid);
  margin-bottom: 12px;
}

.sector-logos {
  padding-top: 20px;
  border-top: 1px solid #f0f4f8;
}

.sector-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}

.sector-logo-placeholder {
  padding: 16px 24px;
  background: transparent;
  border: none;
  text-align: center;
  flex: 1;
  min-width: 100px;
}

/* ==============================================
   MOBILE & ACCESSIBILITY RESPONSIVENESS FIXES
============================================== */

@media (max-width: 768px) {
  .modal.active {
    padding: 12px 10px !important;
  }

  /* 1. PRODUCT DETAIL MODAL MOBILE UX OPTIMIZATION */
  .modal-content.product-modal-content {
    width: 95vw !important;
    max-width: 540px !important;
    height: 90vh !important;
    max-height: 680px !important;
    padding: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .product-modal-split {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: unset !important;
    overflow: hidden !important;
  }

  .product-modal-image {
    height: 150px !important;
    flex: 0 0 150px !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .product-modal-image img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    padding: 0 !important;
  }

  .product-modal-details {
    flex: 1 1 auto !important;
    padding: 20px 20px 0 20px !important;
    /* bottom padding handled by action overlay */
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
  }

  .product-modal-title {
    font-size: 1.5rem !important;
    margin: 8px 0 12px !important;
  }

  .product-modal-description {
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
  }

  .product-modal-meta {
    margin-bottom: 20px !important;
  }

  .product-modal-actions {
    position: sticky !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--white) !important;
    padding: 12px 0 16px 0 !important;
    margin-top: auto !important;
    z-index: 10 !important;
    box-shadow: 0 -15px 15px -5px var(--white) !important;
    /* Fade gradient below scrolling text */
    display: flex !important;
    border-top: 1px solid #eee !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .product-modal-actions button,
  .product-modal-actions a {
    width: 100% !important;
    flex: 1 !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {

  /* 2. HERO CAROUSEL OPTIMIZATION FOR MOBILE */
  .carousel-container {
    min-height: 400px !important;
  }

  .slide-content {
    padding: 70px 16px 50px 16px !important;
    justify-content: center !important;
  }

  .slide-title {
    font-size: 1.625rem !important;
    /* Avoid huge typography wrapping on small viewports */
    line-height: 1.3 !important;
  }

  .slide-description {
    font-size: 0.8125rem !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
  }

  .carousel-nav {
    display: none !important;
    /* Hide left/right arrows to prevent overlapping layouts */
  }

  .carousel-controls {
    bottom: 12px !important;
    gap: 8px !important;
  }

  .control-dot,
  .carousel-dot {
    width: 8px !important;
    height: 8px !important;
  }

  .control-dot.active,
  .carousel-dot.active {
    width: 24px !important;
  }
}

@media (max-width: 360px) {

  /* 3. HEADER LAYOUT OPTIMIZATION (FOR SCREEN WIDTHS < 360px) */
  .header-main {
    padding: 10px 12px !important;
    gap: 8px !important;
  }

  .logo img {
    height: 42px !important;
    /* Scale logo down slightly to fit */
  }

  .header-actions {
    gap: 8px !important;
  }

  .header-actions .btn-primary {
    display: none !important;
    /* Hide 'Get Free Quote' header button. It's redundant due to bottom CTA and hamburger menu */
  }

  /* Make products-grid exactly 1 column on extremely small devices */
  .products-grid {
    grid-template-columns: 1fr !important;
  }

  .slide-content {
    padding: 60px 12px 45px 12px !important;
  }

  .slide-title {
    font-size: 1.375rem !important;
  }

  .slide-description {
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    /* Shorten description so it doesn't take too much vertical height */
  }
}

/* -- SECTOR MODAL NEW DESIGN -- */
.sector-wrap {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}

.sector-wrap .banner {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #d0d0d0;
}

.sector-wrap .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sector-wrap .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.52) 100%);
}

.sector-wrap .banner-content {
  position: absolute;
  bottom: 28px;
  left: 36px;
  right: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.sector-wrap .banner-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}

.sector-wrap .banner-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
}

.sector-wrap .banner-badge {
  background: #C41212;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.sector-wrap .inner {
  padding: 32px 36px 36px;
}

.sector-wrap .sector-desc {
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 800px;
}

.sector-wrap .tabs-wrap {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
}

.sector-wrap .tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px;
  background: #fafafa;
  border-bottom: 1px solid #e5e5e5;
}

.sector-wrap .tab-btn {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #666666;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sector-wrap .tab-btn:hover {
  border-color: #C41212;
  color: #C41212;
}

.sector-wrap .tab-btn.active {
  color: #ffffff;
  background: #C41212;
  border-color: #C41212;
}

.sector-wrap .tab-count {
  font-size: 11px;
  font-weight: 400;
  color: inherit;
  opacity: 0.65;
}

.sector-wrap .tab-panel {
  display: none;
  padding: 20px 20px;
}

.sector-wrap .tab-panel.active {
  display: block;
}

.sector-wrap .product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.sector-wrap .product-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #f8f8f8;
  border: 1px solid #eeeeee;
  font-size: 16px;
  color: #333333;
  transition: border-color 0.15s, background 0.15s;
  cursor: default;
}

.sector-wrap .product-item:hover {
  background: #fff0f0;
  border-color: #C41212;
  color: #C41212;
}

.sector-wrap .product-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #C41212;
  flex-shrink: 0;
  opacity: 0.5;
}

.sector-wrap .trusted-section {
  margin-bottom: 28px;
}

.sector-wrap .trusted-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #aaaaaa;
  margin-bottom: 12px;
}

.sector-wrap .cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
}

.sector-wrap .cta-text {
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
  text-transform: none !important;
}

.sector-wrap .cta-text strong {
  color: #111111;
  text-transform: none !important;
}

.sector-wrap .cta-btn {
  padding: 11px 24px;
  background: #C41212;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: none !important;
}

.sector-wrap .cta-btn:hover {
  background: #a50f0f;
}

@media (max-width: 600px) {
  .sector-wrap .product-grid {
    grid-template-columns: 1fr;
  }

  .sector-wrap .banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .sector-wrap .cta-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}