/* ============================================================
   OXY MATRIX – Stylesheet v2 (Redesign)
   Brand: Dark Purple (#4A1A6B) → Medium Purple (#7d3c98) → Light Purple (#9b59b6)
   Grounding: Navy (#101729) + Charcoal
   Fonts: Outfit (display) + DM Sans (body)
   ============================================================ */

:root {
  /* Purple scale – dark to light */
  --purple-deep: #3d1560;
  --purple-dark: #4a1a6b;
  --purple-mid: #7d3c98;
  --purple-light: #9b59b6;
  --purple-pale: #c4a1d4;

  /* Functional aliases */
  --primary: #7d3c98;
  --primary-dark: #4a1a6b;
  --primary-glow: rgba(125, 60, 152, 0.3);
  --primary-subtle: rgba(125, 60, 152, 0.06);
  --secondary: #0e1527;
  --secondary-lt: #141d30;
  --navy: #101729;
  --white: #ffffff;
  --light-grey: #f4f5f7;
  --dark-text: #1a2a3a;
  --body-text: #5a6a7a;

  /* Gradients – all dark-to-light purple, no pink/teal/blue */
  --grad-purple: linear-gradient(
    135deg,
    var(--purple-dark),
    var(--purple-light)
  );
  --grad-purple-rev: linear-gradient(
    135deg,
    var(--purple-light),
    var(--purple-dark)
  );
  --grad-deep: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  --grad-full: linear-gradient(
    135deg,
    var(--purple-deep) 0%,
    var(--purple-mid) 50%,
    var(--purple-light) 100%
  );
  --grad-navy-purple: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--purple-dark) 100%
  );
  --grad-subtle: linear-gradient(
    135deg,
    rgba(125, 60, 152, 0.08),
    rgba(155, 89, 182, 0.04)
  );

  --font-display: "Roboto", sans-serif;
  --font-body: "Roboto", sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 12px 48px rgba(10, 22, 40, 0.12);
}

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Particle Canvas (cursor trail) ── */
#particleCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  border: none;
  background: none;
  font: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

/* ═══════════════════════════════════════════
   BUTTONS – Gradient with creative hovers
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  isolation: isolate;
}

/* Primary: gradient fill, glow hover */
.btn-primary {
  background: var(--grad-purple);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(74, 26, 107, 0.35);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--purple-deep),
    var(--purple-dark),
    var(--purple-mid)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: inherit;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(74, 26, 107, 0.5),
    0 0 60px rgba(125, 60, 152, 0.2);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary svg {
  transition: transform 0.3s ease;
}
.btn-primary:hover svg {
  transform: translateX(4px);
}

/* Outline: border with slide-fill hover */
.btn-outline {
  border: 2px solid rgba(74, 26, 107, 0.4);
  color: var(--primary);
  background: transparent;
}
.btn-outline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--grad-purple);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: inherit;
}
.btn-outline:hover {
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 26, 107, 0.35);
}
.btn-outline:hover::before {
  width: 100%;
}

/* Navy button variant */
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(16, 23, 41, 0.3);
}
.btn-navy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-purple);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: inherit;
}
.btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74, 26, 107, 0.4);
}
.btn-navy:hover::before {
  opacity: 1;
}

/* Sector button – dark purple accent */
.btn-sector {
  background: var(--navy);
  color: var(--white);
  padding: 12px 28px;
  box-shadow: 0 4px 16px rgba(16, 23, 41, 0.2);
}
.btn-sector::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-deep);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: inherit;
}
.btn-sector:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 26, 107, 0.35);
}
.btn-sector:hover::before {
  opacity: 1;
}
.btn-sector svg {
  transition: transform 0.3s ease;
}
.btn-sector:hover svg {
  transform: translateX(4px);
}

/* ── Section shared ── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header--light .section-title {
  color: var(--white);
}
.section-header--light .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--primary);
  background-clip: unset;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--dark-text);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--body-text);
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   LOADING SCREEN (kept from original)
   ═══════════════════════════════════════════ */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
.loading-screen.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.molecule-loader {
  width: 140px;
  height: 140px;
  margin: 0 auto 32px;
  animation: moleculeSpin 8s linear infinite;
}
.molecule-svg {
  width: 100%;
  height: 100%;
}

.bond {
  stroke: var(--primary);
  stroke-width: 2;
  opacity: 0;
  animation: bondDraw 2s ease forwards;
}
.bond-1 {
  animation-delay: 0.1s;
}
.bond-2 {
  animation-delay: 0.2s;
}
.bond-3 {
  animation-delay: 0.3s;
}
.bond-4 {
  animation-delay: 0.4s;
}
.bond-5 {
  animation-delay: 0.5s;
}
.bond-6 {
  animation-delay: 0.6s;
}
@keyframes bondDraw {
  0% {
    opacity: 0;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }
  100% {
    opacity: 0.6;
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
  }
}

.atom {
  fill: var(--primary);
  opacity: 0;
  animation: atomPop 0.5s ease forwards;
}
.atom-center {
  animation-delay: 0.3s;
  fill: var(--purple-light);
}
.atom-left {
  animation-delay: 0.5s;
}
.atom-right {
  animation-delay: 0.6s;
}
.atom-top {
  animation-delay: 0.7s;
}
.atom-bl {
  animation-delay: 0.8s;
}
.atom-br {
  animation-delay: 0.9s;
}
@keyframes atomPop {
  0% {
    opacity: 0;
    r: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.molecule-label {
  fill: var(--primary);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-anchor: middle;
  opacity: 0;
  animation: fadeUp 0.5s ease 1.2s forwards;
}
@keyframes moleculeSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-bar-track {
  width: 200px;
  height: 3px;
  background: rgba(155, 89, 182, 0.12);
  border-radius: 3px;
  margin: 0 auto 16px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--purple-light));
  border-radius: 3px;
  transition: width 0.1s linear;
}
.loader-text {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  font-family: var(--font-display);
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeUp 0.5s ease 1s forwards;
}
.dot-animate {
  display: inline-block;
  animation: dots 1.5s steps(4) infinite;
  width: 1.5em;
  text-align: left;
  overflow: hidden;
  vertical-align: bottom;
}
@keyframes dots {
  0% {
    width: 0;
  }
  100% {
    width: 1.5em;
  }
}

.loader-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.06;
  animation: particleFloat 6s ease-in-out infinite;
}
.p1 {
  width: 6px;
  height: 6px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}
.p2 {
  width: 10px;
  height: 10px;
  top: 70%;
  left: 80%;
  animation-delay: 1s;
}
.p3 {
  width: 4px;
  height: 4px;
  top: 30%;
  left: 70%;
  animation-delay: 2s;
}
.p4 {
  width: 8px;
  height: 8px;
  top: 80%;
  left: 20%;
  animation-delay: 0.5s;
}
.p5 {
  width: 5px;
  height: 5px;
  top: 50%;
  left: 50%;
  animation-delay: 3s;
}
.p6 {
  width: 12px;
  height: 12px;
  top: 20%;
  left: 85%;
  animation-delay: 1.5s;
}
.p7 {
  width: 7px;
  height: 7px;
  top: 60%;
  left: 35%;
  animation-delay: 2.5s;
}
.p8 {
  width: 3px;
  height: 3px;
  top: 40%;
  left: 60%;
  animation-delay: 4s;
}
@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.06;
  }
  50% {
    transform: translateY(-30px) scale(1.3);
    opacity: 0.12;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(11, 17, 32, 0.95);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img {
  height: 44px;
  transition: var(--transition);
}
.site-header.scrolled .logo-img {
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--white);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-purple);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-link:hover {
  color: var(--purple-light);
}
.nav-link:hover::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: max-content;              /* size to the longest item so it fits on one line */
  min-width: 280px;
  max-width: min(380px, 90vw);
  background: var(--secondary-lt);
  border: 1px solid rgba(155, 89, 182, 0.12);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;   /* desktop: panel auto-widens so items sit on one line */
}
.dropdown-link:hover {
  color: var(--white);
  background: rgba(155, 89, 182, 0.1);
  padding-left: 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--navy);
  border: 1px solid rgba(155, 89, 182, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
}
.header-phone svg {
  stroke: var(--purple-light);
}
.header-phone:hover {
  background: var(--purple-dark);
  border-color: var(--purple-mid);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end; /* push statement to the lower portion of the hero */
  justify-content: center;
  background: var(--secondary);
  position: relative;
  overflow: hidden;
  padding: 120px 24px clamp(110px, 18vh, 200px);
}

/* Single static statement, sits lower on the hero */
.hero-statement {
  text-align: center;
  animation: heroStatementIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s backwards;
}
@keyframes heroStatementIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-down indicator — white circle + chevron, gently bouncing */
.hero-scroll {
  position: absolute;
  bottom: clamp(24px, 5vh, 44px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--white);
  text-decoration: none;
  animation: heroScrollIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s backwards;
}
.hero-scroll-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: transparent;
  transition:
    background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: heroScrollBounce 2.4s ease-in-out infinite;
}
.hero-scroll:hover .hero-scroll-circle {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 1);
}
@keyframes heroScrollIn {
  from {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
@keyframes heroScrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-circle {
    animation: none;
  }
}

/* Hero background video — always covers the section, on any aspect ratio
   from narrow mobile portraits through ultra-wide (21:9, 32:9) displays.
   The iframe is sized to max(viewport, 16:9 derived from viewport) on each
   axis, then nudged ~2% larger to mask any internal letterboxing the Vimeo
   player itself may add. */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--secondary); /* fallback while iframe loads */
}
.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(102vw, calc(102vh * 16 / 9));
  height: max(102vh, calc(102vw * 9 / 16));
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 21, 39, 0.55) 0%,
    rgba(14, 21, 39, 0.65) 60%,
    rgba(14, 21, 39, 0.75) 100%
  );
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  top: -10%;
  right: -5%;
  animation: shapeFloat 12s ease-in-out infinite;
}
.shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--purple-light), transparent 70%);
  bottom: -5%;
  left: -5%;
  animation: shapeFloat 10s ease-in-out infinite reverse;
}
.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--primary);
  top: 40%;
  left: 60%;
  animation: shapeFloat 8s ease-in-out infinite 2s;
}
.shape-4 {
  width: 100px;
  height: 100px;
  background: var(--purple-light);
  top: 20%;
  left: 15%;
  animation: shapeFloat 7s ease-in-out infinite 1s;
}
.shape-ring {
  width: 300px;
  height: 300px;
  border: 1.5px solid var(--primary);
  top: 30%;
  right: 10%;
  opacity: 0.04;
  animation: shapeFloat 14s ease-in-out infinite;
}
@keyframes shapeFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -25px) scale(1.05);
  }
  66% {
    transform: translate(-15px, 15px) scale(0.95);
  }
}

.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(155, 89, 182, 0.12);
  animation: bubbleRise 8s ease-in-out infinite;
}
.b1 {
  width: 16px;
  height: 16px;
  bottom: 10%;
  left: 20%;
  animation-delay: 0s;
}
.b2 {
  width: 10px;
  height: 10px;
  bottom: 5%;
  left: 50%;
  animation-delay: 1.5s;
}
.b3 {
  width: 20px;
  height: 20px;
  bottom: 15%;
  left: 70%;
  animation-delay: 3s;
}
.b4 {
  width: 8px;
  height: 8px;
  bottom: 8%;
  left: 35%;
  animation-delay: 4.5s;
}
.b5 {
  width: 14px;
  height: 14px;
  bottom: 12%;
  left: 85%;
  animation-delay: 2s;
}
@keyframes bubbleRise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-80vh) scale(0.5);
    opacity: 0;
  }
}

.hero-container {
  max-width: 900px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-slider {
  position: relative;
  min-height: 320px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  padding: 6px 20px;
  border: 1px solid rgba(125, 60, 152, 0.25);
  border-radius: 50px;
}
.hero-heading {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  margin: 0 auto 20px;
  font-weight: 800;
  width: 100%;
  max-width: 800px;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: var(--transition);
  border: none;
}
.indicator.active {
  background: var(--grad-purple);
  box-shadow: 0 0 12px var(--primary-glow);
  transform: scale(1.2);
}
.indicator:hover {
  background: rgba(74, 26, 107, 0.4);
}

/* ═══════════════════════════════════════════
   ABOUT – white background, purple accents
   ═══════════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about-bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-subtle), transparent 70%);
  top: -20%;
  right: -15%;
  pointer-events: none;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-image-frame {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--light-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.about-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-grey), #e4eaf0);
}
.about-ph-inner {
  opacity: 0.5;
}
.about-ph-icon {
  width: 120px;
  height: 120px;
}
.about-frame-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  opacity: 0.15;
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.about-badge-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
  margin-top: 4px;
}

.about-visual {
  position: relative;
}
.about-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark-text);
  margin-bottom: 20px;
}
.about-text {
  font-size: 1rem;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 28px 0 32px;
}
.about-hl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-text);
}
.hl-line {
  width: 20px;
  height: 2px;
  background: var(--grad-purple);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════
   ADVANTAGES – DARK navy background
   ═══════════════════════════════════════════ */
.advantages {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.advantages::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(155, 89, 182, 0.06),
    transparent 70%
  );
  top: -20%;
  left: -10%;
  border-radius: 50%;
  pointer-events: none;
}
.advantages .section-title {
  color: var(--white);
}
.advantages .section-tag {
  -webkit-text-fill-color: var(--purple-light);
  color: var(--purple-light);
}
.advantages .section-subtitle {
  color: rgba(255, 255, 255, 0.45);
}

.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.adv-divider {
  background: rgba(155, 89, 182, 0.15);
  align-self: stretch;
}

.adv-card {
  text-align: center;
  padding: 0 28px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  transition-delay: var(--delay);
}
.adv-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.adv-card:hover .adv-number {
  color: var(--white);
  background: var(--purple-light);
  border-color: var(--purple-light);
}

.adv-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(155, 89, 182, 0.4);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--purple-light);
  margin: 0 auto 16px;
  transition: all 0.35s ease;
}

.adv-title {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}
.adv-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   PRODUCTS – Light grey background
   ═══════════════════════════════════════════ */
.products {
  padding: 100px 0;
  background: var(--light-grey);
  position: relative;
  overflow: hidden;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
/* Desktop rhythm: top row of 3 (span 2 each = 6), then rows of 2 (span 3 each = 6) */
.products-grid .product-card { grid-column: span 2; }
.products-grid .product-card:nth-child(n + 4) { grid-column: span 3; }

@keyframes product-card-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition:
    background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.product-card.visible {
  opacity: 1;
  animation: product-card-in 0.55s cubic-bezier(0.4, 0, 0.2, 1) var(--delay, 0s) backwards;
}

/* All cards hover dark */
.product-card:hover {
  background: var(--navy);
  border-color: rgba(74, 26, 107, 0.25);
  box-shadow: 0 12px 40px rgba(14, 21, 39, 0.25);
  transform: translateY(-4px);
}

.product-card::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 48px;
  height: 48px;
  background: var(--grad-purple);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  border-radius: 0 var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover::before {
  opacity: 1;
}

.product-card:hover .prod-title {
  color: var(--purple-light);
}
.product-card:hover .prod-desc {
  color: rgba(255, 255, 255, 0.45);
}

.prod-icon-wrap {
  margin-bottom: 24px;
}
.prod-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(155, 89, 182, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.prod-icon {
  width: 52px;
  height: 52px;
}

.icon-line {
  stroke: var(--primary);
  fill: none;
  transition: stroke 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.icon-line-thin {
  stroke: var(--primary);
  fill: none;
  opacity: 0.5;
  transition:
    stroke 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.icon-dot-sm {
  fill: var(--primary);
  transition: fill 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.icon-ring {
  stroke: var(--primary);
  fill: none;
  transition: stroke 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .prod-icon-circle {
  background: rgba(125, 60, 152, 0.08);
  box-shadow: 0 0 24px rgba(125, 60, 152, 0.15);
}
.product-card:hover .icon-line {
  stroke: var(--purple-light);
}
.product-card:hover .icon-line-thin {
  stroke: var(--primary);
  opacity: 0.7;
}
.product-card:hover .icon-dot-sm {
  fill: var(--purple-light);
}
.product-card:hover .icon-ring {
  stroke: var(--purple-light);
}

.prod-title {
  font-size: 1.05rem;
  color: var(--dark-text);
  margin-bottom: 8px;
  line-height: 1.35;
  transition: color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.prod-desc {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
  transition: color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.prod-readmore {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: auto;
}
.prod-readmore svg {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .prod-readmore {
  color: var(--purple-light);
}
.product-card:hover .prod-readmore svg {
  transform: translate(3px, -3px);
}

/* ═══════════════════════════════════════════
   SECTORS – Left nav + sliding content panels
   ═══════════════════════════════════════════ */
.sectors {
  padding: 100px 0;
  background: var(--white);
}
/* Widen the Industries section to use more of the viewport */
.sectors .section-container {
  max-width: 1560px;
}

/* Main layout: nav left, content right */
.sectors-showcase {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  margin-top: 8px;
  background: var(--light-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 720px;
}

/* ── Left nav ── */
.sectors-nav {
  display: flex;
  flex-direction: column;
  background: var(--navy);
  padding: 8px;
  gap: 4px;
  align-self: start;
}
.sectors-nav-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  width: 100%;
}
.sectors-nav-btn:hover {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.04);
}
.sectors-nav-btn.active {
  color: var(--white);
  background: rgba(125, 60, 152, 0.15);
  border-color: rgba(125, 60, 152, 0.3);
}
.sectors-nav-arrow {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease;
}
.sectors-nav-btn.active .sectors-nav-arrow {
  opacity: 1;
  transform: translateX(0);
}
.sectors-nav-btn:hover .sectors-nav-arrow {
  opacity: 0.5;
  transform: translateX(0);
}
/* Visual gap between the top 3 (landscape-friendly) and the rest */
.sectors-nav-separator {
  height: 1px;
  margin: 12px 12px;
  background: rgba(255, 255, 255, 0.08);
}

/* ── Right content panels ── */
.sectors-content {
  position: relative;
  padding: 44px;
  overflow: hidden;
}
.sectors-panel {
  display: none;
  animation: sectorSlideIn 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.sectors-panel.active {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@keyframes sectorSlideIn {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Image area — shows the full image at natural aspect ratio (no cropping) */
.sectors-panel-image {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
}
.sectors-panel-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius);
}
/* Portrait images — constrain height, centre */
.sectors-panel-image--portrait {
  max-height: 360px;
  max-width: 260px;
  float: right;
  margin-left: 32px;
  margin-bottom: 16px;
}
.sectors-panel-image--portrait img {
  height: 360px;
  width: auto;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ── Side panel layout: centered header + image-alongside-content below ── */
/* Applied to panels at index >= 2 — used for portrait-format imagery
   where stacking image-on-top wastes vertical space. */
.sectors-panel--side.active {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
/* Centered top header (heading + intro + badges) */
.sectors-panel--side .sectors-panel-header {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.sectors-panel--side .sectors-panel-header .sectors-panel-intro {
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
  margin-bottom: 18px;
}
.sectors-panel--side .sectors-panel-header .sectors-panel-badges {
  justify-content: center;
  flex-wrap: nowrap;
  margin: 0;
  white-space: nowrap;
}
/* Image + content row below the header */
.sectors-panel-split {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 44px;
  align-items: start;
}
.sectors-panel-split--no-image {
  grid-template-columns: 1fr;
}
.sectors-panel--side .sectors-panel-image {
  width: 100%;
  max-width: 100%;
  max-height: none;
  float: none;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
/* Show the full image at native aspect ratio — no cropping */
.sectors-panel--side .sectors-panel-image img {
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
  object-fit: contain;
  border-radius: var(--radius);
}
.sectors-panel-content {
  min-width: 0;
}
/* Keep 3-column grids two-up inside the narrower content area */
.sectors-panel--side .sectors-cols--3 {
  grid-template-columns: 1fr 1fr;
}

/* Agriculture (sector 3) & Medical Practices (sector 5): push top two columns
   down, span col 3 full-width below */
.sectors-panel[data-sector="3"] .sectors-cols--3,
.sectors-panel[data-sector="5"] .sectors-cols--3 {
  margin-top: 64px;
}
.sectors-panel[data-sector="3"] .sectors-cols--3 > .sectors-col:nth-child(3),
.sectors-panel[data-sector="5"] .sectors-cols--3 > .sectors-col:nth-child(3) {
  grid-column: 1 / -1;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #e2e8f0;
}
.sectors-panel[data-sector="3"] .sectors-cols--3 > .sectors-col:nth-child(3) .sectors-col-note,
.sectors-panel[data-sector="5"] .sectors-cols--3 > .sectors-col:nth-child(3) .sectors-col-note {
  margin-bottom: 22px;
}
.sectors-panel[data-sector="3"] .sectors-cols--3 > .sectors-col:nth-child(3) .sectors-checklist,
.sectors-panel[data-sector="5"] .sectors-cols--3 > .sectors-col:nth-child(3) .sectors-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 36px;
  row-gap: 0;
  margin-top: 4px;
}
.sectors-panel[data-sector="3"] .sectors-cols--3 > .sectors-col:nth-child(3) .sectors-checklist li span {
  white-space: nowrap;
}

/* ROI (sector 7): comparison-card layout — closes the Industries section with
   a clear "before vs after" business case framing. Two equal cards sit side
   by side, the left one tinted with a muted warning accent, the right with
   the brand purple. */
.sectors-panel[data-sector="7"] .sectors-cols--2 {
  gap: 28px;
  margin-top: 12px;
  align-items: stretch;
}
.sectors-panel[data-sector="7"] .sectors-col {
  position: relative;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 28px 28px 26px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.sectors-panel[data-sector="7"] .sectors-col:hover {
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}
.sectors-panel[data-sector="7"] .sectors-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: var(--radius) 0 0 var(--radius);
}
.sectors-panel[data-sector="7"] .sectors-col:first-child {
  background: linear-gradient(180deg, rgba(180, 60, 60, 0.04), rgba(180, 60, 60, 0.01) 60%, transparent);
}
.sectors-panel[data-sector="7"] .sectors-col:first-child::before {
  background: rgba(180, 60, 60, 0.45);
}
.sectors-panel[data-sector="7"] .sectors-col:last-child {
  background: linear-gradient(180deg, rgba(125, 60, 152, 0.05), rgba(125, 60, 152, 0.01) 60%, transparent);
}
.sectors-panel[data-sector="7"] .sectors-col:last-child::before {
  background: var(--purple-mid);
}
.sectors-panel[data-sector="7"] .sectors-col-title {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.sectors-panel[data-sector="7"] .sectors-col-note {
  margin-bottom: 18px;
  font-style: italic;
  opacity: 0.85;
}
.sectors-panel[data-sector="7"] .sectors-checklist li {
  padding: 7px 0;
  font-size: 0.9rem;
}

/* Body text */
.sectors-panel-body {
  flex: 1;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.sectors-panel-body--full {
  max-width: 100%;
}
/* Top-panel heading, intro and badges are centered (HHT, Education) */
.sectors-panel-body .sectors-panel-heading,
.sectors-panel-body .sectors-panel-intro {
  text-align: center;
}
.sectors-panel-body .sectors-panel-intro {
  margin-left: auto;
  margin-right: auto;
}
.sectors-panel-body .sectors-panel-badges {
  justify-content: center;
}
/* Top-group panels (Hand Hygiene Training & Education): align columns with
   image width, widen gap, give long list lines enough room for one line. */
.sectors-panel[data-sector="0"] .sectors-panel-body,
.sectors-panel[data-sector="1"] .sectors-panel-body {
  max-width: 1060px;
}
.sectors-panel[data-sector="0"] .sectors-panel-image,
.sectors-panel[data-sector="1"] .sectors-panel-image {
  max-width: 1000px;
}
.sectors-panel[data-sector="0"] .sectors-cols,
.sectors-panel[data-sector="1"] .sectors-cols {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  gap: 60px;
}
/* Hand Hygiene Training & Education: extra breathing room between badges
   and the cols */
.sectors-panel[data-sector="0"] .sectors-panel-badges,
.sectors-panel[data-sector="1"] .sectors-panel-badges {
  margin-bottom: 56px;
}
/* Healthcare (index 2) & UV Training Kit (index 6): stack the two column
   sections vertically rather than side-by-side, with extra space between
   the stacked sections. */
.sectors-panel[data-sector="2"] .sectors-cols--2,
.sectors-panel[data-sector="6"] .sectors-cols--2 {
  grid-template-columns: 1fr;
  gap: 56px;
}
/* Healthcare, Agriculture, Food & Manufacturing, Medical Practices, UV Training
   Kit, ROI: add breathing room from the menu on the left and match the
   image→content gap to it, then vertically centre the content beside the image
   so it fills more of the section. */
.sectors-panel[data-sector="2"] .sectors-panel-split,
.sectors-panel[data-sector="3"] .sectors-panel-split,
.sectors-panel[data-sector="4"] .sectors-panel-split,
.sectors-panel[data-sector="5"] .sectors-panel-split,
.sectors-panel[data-sector="6"] .sectors-panel-split,
.sectors-panel[data-sector="7"] .sectors-panel-split {
  padding-left: 28px;
  gap: 72px;
  align-items: center;
}
.sectors-panel-heading {
  font-size: 1.5rem;
  color: var(--dark-text);
  margin-bottom: 12px;
}
.sectors-panel-intro {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 720px;
}

/* Badges */
.sectors-panel-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.sectors-badge {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--purple-mid);
  letter-spacing: 0.3px;
  padding: 4px 12px;
  background: rgba(125, 60, 152, 0.08);
  border-radius: 50px;
}
.sectors-badge-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--body-text);
  opacity: 0.2;
}

/* Columns */
.sectors-cols {
  display: grid;
  gap: 36px;
  align-items: start;
}
.sectors-cols--2 {
  grid-template-columns: 1fr 1fr;
}
.sectors-cols--3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.sectors-cols--row2 {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #e2e8f0;
}
.sectors-col-title {
  font-size: 0.95rem;
  color: var(--dark-text);
  margin-bottom: 12px;
}
.sectors-col-title--spaced {
  margin-top: 24px;
}
.sectors-col-note {
  font-size: 0.85rem;
  color: var(--body-text);
  margin-bottom: 10px;
  font-style: italic;
}

/* Checklists */
.sectors-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sectors-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  font-size: 0.85rem;
  color: var(--dark-text);
  line-height: 1.55;
}
.sectors-panel[data-sector="0"] .sectors-checklist li span {
  white-space: nowrap;
}
.sectors-tick {
  color: var(--purple-mid);
  flex-shrink: 0;
  margin-top: 2px;
}
.sectors-cross {
  color: rgba(180, 60, 60, 0.55);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ROI data panel */
.sectors-roi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.sectors-roi-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
}
.sectors-roi-card:hover {
  border-color: rgba(125, 60, 152, 0.25);
  box-shadow: 0 4px 16px rgba(125, 60, 152, 0.08);
}
.sectors-roi-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--purple-mid);
  margin-bottom: 4px;
}
.sectors-roi-label {
  font-size: 0.75rem;
  color: var(--body-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   IMPACT – Clean vs Contaminated + Quality Circle + ROI
   Deep purple gradient background
   ═══════════════════════════════════════════ */
.impact {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

/* Full-width visual break */
.impact-visual-break {
  position: relative;
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}
.impact-visual-break img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: brightness(0.85);
}
.visual-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 21, 39, 0.3) 0%,
    rgba(14, 21, 39, 0.7) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.vb-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--purple-pale);
  margin-bottom: 12px;
}
.vb-heading {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--white);
}

/* Impact content area */
.impact .section-container {
  padding-top: 80px;
  padding-bottom: 100px;
}
.impact .section-title {
  color: var(--white);
}
.impact .section-tag {
  background: none;
  -webkit-text-fill-color: var(--purple-light);
  color: var(--purple-light);
}
.impact .section-subtitle {
  color: rgba(255, 255, 255, 0.45);
}

.impact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Quality steps */
.quality-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: stretch;
}
.q-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateX(-16px);
}
.q-step.visible {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    background 0.35s ease,
    border-color 0.35s ease;
  transition-delay: var(--delay);
}
.q-step:hover {
  background: rgba(155, 89, 182, 0.06);
  border-color: rgba(155, 89, 182, 0.15);
}
.q-step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(155, 89, 182, 0.4);
  color: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  transition: all 0.35s ease;
}
.q-step:hover .q-step-number {
  color: var(--white);
  background: var(--purple-light);
  border-color: var(--purple-light);
}
.q-step-title {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.q-step-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

/* ROI panel */
.roi-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(8px);
}
.roi-header {
  margin-bottom: 28px;
}
.roi-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--purple-pale);
  margin-bottom: 8px;
}
.roi-title {
  font-size: 1.4rem;
  color: var(--white);
}

.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.roi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(12px);
}
.roi-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  transition-delay: var(--delay);
}
.roi-card:hover {
  border-color: rgba(74, 26, 107, 0.2);
  box-shadow: 0 4px 20px rgba(74, 26, 107, 0.08);
}
.roi-stat {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--purple-light);
  margin-bottom: 4px;
}
.roi-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.roi-footer {
  text-align: center;
}
.roi-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.badge-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.badge-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

/* ═══════════════════════════════════════════
   STATS – Gradient purple bar
   ═══════════════════════════════════════════ */
.stats {
  background: var(--grad-deep);
  padding: 64px 24px;
  position: relative;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
}
.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  transition-delay: var(--delay);
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════
   VIDEO SECTION – Featured Vimeo player
   ═══════════════════════════════════════════ */
.video-section {
  position: relative;
  padding: 110px 0 120px;
  background:
    radial-gradient(
      1200px 600px at 50% -10%,
      rgba(125, 60, 152, 0.07),
      transparent 60%
    ),
    #e8eaef;
  overflow: hidden;
}

.video-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.video-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.vblur-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -120px;
  background: rgba(155, 89, 182, 0.18);
}
.vblur-2 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  right: -80px;
  background: rgba(74, 26, 107, 0.14);
}
.video-section .section-container {
  position: relative;
  z-index: 1;
}

.video-frame {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.video-frame.visible {
  opacity: 1;
  transform: translateY(0);
}

.video-frame-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--secondary);
  box-shadow:
    0 30px 80px -30px rgba(74, 26, 107, 0.45),
    0 12px 40px -12px rgba(10, 22, 40, 0.25);
}
.video-frame-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    140deg,
    rgba(155, 89, 182, 0.55),
    rgba(255, 255, 255, 0) 40%,
    rgba(155, 89, 182, 0.35)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.video-aspect {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-aspect iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Play / Pause button — solid purple so it's clearly visible
   regardless of what's behind it on the video frame */
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-purple);
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
  z-index: 5;
  box-shadow:
    0 18px 40px -10px rgba(74, 26, 107, 0.55),
    0 0 0 8px rgba(155, 89, 182, 0.18);
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s ease,
    opacity 0.35s ease,
    box-shadow 0.35s ease;
}
.video-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow:
    0 22px 50px -10px rgba(74, 26, 107, 0.7),
    0 0 0 12px rgba(155, 89, 182, 0.25);
}
.video-play:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 6px;
}
.video-play-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(155, 89, 182, 0.6);
  animation: video-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes video-pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}
.video-play-icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-icon svg {
  position: absolute;
  width: 30px;
  height: 30px;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.video-play .icon-play {
  opacity: 1;
  transform: translateX(2px) scale(1);
}
.video-play .icon-pause {
  opacity: 0;
  transform: scale(0.7);
}
.video-play.playing .icon-play {
  opacity: 0;
  transform: translateX(2px) scale(0.7);
}
.video-play.playing .icon-pause {
  opacity: 1;
  transform: scale(1);
}
.video-play.playing .video-play-ring {
  animation: none;
  opacity: 0;
}
/* When playing, hide the button so the video has full focus —
   reappear as a pause control on hover/focus */
.video-play.playing {
  opacity: 0;
  pointer-events: none;
}
.video-frame-inner:hover .video-play.playing,
.video-play.playing:focus-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .video-section {
    padding: 80px 0 90px;
  }
  .video-play {
    width: 76px;
    height: 76px;
  }
  .video-play-icon,
  .video-play-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* ═══════════════════════════════════════════
   TESTIMONIALS – White background
   ═══════════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.testi-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.testi-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.tblur-1 {
  width: 350px;
  height: 350px;
  background: rgba(155, 89, 182, 0.05);
  top: -15%;
  left: 10%;
  animation: shapeFloat 12s ease-in-out infinite;
}
.tblur-2 {
  width: 250px;
  height: 250px;
  background: rgba(74, 26, 107, 0.04);
  bottom: -10%;
  right: 15%;
  animation: shapeFloat 10s ease-in-out infinite 2s;
}
.tblur-3 {
  width: 200px;
  height: 200px;
  background: rgba(155, 89, 182, 0.03);
  top: 40%;
  right: -5%;
  animation: shapeFloat 8s ease-in-out infinite 4s;
}
.testi-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(155, 89, 182, 0.04);
}
.tring-1 {
  width: 300px;
  height: 300px;
  top: 20%;
  left: -5%;
  animation: shapeFloat 14s ease-in-out infinite;
}
.tring-2 {
  width: 180px;
  height: 180px;
  bottom: 10%;
  right: 10%;
  animation: shapeFloat 11s ease-in-out infinite 3s;
}

/* Override for white bg */
.testimonials .section-title {
  color: var(--dark-text);
}
.testimonials .section-subtitle {
  color: var(--body-text);
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--light-grey);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  transition-delay: var(--delay);
}
.testimonial-card:hover {
  border-color: rgba(155, 89, 182, 0.2);
  box-shadow: 0 8px 32px rgba(155, 89, 182, 0.08);
}

.testi-quote-mark {
  margin-bottom: 16px;
  color: var(--primary);
  opacity: 0.25;
}
.testimonial-quote {
  font-size: 1.05rem;
  color: var(--dark-text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.author-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dark-text);
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════
   BLOG – Light grey background
   ═══════════════════════════════════════════ */
.blog {
  padding: 100px 0;
  background: var(--light-grey);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e8ecf0;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
}
.blog-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  transition-delay: var(--delay);
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(155, 89, 182, 0.15);
}
.blog-card:hover .blog-read {
  color: var(--purple-light);
}
.blog-card:hover .blog-read svg {
  transform: translateX(4px);
}
.blog-card:hover .blog-title {
  color: var(--primary-dark);
}

.blog-image {
  height: 200px;
  overflow: hidden;
  background: var(--light-grey);
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-image-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--body-text);
  opacity: 0.3;
  background: linear-gradient(135deg, var(--light-grey), #e4eaf0);
}

.blog-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--body-text);
  margin-bottom: 12px;
}
.meta-dot {
  width: 3px;
  height: 3px;
  background: var(--body-text);
  border-radius: 50%;
}
.blog-title {
  font-size: 1.05rem;
  color: var(--dark-text);
  line-height: 1.4;
  margin-bottom: 16px;
  flex: 1;
  transition: color 0.3s ease;
}

.blog-read {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark-text);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.blog-read svg {
  transition: transform 0.3s ease;
}

/* ═══════════════════════════════════════════
   CTA – Dark-to-light purple gradient
   ═══════════════════════════════════════════ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    #4a1a6b 50%,
    var(--secondary) 100%
  );
  position: relative;
  overflow: hidden;
}
.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.cs1 {
  width: 400px;
  height: 400px;
  background: var(--purple-mid);
  top: -30%;
  right: -10%;
}
.cs2 {
  width: 250px;
  height: 250px;
  border: 2px solid var(--purple-light);
  bottom: -20%;
  left: -5%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}
.cta-section .btn-primary::before {
  background: var(--grad-deep);
}
.cta-section .btn-primary:hover {
  color: var(--white);
  box-shadow: 0 8px 30px rgba(74, 26, 107, 0.35);
}

.cta-section .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.cta-section .btn-outline::before {
  background: rgba(255, 255, 255, 0.12);
}
.cta-section .btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  box-shadow: none;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  background: var(--secondary);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-molecules {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.molecule {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(155, 89, 182, 0.05);
}
.m1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 5%;
}
.m2 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 8%;
}
.m3 {
  width: 80px;
  height: 80px;
  top: 50%;
  left: 45%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 0.8fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--grad-purple);
  color: var(--white);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-list {
  list-style: none;
}
.footer-list li {
  margin-bottom: 10px;
}
.footer-list a,
.footer-list span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}
.footer-list a:hover {
  color: var(--purple-light);
  padding-left: 4px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contact-list svg {
  flex-shrink: 0;
  stroke: var(--primary);
  margin-top: 3px;
}

.cert-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 24px;
  border: 1px solid rgba(155, 89, 182, 0.15);
  border-radius: var(--radius);
  background: rgba(155, 89, 182, 0.02);
}
.cert-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cert-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.25);
}
.footer-bottom a {
  color: var(--primary);
  transition: var(--transition);
}
.footer-bottom a:hover {
  color: var(--purple-light);
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */
.adv-card,
.product-card,
.stat-item,
.testimonial-card,
.blog-card,
.q-step,
.roi-card {
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual {
    max-width: 400px;
    margin: 0 auto;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid .product-card,
  .products-grid .product-card:nth-child(n + 4) { grid-column: auto; }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .sector-columns {
    grid-template-columns: 1fr;
  }
  .sectors-showcase {
    grid-template-columns: 220px 1fr;
  }
  .sectors-cols--3 {
    grid-template-columns: 1fr 1fr;
  }
  /* Side panels: smaller image column at tablet width */
  .sectors-panel-split {
    grid-template-columns: 340px 1fr;
    gap: 32px;
  }
  .sectors-panel--side .sectors-cols--2,
  .sectors-panel--side .sectors-cols--3 {
    grid-template-columns: 1fr;
  }
  .sectors-panel--side .sectors-panel-header .sectors-panel-badges {
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
  }
  .impact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--secondary);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-link {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 1rem;
  }
  .nav-link::after {
    display: none;
  }
  .nav-dropdown {
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    width: auto;
    min-width: 0;
    max-width: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    display: none;
  }
  .nav-dropdown.open .dropdown-menu {
    display: block;
  }
  /* Kill the desktop centering transform on mobile — tapping fires :hover, and
     translateX(-50%) would drag the static full-width menu off to the left. */
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown.open .dropdown-menu {
    transform: none;
  }
  /* Mobile: long items wrap inside the panel instead of running off-screen */
  .nav-dropdown .dropdown-link {
    white-space: normal;
  }
  .hamburger {
    display: flex;
  }
  .header-phone span {
    display: none;
  }

  .hero {
    min-height: 85vh;
    padding: 100px 20px 60px;
  }
  .hero-slider {
    min-height: 280px;
  }
  .hero-heading {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .advantages {
    padding: 60px 0;
  }
  .adv-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .adv-divider {
    display: none;
  }

  .products {
    padding: 60px 0;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .products-grid .product-card,
  .products-grid .product-card:nth-child(n + 4) { grid-column: auto; }

  .sectors-showcase {
    grid-template-columns: 1fr;
  }
  .sectors-nav {
    flex-direction: row;
    overflow-x: auto;
    padding: 8px;
    gap: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .sectors-nav-btn {
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }
  .sectors-nav-arrow {
    display: none;
  }
  .sectors-content {
    padding: 28px 20px;
  }
  .sectors-panel-image--portrait {
    float: none;
    margin: 0 auto 20px;
    max-width: 200px;
  }
  .sectors-panel-image--portrait img {
    height: 280px;
  }
  /* Collapse side layout to a single column on mobile */
  .sectors-panel-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sectors-panel--side .sectors-panel-image {
    max-width: 320px;
    margin: 0 auto;
  }
  .sectors-panel--side .sectors-panel-header {
    max-width: 100%;
  }
  .sectors-panel--side .sectors-cols--3 {
    grid-template-columns: 1fr;
  }
  .sectors-nav-separator {
    display: none;
  }
  .sectors-cols--2,
  .sectors-cols--3 {
    grid-template-columns: 1fr;
  }
  .sectors-roi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .blog {
    padding: 60px 0;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .impact-layout {
    grid-template-columns: 1fr;
  }
  .roi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Hide particle canvas on mobile for performance */
  #particleCanvas {
    display: none;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 1.8rem;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .roi-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   Amy additions — hero image, Free Risk Assessment, founder quote
   ═══════════════════════════════════════════ */

/* Hero background image (replaces the private Vimeo bg) */
.hero-video .hero-bg-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.2rem; }
.btn-ghost-light { background: transparent; border: 1.5px solid rgba(255,255,255,0.55); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* Founder quote */
.about-founder { margin: 1.6rem 0 1.8rem; padding: 1.1rem 0 1.1rem 1.5rem; border-left: 3px solid var(--primary); }
.about-founder p { font-style: italic; color: var(--dark-text); font-size: 1.05rem; line-height: 1.6; margin-bottom: 0.8rem; }
.about-founder cite { font-style: normal; display: flex; flex-direction: column; }
.about-founder cite strong { color: var(--primary); font-weight: 700; }
.about-founder cite { color: var(--body-text); font-size: 0.9rem; }

/* Free Risk Assessment */
.risk { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--light-grey); position: relative; overflow: hidden; }
.risk-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.risk-heading { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3rem); line-height: 1.1; color: var(--dark-text); font-weight: 700; margin: 0.8rem 0 1rem; }
.risk-intro { color: var(--body-text); font-size: 1.08rem; line-height: 1.7; max-width: 40rem; }
.risk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; margin: 1.8rem 0; }
.risk-ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.risk-ticks li { position: relative; padding-left: 1.9rem; color: var(--dark-text); font-weight: 500; }
.risk-ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 1.35rem; height: 1.35rem; display: grid; place-items: center; background: var(--grad-purple); color: #fff; border-radius: 50%; font-size: 0.75rem; font-weight: 700; }
.risk-for-label { display: block; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); font-weight: 700; margin-bottom: 0.6rem; }
.risk-for-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.risk-for-tags span { background: #fff; border: 1px solid rgba(125,60,152,0.2); color: var(--dark-text); border-radius: 100px; padding: 0.35rem 0.8rem; font-size: 0.85rem; font-weight: 500; }
.risk-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.5rem; }
.risk-visual { position: relative; }
.risk-visual img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }
.risk-visual-badge { position: absolute; bottom: -1.2rem; left: -1.2rem; background: var(--grad-purple); color: #fff; padding: 1.1rem 1.4rem; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
.risk-visual-stat { font-size: 1.9rem; font-weight: 800; line-height: 1; }
.risk-visual-label { font-size: 0.78rem; opacity: 0.9; margin-top: 0.3rem; }

@media (max-width: 900px) {
  .risk-layout { grid-template-columns: 1fr; }
  .risk-visual { order: -1; }
  .risk-visual-badge { left: 1rem; }
}
@media (max-width: 560px) {
  .risk-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Video facade poster */
.video-aspect { position: relative; }
.video-aspect .video-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-aspect iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Hero video fades in over the image fallback once it actually plays */
.hero-video .hero-bg-video {
  position: absolute; top: 50%; left: 50%;
  width: max(102vw, calc(102vh * 16 / 9));
  height: max(102vh, calc(102vw * 9 / 16));
  transform: translate(-50%, -50%);
  border: 0; pointer-events: none;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-video .hero-bg-video.is-ready { opacity: 1; }

/* ═══════════════════════════════════════════
   Amy additions — content pages (product/sector/blog/about/contact)
   ═══════════════════════════════════════════ */
.section-pad { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.accent-text { color: var(--purple-light); }

/* Inner page hero */
.page-hero { position: relative; padding: clamp(8rem, 12vw, 10rem) 0 clamp(3rem, 5vw, 4rem); background: var(--secondary); color: #fff; overflow: hidden; }
.page-hero-glow { position: absolute; top: -30%; right: -10%; width: 60%; height: 120%; background: radial-gradient(circle, rgba(155,89,182,0.28), transparent 60%); pointer-events: none; }
.page-hero .section-container { position: relative; z-index: 1; }
.page-hero .section-tag { color: var(--purple-pale); }
.page-hero-title { color: #fff; font-weight: 700; font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.4rem); line-height: 1.1; letter-spacing: -0.02em; margin: 0.6rem 0; text-wrap: balance; }
.page-hero-intro { color: rgba(255,255,255,0.75); font-size: 1.12rem; max-width: 44rem; margin-top: 1rem; }
.crumbs { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1.1rem; }
.crumbs a { color: var(--purple-pale); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumb-sep { margin: 0 0.5rem; opacity: 0.5; }

/* Detail layout (product / sector / about) */
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.detail-lead { font-size: 1.15rem; line-height: 1.75; color: var(--dark-text); }
.detail-main p { color: var(--body-text); line-height: 1.7; }
.detail-h2 { font-size: 1.5rem; font-weight: 700; color: var(--dark-text); margin: 2.2rem 0 1rem; }
.detail-ticks { list-style: none; display: grid; gap: 0.7rem; margin: 0; padding: 0; }
.detail-ticks-2col { grid-template-columns: 1fr 1fr; gap: 0.7rem 2rem; }
.detail-ticks li { position: relative; padding-left: 2rem; color: var(--dark-text); line-height: 1.5; }
.detail-ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 1.4rem; height: 1.4rem; display: grid; place-items: center; background: var(--grad-purple); color: #fff; border-radius: 50%; font-size: 0.75rem; font-weight: 700; }
.detail-ticks.is-cross li::before { content: "✕"; background: #e2e6eb; color: #8a97a5; }
.detail-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.8rem; }
.detail-badges span { background: var(--light-grey); border: 1px solid rgba(125,60,152,0.18); color: var(--primary); border-radius: 100px; padding: 0.35rem 0.85rem; font-size: 0.82rem; font-weight: 600; }
.detail-side { position: sticky; top: 100px; display: grid; gap: 1.2rem; }
.detail-card { background: var(--light-grey); border-radius: var(--radius-lg); padding: 1.8rem; }
.detail-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark-text); margin-bottom: 0.6rem; }
.detail-card p { color: var(--body-text); font-size: 0.95rem; margin-bottom: 1.2rem; }
.btn-block { display: flex; width: 100%; justify-content: center; margin-top: 0.6rem; }

/* Card grids (index pages) */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.link-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #e9edf1; border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.link-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.link-card-tag { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); font-weight: 700; margin-bottom: 0.5rem; }
.link-card-title { font-size: 1.3rem; font-weight: 700; color: var(--dark-text); margin-bottom: 0.5rem; }
.link-card-desc { color: var(--body-text); font-size: 0.96rem; flex: 1; }
.link-card-more { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; color: var(--primary); font-weight: 700; font-size: 0.9rem; }
.link-card:hover .link-card-more svg { transform: translateX(3px); }
.link-card-more svg { transition: transform var(--transition); }

/* Blog cards */
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #e9edf1; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-card-img { aspect-ratio: 16/10; overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card-meta { font-size: 0.8rem; color: var(--primary); font-weight: 600; }
.post-card-title { font-size: 1.2rem; font-weight: 700; color: var(--dark-text); margin: 0.5rem 0; line-height: 1.3; }
.post-card-excerpt { color: var(--body-text); font-size: 0.93rem; flex: 1; }

/* Article */
.article-body { max-width: 48rem; margin: 0 auto; }
.article-cover { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; }
.article-cover img { width: 100%; display: block; }
.article-prose { color: var(--body-text); line-height: 1.8; font-size: 1.08rem; }
.article-prose h2 { color: var(--dark-text); font-size: 1.5rem; font-weight: 700; margin: 2rem 0 0.8rem; }
.article-prose p { margin-bottom: 1.2rem; }
.article-prose a { color: var(--primary); font-weight: 600; }
.article-foot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid #e9edf1; }

/* Sector page */
.sector-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; margin-bottom: 2.5rem; }
.sector-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.sector-blocks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.sector-block { background: var(--light-grey); border-radius: var(--radius-lg); padding: 1.6rem; }
.sector-block-title { font-size: 1.15rem; font-weight: 700; color: var(--dark-text); margin-bottom: 0.5rem; }
.sector-block-note { color: var(--body-text); font-size: 0.9rem; font-style: italic; margin-bottom: 0.8rem; }
.sector-cta { text-align: center; margin-top: 3rem; padding: 2.5rem; background: var(--grad-purple); border-radius: var(--radius-lg); color: #fff; }
.sector-cta .detail-h2 { color: #fff; margin-top: 0; }
.sector-cta p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.sector-cta .btn-primary { background: #fff; color: var(--primary); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-list { list-style: none; display: grid; gap: 1.1rem; margin-top: 1.2rem; }
.contact-list li { display: flex; flex-direction: column; }
.contact-list-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); font-weight: 700; }
.contact-list a, .contact-list span { color: var(--dark-text); }
.oxy-form { background: #fff; border: 1px solid #e9edf1; border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: block; margin-bottom: 1rem; }
.form-field > span { display: block; font-weight: 600; font-size: 0.9rem; color: var(--dark-text); margin-bottom: 0.4rem; }
.form-field > span em { color: var(--body-text); font-style: normal; font-weight: 400; }
.form-field input, .form-field select, .form-field textarea { width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--dark-text); background: var(--light-grey); border: 2px solid transparent; border-radius: 10px; padding: 0.8rem 1rem; transition: border-color var(--transition); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--primary); background: #fff; }
.form-field textarea { resize: vertical; }
.form-field.err input, .form-field.err select, .form-field.err textarea { border-color: #e23b3b; }
.oxy-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-status { margin-top: 1rem; font-weight: 600; text-align: center; min-height: 1.4em; }
.form-status.ok { color: #1c8a4d; }
.form-status.bad { color: #d33; }

/* About stat grid */
.about-statgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-statgrid-item { text-align: center; }
.about-statgrid-item span { display: block; font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.about-statgrid-item small { color: var(--body-text); font-size: 0.85rem; }

@media (max-width: 900px) {
  .detail-grid, .sector-top, .contact-grid { grid-template-columns: 1fr; }
  .detail-side { position: static; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-blocks { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .card-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .detail-ticks-2col { grid-template-columns: 1fr; }
}

/* ── Legal / policy pages ── */
.legal-content { max-width: 820px; margin: 0 auto; color: var(--body-text); line-height: 1.75; }
.legal-content .legal-updated { font-size: 0.85rem; color: var(--purple-light); margin-bottom: 2rem; letter-spacing: 0.02em; }
.legal-content h2 { color: var(--dark-text); font-size: 1.35rem; font-weight: 600; margin: 2.4rem 0 0.9rem; }
.legal-content p { margin: 0 0 1.1rem; }
.legal-content ul { margin: 0 0 1.4rem; padding-left: 1.2rem; }
.legal-content li { margin-bottom: 0.6rem; }
.legal-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--purple-mid); }
.legal-content strong { color: var(--dark-text); }

/* ── Cookie consent banner ── */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1200;
  background: var(--secondary); color: var(--white);
  border: 1px solid rgba(155, 89, 182, 0.35); border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  opacity: 0; transform: translateY(16px); transition: opacity var(--transition), transform var(--transition);
}
.cookie-banner.is-in { opacity: 1; transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1120px; margin: 0 auto; padding: 18px 22px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: space-between;
}
.cookie-banner-text { margin: 0; font-size: 0.9rem; line-height: 1.55; color: rgba(255, 255, 255, 0.82); flex: 1 1 340px; }
.cookie-banner-text a { color: var(--purple-pale); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
@media (max-width: 560px) {
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; }
}

/* Footer legal link row */
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.6); font-size: 0.85rem; text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: var(--purple-pale); }
