﻿/* ==========================================================================
   Homepage CSS - Federal India Trading Company
   Extracted from inline styles for cacheability
   ========================================================================== */

/* Accessibility utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 1rem 1.5rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: #fff;
  color: #0a0a0a;
  font-weight: 700;
  z-index: 99999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Utility classes */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.section--gray { background: var(--gray-50); }

/* Hero compliance row */
.hero__compliance-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.hero__compliance-row .hero__eyebrow { margin-bottom: 0; }

/* Hero media video slot — aspect-ratio handled in main block */

:root {
  /* Premium neutral palette — slightly warm undertone */
  --gray-950: #09090b;
  --gray-900: #18181b;
  --gray-800: #27272a;
  --gray-700: #3f3f46;
  --gray-600: #52525b;
  --gray-500: #71717a;
  --gray-400: #a1a1aa;
  --gray-300: #d4d4d8;
  --gray-200: #e4e4e7;
  --gray-100: #f4f4f5;
  --gray-50: #fafafa;
  --white: #ffffff;

  /* Luxury gold accent — deeper and warmer */
  --accent-800: #7c2d12;
  --accent-700: #9a3412;
  --accent-600: #c2410c;
  --accent-500: #ea580c;
  --accent-400: #fb923c;
  --accent-300: #fdba74;
  --accent-200: #fed7aa;
  --accent-100: #ffedd5;
  --accent-50: #fff7ed;

  /* Brand colors */
  --brand-testometric: #a6281f;
  --brand-testometric-light: rgba(166, 40, 31, 0.08);
  --brand-testometric-border: rgba(166, 40, 31, 0.15);
  
  --brand-industrial: #00478F;
  --brand-industrial-light: rgba(0, 71, 143, 0.08);
  --brand-industrial-border: rgba(0, 71, 143, 0.15);
  
  --brand-dynisco: #0d4b91;
  --brand-dynisco-light: rgba(13, 75, 145, 0.08);
  --brand-dynisco-border: rgba(13, 75, 145, 0.15);
  
  --brand-wabash: #ed1c3c;
  --brand-wabash-light: rgba(237, 28, 60, 0.08);
  --brand-wabash-border: rgba(237, 28, 60, 0.15);
  
  --brand-carver: #03855b;
  --brand-carver-light: rgba(3, 133, 91, 0.08);
  --brand-carver-border: rgba(3, 133, 91, 0.15);
  
  --brand-kopp: #02aba8;
  --brand-kopp-light: rgba(2, 171, 168, 0.08);
  --brand-kopp-border: rgba(2, 171, 168, 0.15);

  /* Typography — Inter for display, DM Sans for body */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Menlo', 'Monaco', 'Courier New', monospace;

  /* Spatial design tokens */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-3xl: 36px;
  
  /* Premium shadow system */
  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.04);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.06), 0 1px 2px -1px rgb(0 0 0 / 0.06);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.06), 0 2px 4px -2px rgb(0 0 0 / 0.06);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.06), 0 4px 6px -4px rgb(0 0 0 / 0.06);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.07), 0 8px 10px -6px rgb(0 0 0 / 0.07);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.18);
  --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.04);
  
  /* Glow effects */
  --glow-accent: 0 0 40px -8px rgba(234, 88, 12, 0.35);
  --glow-accent-lg: 0 0 80px -12px rgba(234, 88, 12, 0.25);
  
  /* Elevation system */
  --elevation-1: 0 0 0 1px rgb(0 0 0 / 0.03), 0 1px 2px 0 rgb(0 0 0 / 0.04);
  --elevation-2: 0 0 0 1px rgb(0 0 0 / 0.03), 0 2px 4px -1px rgb(0 0 0 / 0.05), 0 4px 8px -2px rgb(0 0 0 / 0.06);
  --elevation-3: 0 0 0 1px rgb(0 0 0 / 0.03), 0 4px 8px -2px rgb(0 0 0 / 0.06), 0 12px 24px -4px rgb(0 0 0 / 0.08);
  
  /* Refined glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.85);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
  
  /* Transition curves */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --container: 1400px;
}

* { 
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html { 
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  font-variant-numeric: proportional-nums;
}

/* Premium noise texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* Premium selection color */
::selection {
  background: rgba(234, 88, 12, 0.12);
  color: var(--gray-950);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}

a { 
  color: inherit; 
  text-decoration: none;
  transition: all 300ms var(--ease-out-expo);
}
a:hover { opacity: 0.85; }

img { 
  max-width: 100%; 
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

.container {
  width: min(var(--container), calc(100% - 4rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.container--wide {
  width: min(1600px, calc(100% - 3rem));
}

.container--full {
  width: calc(100% - 2rem);
  max-width: 1800px;
}

/* Premium glassmorphism */
.glass {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.82) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  box-shadow: 
    0 0 0 1px rgba(0, 0, 0, 0.02),
    0 8px 40px -8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.9);
}

/* Refined tag badge */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--accent-700);
  background: var(--accent-50);
  border: 1px solid var(--accent-200);
  box-shadow: var(--shadow-xs);
  transition: all 300ms var(--ease-out-expo);
}
.tag:hover {
  border-color: var(--accent-300);
  box-shadow: var(--shadow-sm), var(--glow-accent);
  transform: translateY(-1px);
}

/* Premium button system */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.5rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: all 400ms var(--ease-out-expo);
  white-space: nowrap;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 400ms var(--ease-out-expo);
}

.btn:hover,
.btn:active,
.btn:focus {
  opacity: 1;
}

.btn:active { 
  transform: translateY(1px) scale(0.98);
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-700) 100%);
  border-color: rgba(234, 88, 12, 0.2);
  box-shadow: 
    0 0 0 1px rgba(234, 88, 12, 0.15),
    0 2px 8px 0 rgba(0, 0, 0, 0.08),
    0 8px 24px -4px rgba(234, 88, 12, 0.4),
    0 20px 48px -12px rgba(234, 88, 12, 0.25);
}

.btn--primary:hover { 
  transform: translateY(-3px);
  box-shadow: 
    0 0 0 1px rgba(234, 88, 12, 0.2),
    0 4px 12px -2px rgba(0, 0, 0, 0.1),
    0 16px 40px -8px rgba(234, 88, 12, 0.5),
    0 32px 64px -16px rgba(234, 88, 12, 0.3);
}

.brand-slide[data-brand="testometric"] .btn--primary {
  background: linear-gradient(135deg, var(--brand-testometric) 0%, #B8002E 100%);
  color: white;
  border-color: var(--brand-testometric-border);
  box-shadow: 0 0 0 1px var(--brand-testometric-border), 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 4px 12px -2px rgba(228, 0, 59, 0.3);
}

.brand-slide[data-brand="industrial-physics"] .btn--primary {
  background: linear-gradient(135deg, var(--brand-industrial) 0%, #003570 100%);
  color: white;
  border-color: var(--brand-industrial-border);
  box-shadow: 0 0 0 1px var(--brand-industrial-border), 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 4px 12px -2px rgba(0, 71, 143, 0.3);
}

.brand-slide[data-brand="dynisco"] .btn--primary {
  background: linear-gradient(135deg, var(--brand-dynisco) 0%, #073360 100%);
  color: white;
  border-color: var(--brand-dynisco-border);
  box-shadow: 0 0 0 1px var(--brand-dynisco-border), 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 4px 12px -2px rgba(13, 75, 145, 0.3);
}

.brand-slide[data-brand="wabash"] .btn--primary {
  background: linear-gradient(135deg, var(--brand-wabash) 0%, #00522C 100%);
  color: white;
  border-color: var(--brand-wabash-border);
  box-shadow: 0 0 0 1px var(--brand-wabash-border), 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 4px 12px -2px rgba(0, 104, 56, 0.3);
}

.brand-slide[data-brand="carver"] .btn--primary {
  background: linear-gradient(135deg, var(--brand-carver) 0%, #004182 100%);
  color: white;
  border-color: var(--brand-carver-border);
  box-shadow: 0 0 0 1px var(--brand-carver-border), 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 4px 12px -2px rgba(0, 82, 163, 0.3);
}

.brand-slide[data-brand="willi-kopp"] .btn--primary {
  background: linear-gradient(135deg, var(--brand-kopp) 0%, #3A4452 100%);
  color: white;
  border-color: var(--brand-kopp-border);
  box-shadow: 0 0 0 1px var(--brand-kopp-border), 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 4px 12px -2px rgba(74, 85, 104, 0.3);
}

.btn--secondary {
  color: var(--gray-800);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--gray-200);
  box-shadow: 
    0 1px 3px 0 rgba(0, 0, 0, 0.04),
    0 4px 12px -4px rgba(0, 0, 0, 0.08);
}

.btn--secondary:hover { 
  transform: translateY(-3px);
  background: var(--white);
  border-color: var(--gray-300);
  box-shadow: 
    0 4px 8px -2px rgba(0, 0, 0, 0.06),
    0 12px 28px -6px rgba(0, 0, 0, 0.12),
    0 24px 48px -12px rgba(0, 0, 0, 0.08);
}

.btn--primary:active {
  background: linear-gradient(135deg, var(--accent-600) 0%, var(--accent-700) 100%);
  box-shadow:
    0 0 0 1px rgba(166, 83, 35, 0.3),
    0 1px 3px 0 rgba(0, 0, 0, 0.12),
    0 2px 6px -2px rgba(166, 83, 35, 0.3),
    inset 0 2px 4px rgba(0,0,0,0.1);
}

.btn--secondary:active {
  background: var(--gray-50);
  border-color: rgba(0,0,0,0.18);
  color: var(--gray-900);
  box-shadow:
    0 1px 2px 0 rgba(0,0,0,0.08),
    inset 0 2px 4px rgba(0,0,0,0.07);
}

/* Section system */
.section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 1.5rem + 2.5vw, 3.75rem);
  font-weight: 800;
  margin: 0.75rem 0;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--gray-950);
}

.section__subtitle {
  margin: 1.25rem auto 0;
  max-width: 56ch;
  font-size: 1.1875rem;
  font-weight: 400;
  color: var(--gray-500);
  line-height: 1.7;
  letter-spacing: -0.01em;
}

/* HERO */
.hero {
  background: linear-gradient(165deg, #fafafa 0%, #f0f0f0 40%, #fafafa 100%);
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  padding: 0;
  z-index: 1;
  min-height: 100dvh;
}

/* Radial glow accent behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(234, 88, 12, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Bottom gradient fade */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.hero__panel {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 4rem 0;
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: center;
  min-height: 100dvh;
}

/* LEFT COLUMN */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 0 3rem 3rem 0;
  max-width: 700px;
  position: relative;
  z-index: 10;
}

.hero__company-name {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin: 0 0 1.25rem;
  position: relative;
  padding-left: 1.5rem;
}

.hero__company-name::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 2px;
  background: var(--accent-500);
  border-radius: 1px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-700);
  background: linear-gradient(135deg, var(--accent-50), rgba(255,255,255,0.8));
  border: 1px solid var(--accent-200);
  border-radius: 2rem;
  padding: 0.5rem 1.25rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.08);
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 2.5rem + 2.5vw, 4.5rem);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--gray-950);
  padding-bottom: 0.15em;
  overflow: visible;
  text-align: left;
}

.hero__heading-line {
  display: inline-block;
  white-space: nowrap;
}

.hero__heading-accent {
  background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-700) 50%, var(--accent-600) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-weight: 900;
  position: relative;
  padding-bottom: 0.1em;
  overflow: visible;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero__lead {
  margin: 1.75rem 0;
  font-size: 1.175rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 52ch;
}

.hero__lead strong {
  color: var(--gray-900);
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.text-gold {
  color: var(--accent-600);
  font-weight: 700;
}

.hero__capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero__tag {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--gray-200);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.02);
  transition: all 300ms var(--ease-out-expo);
  backdrop-filter: blur(8px);
}

.hero__tag:hover {
  border-color: var(--accent-300);
  background: var(--accent-50);
  color: var(--accent-800);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.12);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  margin-top: 2rem;
}

/* RIGHT COLUMN — image */
.hero__visual {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: auto;
  overflow: visible;
  padding: 0;
  margin-top: 0;
}

/* Large glowing circle behind machine */
.hero__visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Subtle arc ring decoration */
.hero__visual::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  border: 1px solid rgba(234, 88, 12, 0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ---- HERO MEDIA CROSSFADE ---- */
.hero__media {
  position: relative;
  width: 115%;
  margin-left: -5%;
  margin-top: 0;
  margin-right: 1rem;
  border-radius: var(--radius-2xl);
  overflow: visible;
}

.hero__machine {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.12));
  image-rendering: -webkit-optimize-contrast;
  opacity: 1;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s var(--ease-out-expo);
}

.hero__machine:hover {
  transform: scale(1.02);
}

.hero__media-video {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  aspect-ratio: 16 / 9;
  z-index: 2;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: #000;
  box-shadow: 0 32px 80px -16px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255,255,255,0.05);
}

.hero__media-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  pointer-events: auto;
}

.hero__media.video-active .hero__machine {
  opacity: 0;
  pointer-events: none;
}

.hero__media.video-active .hero__media-video {
  opacity: 1;
  pointer-events: auto;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-150, #ebebeb);
}

.hero__stat {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  transition: all 300ms var(--ease-out-expo);
  text-align: left;
  position: relative;
}

.hero__stat:hover {
  transform: translateY(-3px);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  letter-spacing: -0.04em;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1, 'zero' 1;
  overflow: visible;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__stat-label { 
  color: var(--gray-500);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
  overflow: visible;
  white-space: nowrap;
}

.hero__trusted {
  margin-top: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
  width: 100%;
}

.hero__trusted-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin: 0 0 0.6rem;
}

.hero__trusted-orgs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.3rem;
}

.hero__trusted-org {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gray-600);
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.2rem 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  white-space: nowrap;
  transition: color 200ms, border-color 200ms;
}

.hero__trusted-org:hover {
  background: var(--accent-100);
  border-color: var(--accent-200);
  color: var(--accent-700);
}

.hero__trusted-worldwide {
  margin: 0.65rem 0 0;
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 400;
  line-height: 1.5;
}

.hero__trusted-worldwide strong {
  color: var(--gray-700);
  font-weight: 600;
}

.hero__video-selector {
  width: 100%;
  margin-top: 0.75rem;
  position: relative;
  z-index: 20;
}

.hero__video-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--gray-150, #ebebeb);
  cursor: pointer;
  transition: all 200ms ease;
  font-family: inherit;
}

.hero__video-dropdown-toggle:hover {
  border-color: rgba(234, 88, 12, 0.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.hero__video-dropdown-toggle[aria-expanded="true"] {
  border-color: var(--accent-500);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.08);
}

.hero__video-dropdown-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.2;
}

.hero__video-dropdown-brand {
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-left: auto;
  margin-right: 0.25rem;
}

.hero__video-dropdown-chevron {
  flex-shrink: 0;
  transition: transform 250ms ease;
  color: var(--gray-400);
}

.hero__video-dropdown-toggle[aria-expanded="true"] .hero__video-dropdown-chevron {
  transform: rotate(180deg);
  color: var(--accent-500);
}

.hero__video-pills--dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border: 1px solid var(--gray-150, #ebebeb);
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  padding: 0.35rem;
  max-height: 300px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 0s 200ms;
}

.hero__video-pills--dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 200ms ease, transform 200ms ease, visibility 0s;
}

/* Scrollbar for dropdown */
.hero__video-pills--dropdown::-webkit-scrollbar {
  width: 5px;
}
.hero__video-pills--dropdown::-webkit-scrollbar-track {
  background: transparent;
}
.hero__video-pills--dropdown::-webkit-scrollbar-thumb {
  background: var(--gray-200, #ddd);
  border-radius: 3px;
}

.hero__video-pills {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem;
}

.hero__video-pills .video-pill {
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius-sm, 8px);
  text-align: left;
  min-height: auto;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease;
}

.hero__video-pills .video-pill:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
  background: var(--gray-50, #f9fafb);
}

.hero__video-pills .video-pill.active {
  background: rgba(234, 88, 12, 0.06);
  border-color: rgba(234, 88, 12, 0.15);
}

.hero__video-pills .video-pill.active .video-pill__title {
  color: var(--accent-600, #dc5a0b);
}

.hero__video-pills .video-pill::before {
  display: none;
}

.hero__video-pills .video-pill__title {
  font-size: 0.8rem;
  line-height: 1.25;
  font-weight: 600;
}

.hero__video-pills .video-pill__brand {
  margin-top: 0.1rem;
  font-size: 0.71rem;
  line-height: 1.2;
  color: var(--gray-500);
}

.hero__video-toggle {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  color: rgba(255,255,255,0.95);
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 300ms var(--ease-out-expo);
  backdrop-filter: blur(16px);
}
.hero__video-toggle:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  transform: scale(1.03);
}
.hero__video-toggle svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}



.hero__compliance {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
  width: 100%;
}

.hero__compliance-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.6rem;
}

.hero__compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hero__compliance-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-600);
  background: none;
  border: 1px solid var(--gray-150, #ebebeb);
  border-radius: 0.375rem;
  padding: 0.25rem 0.6rem;
  letter-spacing: 0.02em;
}

/* HERO RESPONSIVE */
@media (max-width: 1100px) {
  .hero__panel {
    padding: 100px 2.5rem 0;
    gap: 2rem;
  }
  .hero__content {
    padding: 2rem 1.5rem 2rem 0;
  }
  .hero__media,
  .hero__video-pills {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
  }
  .hero::after {
    height: 120px;
  }
  .hero__panel {
    grid-template-columns: 1fr;
    padding: 90px 1.5rem 0;
    min-height: auto;
  }
  .hero__content {
    padding: 0 0 2rem;
  }
  .hero__heading {
    font-size: clamp(2.4rem, 8vw, 3.5rem);
  }
  .hero__lead {
    font-size: 1rem;
    margin: 1rem 0;
  }
  .hero__compliance {
    margin-top: 1.5rem;
  }
  .hero__visual {
    min-height: auto;
    height: auto;
    padding-top: 0;
  }
  .hero__media {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }
  .hero__video-pills {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .hero__machine {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
  }
  .hero__media-video {
    border-radius: 12px;
    box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.2);
  }
  .hero__trusted {
    margin-top: 1.25rem;
    padding-top: 1rem;
  }
  .hero__video-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem;
  }
}

@media (max-width: 540px) {
  .hero__panel {
    padding: 70px 1.25rem 0;
  }
  .hero__heading {
    font-size: clamp(2rem, 9vw, 2.8rem);
    letter-spacing: -0.04em;
  }
  .hero__heading-line {
    white-space: normal;
  }
  .hero__lead {
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: none;
  }
  .hero__eyebrow {
    font-size: 0.72rem;
    padding: 0.35rem 0.875rem;
    margin-bottom: 1.25rem;
  }
  .hero__capabilities {
    gap: 0.375rem;
  }
  .hero__tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
  .hero__cta {
    flex-direction: column;
    width: 100%;
  }
  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__trusted-label {
    font-size: 0.68rem;
  }
  .hero__trusted-orgs {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__trusted-org {
    font-size: 0.6rem;
    padding: 0.18rem 0.25rem;
  }
  .hero__trusted-worldwide {
    font-size: 0.75rem;
  }
  .hero__video-pills {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  .hero__video-pills .video-pill {
    padding: 0.45rem 0.5rem;
    min-height: auto;
  }
  .hero__video-pills .video-pill__title {
    font-size: 0.74rem;
  }
  .hero__video-pills .video-pill__brand {
    font-size: 0.65rem;
  }
  .hero__machine {
    width: 100%;
    margin-left: 0;
  }
  .hero__media {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .hero__media-video {
    border-radius: 8px;
  }
  .hero__compliance-badges {
    gap: 0.3rem;
  }
  .hero__compliance-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }
}

/* BRAND NAV */
.brand-nav {
  z-index: 50;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 4px 16px -4px rgba(0, 0, 0, 0.04);
}

.brand-nav__inner {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  padding: 0.375rem;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, transparent, black 2rem, black calc(100% - 2rem), transparent);
  mask-image: linear-gradient(to right, transparent, black 2rem, black calc(100% - 2rem), transparent);
}

@media (min-width: 1025px) {
  .brand-nav__inner {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* Brand nav slideshow controls */
.brand-nav__controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.75rem;
  flex-shrink: 0;
}

.brand-nav__ctrl {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-150, #ebebeb);
  background: rgba(255,255,255,0.9);
  color: var(--gray-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 300ms var(--ease-out-expo);
  flex-shrink: 0;
}

.brand-nav__ctrl:hover {
  background: var(--accent-50);
  border-color: var(--accent-200);
  color: var(--accent-700);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.12);
}

.brand-nav__ctrl svg {
  width: 14px;
  height: 14px;
  pointer-events: none;
}

/* BRAND NAV END */

.brand-nav__item {
  flex: 0 0 auto;
  height: 50px;
  min-width: 50px;
  padding: 0 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms var(--ease-out-expo);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.04);
}

.brand-nav__item:hover { 
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 8px 24px -4px rgba(0,0,0,0.1);
  border-color: rgba(0,0,0,0.04);
}

.brand-nav__item.active {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.12), rgba(234, 88, 12, 0.06));
  border-color: rgba(234, 88, 12, 0.25);
  box-shadow: 
    0 0 0 1px rgba(234, 88, 12, 0.15),
    0 2px 8px -1px rgba(234, 88, 12, 0.2),
    0 0 16px 2px rgba(234, 88, 12, 0.12);
}

.brand-nav__item.active[data-brand="testometric"] {
  background: linear-gradient(135deg, rgba(166, 40, 31, 0.14), rgba(166, 40, 31, 0.07));
  border-color: rgba(166, 40, 31, 0.35);
  box-shadow: 
    0 0 0 1px rgba(166, 40, 31, 0.2),
    0 2px 8px -1px rgba(166, 40, 31, 0.25),
    0 0 16px 2px rgba(166, 40, 31, 0.2);
}

.brand-nav__item.active[data-brand="industrial-physics"] {
  background: linear-gradient(135deg, rgba(0, 71, 143, 0.14), rgba(0, 71, 143, 0.07));
  border-color: rgba(0, 71, 143, 0.35);
  box-shadow: 
    0 0 0 1px rgba(0, 71, 143, 0.2),
    0 2px 8px -1px rgba(0, 71, 143, 0.25),
    0 0 16px 2px rgba(0, 71, 143, 0.2);
}

.brand-nav__item.active[data-brand="dynisco"] {
  background: linear-gradient(135deg, rgba(13, 75, 145, 0.14), rgba(13, 75, 145, 0.07));
  border-color: rgba(13, 75, 145, 0.35);
  box-shadow: 
    0 0 0 1px rgba(13, 75, 145, 0.2),
    0 2px 8px -1px rgba(13, 75, 145, 0.25),
    0 0 16px 2px rgba(13, 75, 145, 0.2);
}

.brand-nav__item.active[data-brand="wabash"] {
  background: linear-gradient(135deg, rgba(237, 28, 60, 0.14), rgba(237, 28, 60, 0.07));
  border-color: rgba(237, 28, 60, 0.35);
  box-shadow: 
    0 0 0 1px rgba(237, 28, 60, 0.2),
    0 2px 8px -1px rgba(237, 28, 60, 0.25),
    0 0 16px 2px rgba(237, 28, 60, 0.2);
}

.brand-nav__item.active[data-brand="carver"] {
  background: linear-gradient(135deg, rgba(3, 133, 91, 0.14), rgba(3, 133, 91, 0.07));
  border-color: rgba(3, 133, 91, 0.35);
  box-shadow: 
    0 0 0 1px rgba(3, 133, 91, 0.2),
    0 2px 8px -1px rgba(3, 133, 91, 0.25),
    0 0 16px 2px rgba(3, 133, 91, 0.2);
}

.brand-nav__item.active[data-brand="willi-kopp"] {
  background: linear-gradient(135deg, rgba(2, 171, 168, 0.14), rgba(2, 171, 168, 0.07));
  border-color: rgba(2, 171, 168, 0.35);
  box-shadow: 
    0 0 0 1px rgba(2, 171, 168, 0.2),
    0 2px 8px -1px rgba(2, 171, 168, 0.25),
    0 0 16px 2px rgba(2, 171, 168, 0.2);
}

.brand-nav__logo { 
  height: 32px; 
  max-width: 180px;
  width: auto; 
  object-fit: contain;
  filter: none;
  transition: filter 200ms ease;
}

.brand-nav__item.active .brand-nav__logo,
.brand-nav__item.active:hover .brand-nav__logo {
  filter: none;
}

.brand-nav__item:hover .brand-nav__logo {
  filter: none;
}

.brand-nav__home { 
  width: 18px; 
  height: 18px; 
  color: var(--gray-600); 
}

.brand-nav__item[data-brand="home"] {
  background: var(--accent-50);
  border-color: var(--accent-200);
}

.brand-nav__item[data-brand="home"]:hover {
  background: var(--accent-100);
  border-color: var(--accent-300);
}

.brand-nav__item.active[data-brand="home"] {
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
  border-color: var(--accent-600);
}

.brand-nav__item.active[data-brand="home"] .brand-nav__home {
  color: white;
}

.brand-nav__item.active .brand-nav__home { 
  color: var(--accent-600); 
}

/* BRAND SLIDES */
.brand-slides { padding: 5rem 0 1.5rem; }

.brand-slide {
  display: none;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 80px -16px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
  transition: all 400ms var(--ease-out-expo);
}

.brand-slide.active { display: block; }

.brand-slide__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  padding: clamp(2rem, 2rem + 2vw, 4rem);
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

.brand-slide__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-slide__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.brand-slide__title {
  font-family: var(--font-display);
  margin: 0.75rem 0 1rem;
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--gray-950);
  text-align: center;
}

.brand-slide[data-brand="testometric"] .brand-slide__title {
  color: var(--brand-testometric);
}

.brand-slide[data-brand="industrial-physics"] .brand-slide__title {
  color: var(--brand-industrial);
}

.brand-slide[data-brand="dynisco"] .brand-slide__title {
  color: var(--brand-dynisco);
}

.brand-slide[data-brand="wabash"] .brand-slide__title {
  color: var(--brand-wabash);
}

.brand-slide[data-brand="carver"] .brand-slide__title {
  color: var(--brand-carver);
}

.brand-slide[data-brand="willi-kopp"] .brand-slide__title {
  color: var(--brand-kopp);
}

.brand-slide__facts { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 0.625rem; 
  margin-bottom: 1.25rem; 
  justify-content: center;
}

.brand-slide__fact {
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 500;
  background: rgba(234, 88, 12, 0.08);
  border: 1px solid rgba(234, 88, 12, 0.12);
  color: var(--gray-700);
  letter-spacing: -0.01em;
}

.brand-slide[data-brand="testometric"] .brand-slide__fact {
  background: var(--brand-testometric-light);
  border-color: var(--brand-testometric-border);
  color: var(--brand-testometric);
}

.brand-slide[data-brand="industrial-physics"] .brand-slide__fact {
  background: var(--brand-industrial-light);
  border-color: var(--brand-industrial-border);
  color: var(--brand-industrial);
}

.brand-slide[data-brand="dynisco"] .brand-slide__fact {
  background: var(--brand-dynisco-light);
  border-color: var(--brand-dynisco-border);
  color: var(--brand-dynisco);
}

.brand-slide[data-brand="wabash"] .brand-slide__fact {
  background: var(--brand-wabash-light);
  border-color: var(--brand-wabash-border);
  color: var(--brand-wabash);
}

.brand-slide[data-brand="carver"] .brand-slide__fact {
  background: var(--brand-carver-light);
  border-color: var(--brand-carver-border);
  color: var(--brand-carver);
}

.brand-slide[data-brand="willi-kopp"] .brand-slide__fact {
  background: var(--brand-kopp-light);
  border-color: var(--brand-kopp-border);
  color: var(--brand-kopp);
}

.brand-slide__description { 
  margin: 0; 
  color: var(--gray-600); 
  font-size: 1.0625rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
  text-align: center;
}

.brand-slide__cta { 
  display: flex; 
  gap: 0.75rem; 
  flex-wrap: wrap; 
  margin-top: 1.75rem;
  justify-content: center;
}

.brand-slide__image-wrapper {
  border-radius: var(--radius-2xl);
  padding: 2rem;
  background: linear-gradient(180deg, rgba(250, 250, 250, 0.9) 0%, rgba(245, 245, 245, 0.7) 100%);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.06);
}

.brand-slide__image-wrapper img { 
  max-height: 350px; 
  width: 100%; 
  object-fit: contain;
  transition: transform 400ms var(--ease-out-expo);
}

.brand-slide__image-wrapper:hover img {
  transform: scale(1.03);
}

/* New Capabilities Design */
.cap-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cap-tab {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--gray-600);
  font-weight: 600;
  cursor: pointer;
  transition: all 300ms var(--ease-out-expo);
  font-family: var(--font-display);
  font-size: 1rem;
}

.cap-tab:hover {
  background: var(--gray-50);
  border-color: var(--gray-200);
  transform: translateY(-1px);
}

.cap-tab.active {
  background: var(--gray-950);
  color: var(--white);
  border-color: var(--gray-950);
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.2);
}

.cap-grid {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeIn 400ms ease;
}

.cap-grid.active {
  display: flex;
}

.cap-feature-card {
  flex: 1 1 300px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,250,250,0.95) 100%);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: all 300ms var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cap-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px -12px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-100);
}

.cap-feature-title {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--gray-900);
}

.cap-feature-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background: var(--gray-100);
  border-radius: 4px;
  color: var(--gray-600);
  font-family: var(--font-mono);
  font-weight: 600;
}

.cap-feature-desc {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.industries__footer {
  margin-top: 3rem;
  text-align: center;
}

/* TRUSTED BY */
.trusted-by { padding: 5.5rem 0; }

.trusted-by__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.25rem + 1.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 0.5rem;
  color: var(--gray-950);
}

.trusted-by__subtitle { 
  margin: 0; 
  font-size: 1.0625rem;
  color: var(--gray-500);
  letter-spacing: -0.01em;
}

.ticker-wrapper {
  margin: 0;
  overflow: hidden;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.ticker {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  width: max-content;
  padding: 1.25rem 1.5rem;
  animation: ticker 40s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0); /* Force GPU acceleration */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ticker--clients {
  animation-duration: 25s;
}

.ticker.reverse { animation-direction: reverse; }
.ticker:hover { animation-play-state: paused; }

.ticker__item { 
  display: grid; 
  place-items: center; 
  width: 130px;
  max-width: 130px;
  height: 78px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.04);
  transition: all 300ms var(--ease-out-expo);
}

.ticker__item:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px) scale(1.02);
}

.ticker__item img {
  max-height: 46px;
  max-width: 104px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: none;
  opacity: 0.85;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateZ(0); /* Anti-aliasing fix */
  transform: translateZ(0);
  backface-visibility: hidden;
}

.ticker__item:hover img { 
  opacity: 1;
  transform: scale(1.05);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* INDUSTRY SECTORS CARDS */
.industry-sectors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 0 0;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 1 calc((100% - 5 * 0.75rem) / 6);
  gap: 0;
  padding: 1.125rem 0.875rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(250,252,255,0.9) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03), 0 4px 16px rgba(0,0,0,0.02);
  transition: all 300ms var(--ease-out-expo);
  text-align: center;
  cursor: default;
}

.industry-card:hover {
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(250,252,255,0.98) 100%);
  border-color: rgba(234, 88, 12, 0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.industry-card__name {
  font-family: var(--font-display);
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.01em;
  line-height: 1.35;
}

/* CLIENTS LOGO MARQUEE */
.clients-marquee {
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0 0.5rem;
}

.clients-marquee::before,
.clients-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--gray-50, #f9fafb), transparent);
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--gray-50, #f9fafb), transparent);
}

.clients-marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 45s linear infinite;
  gap: 0;
}

.clients-marquee__track:hover {
  animation-play-state: paused;
}

.clients-marquee__track--reverse {
  animation: marqueeScrollReverse 50s linear infinite;
  margin-top: 0.6rem;
}

.clients-marquee__slide {
  display: flex;
  gap: 0.75rem;
  padding-right: 0.75rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* CLIENTS LOGO GRID */
.clients-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  padding: 2rem 0 0.5rem;
}

.clients-logo-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 140px;
  width: 140px;
  height: 80px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 0.65rem 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 250ms cubic-bezier(0.4,0,0.2,1);
}

.clients-logo-grid__item:hover {
  background: #fff;
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 4px 8px -2px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.clients-logo-grid__item img {
  max-height: 56px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 250ms ease;
}

.clients-logo-grid__item:hover img { opacity: 1; }

/* PRODUCTS */
.products__showcase {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.products__viewer {
  border-radius: var(--radius-3xl);
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(250,250,250,0.9) 100%);
  box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0,0,0,0.02);
  min-height: 600px;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: all 400ms var(--ease-out-expo);
}

.products__viewer:hover {
  box-shadow: 0 32px 80px -16px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0,0,0,0.03);
  transform: translateY(-2px);
}

.products__slide { 
  display: none; 
  padding: 1rem; 
}

.products__slide.active { display: block; }

.products__slide img { 
  max-height: 550px; 
  max-height: 350px; 
  object-fit: contain;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.products__slide.active img {
  animation: productFadeIn 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes productFadeIn {
  from { 
    opacity: 0; 
    transform: scale(0.95); 
  }
  to { 
    opacity: 1; 
    transform: scale(1); 
  }
}

.specs-card {
  display: none;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,250,250,0.95) 100%);
  box-shadow: 0 16px 48px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0,0,0,0.02);
  padding: 2rem;
  transition: all 400ms var(--ease-out-expo);
}

.specs-card.active { 
  display: block;
  animation: cardSlideIn 500ms var(--ease-out-expo);
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.specs-card__title { 
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--gray-950);
}

.specs-card__brand { 
  display: inline-block; 
  margin-top: 0.5rem; 
  color: var(--gray-600); 
  font-size: 0.9375rem;
  font-weight: 500;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem;
  margin: 1.5rem 0 1.5rem;
}

.spec-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(250, 250, 250, 0.8);
  padding: 1rem 1.125rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.spec-item:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.spec-item__value { 
  font-family: var(--font-display); 
  font-weight: 700; 
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--gray-950);
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1, 'zero' 1;
  line-height: 1.2;
}

.spec-item__label { 
  color: var(--gray-600); 
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 0.375rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.specs-card__cta { 
  display: flex; 
  gap: 0.75rem; 
  flex-wrap: wrap; 
}

.products__nav {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.products__nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  transition: all 300ms var(--ease-out-expo);
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.06);
}

.products__nav-btn:hover { 
  transform: translateY(-2px) scale(1.05);
  border-color: var(--accent-200);
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.1);
  background: var(--accent-50);
}

.products__nav-btn:active {
  transform: translateY(0) scale(0.95);
}

.products__counter { 
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.products__counter-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.products__counter-dot:hover {
  background: rgba(0, 0, 0, 0.3);
  transform: scale(1.2);
}

.products__counter-dot.active {
  width: 32px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
}

.products__counter-dot::after {
  content: attr(data-name);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-950);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms;
  font-family: var(--font-sans);
}

.products__counter-dot:hover::after {
  opacity: 1;
}

/* QUICK LINKS */
.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.quick-link {
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,250,250,0.95) 100%);
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.06);
  padding: 1.75rem 1.5rem;
  transition: all 400ms var(--ease-out-expo);
  display: grid;
  gap: 1rem;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}

.quick-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.04), transparent 60%);
  opacity: 0;
  transition: opacity 400ms var(--ease-out-expo);
}

.quick-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(234, 88, 12, 0.08);
  border-color: rgba(234, 88, 12, 0.1);
}

.quick-link:hover::before {
  opacity: 1;
}

.quick-link__image {
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background: rgba(250, 250, 250, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 1;
}

.quick-link__image img { 
  max-height: 130px; 
  max-width: 100%;
  object-fit: contain;
  transition: transform 400ms var(--ease-out-expo);
}

.quick-link:hover .quick-link__image img {
  transform: scale(1.08) translateY(-2px);
}

.quick-link__name { 
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  color: var(--gray-950);
  position: relative;
  z-index: 1;
}

.quick-link__country { 
  color: var(--gray-600); 
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.quick-link__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.quick-link:hover .quick-link__btn {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.12);
}

/* VIDEO SHOWCASE */
.video-showcase__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2.5rem;
}

.video-player__wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--gray-950);
  box-shadow: var(--elevation-2);
  aspect-ratio: 16 / 9;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.video-player__wrapper:hover {
  box-shadow: var(--elevation-3);
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  background: var(--gray-950);
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(234, 88, 12, 0.95);
  border: none;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(234, 88, 12, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent-500);
  box-shadow: 0 8px 30px rgba(234, 88, 12, 0.6);
}

.video-play-btn:active {
  transform: translate(-50%, -50%) scale(0.95);
}

.video-play-btn svg {
  margin-left: 4px;
}

iframe { 
  position: absolute;
  inset: 0;
  width: 100%; 
  height: 100%; 
  border: 0;
}

.video-pills { 
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.video-pill {
  text-align: left;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.video-pill::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--accent-500), var(--accent-700));
  border-radius: 0 3px 3px 0;
  transition: height 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.video-pill:hover { 
  transform: translateX(4px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: var(--shadow-sm);
}

.video-pill.active {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.08), rgba(234, 88, 12, 0.04));
  border-color: rgba(234, 88, 12, 0.18);
  box-shadow: 
    0 0 0 1px rgba(234, 88, 12, 0.08),
    var(--shadow-sm);
}

.video-pill.active::before {
  height: 60%;
}

.video-pill__title { 
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--gray-950);
  line-height: 1.3;
}

.video-pill__brand { 
  display: block; 
  color: var(--gray-600); 
  margin-top: 0.125rem; 
  font-size: 0.875rem;
  font-weight: 500;
}

/* CAPABILITIES */
.capabilities__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 3rem 0 3.5rem;
}

.cap-stat {
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,250,250,0.95) 100%);
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.06);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 400ms var(--ease-out-expo);
}

.cap-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px -12px rgba(0, 0, 0, 0.1);
}

.cap-stat__value { 
  font-family: var(--font-display);
  font-weight: 800; 
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: var(--gray-950);
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}

.cap-stat__label { 
  color: var(--gray-500);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
}

.capabilities__grid { display: grid; gap: 1.5rem; }

.cap-category {
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,250,250,0.95) 100%);
  box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 400ms var(--ease-out-expo);
}

.cap-category:hover {
  box-shadow: 0 16px 48px -12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.cap-category__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.04), rgba(255, 255, 255, 0));
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.cap-category__title {
  font-family: var(--font-display);
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-950);
}

.cap-category__nav { display: flex; gap: 0.5rem; }

.cap-category__nav-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 1.125rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xs);
}

.cap-category__nav-btn:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: var(--shadow-sm);
}

.cap-category__nav-btn:active {
  transform: scale(0.95);
}

.cap-category__content { padding: 1.25rem 1.75rem 1.75rem; }

.cap-category__scroll {
  display: flex;
  gap: 0.875rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}

.cap-category__scroll::-webkit-scrollbar { 
  height: 6px; 
}

.cap-category__scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 3px;
}

.cap-category__scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.cap-category__scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.15);
}

.cap-card {
  flex: 0 0 auto;
  min-width: 260px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(250, 250, 250, 0.9);
  padding: 1.25rem;
  box-shadow: var(--shadow-xs);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cap-card:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.cap-card__header { 
  display: flex; 
  justify-content: space-between; 
  align-items: start; 
  gap: 0.875rem; 
}

.cap-card__title { 
  font-family: var(--font-display);
  margin: 0; 
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--gray-950);
  line-height: 1.3;
}

.cap-card__badge {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  color: var(--gray-700);
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-feature-settings: 'ss01' 1;
}

.cap-card__category { 
  color: var(--gray-600); 
  display: block; 
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), 
              transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible { 
  opacity: 1; 
  transform: translateY(0); 
}

/* Staggered reveal */
.reveal:nth-child(1) { transition-delay: 0ms; }
.reveal:nth-child(2) { transition-delay: 80ms; }
.reveal:nth-child(3) { transition-delay: 160ms; }
.reveal:nth-child(4) { transition-delay: 240ms; }
.reveal:nth-child(5) { transition-delay: 320ms; }
.reveal:nth-child(6) { transition-delay: 400ms; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Large Screen Optimizations */
@media (min-width: 1536px) {
  .brand-slide__inner {
    gap: 4rem;
    padding: 4rem;
  }

  .brand-slide__title {
    font-size: 3.5rem;
  }

  .brand-slide__desc {
    font-size: 1.25rem;
  }

  .btn {
    padding: 1rem 1.75rem;
    font-size: 1.0625rem;
  }

  .brand-nav__item {
    padding: 1.25rem 1.75rem;
  }

  .brand-nav__logo {
    height: 40px;
    max-width: 220px;
  }

  .cta-finale__title {
    font-size: 3.5rem;
  }

  .cta-finale__subtitle {
    font-size: 1.375rem;
  }
}

@media (min-width: 1920px) {
  .container {
    width: min(1800px, calc(100% - 4rem));
  }

  .brand-slide__inner {
    gap: 5rem;
    padding: 5rem;
  }

  .brand-slide__title {
    font-size: 4rem;
  }

  .brand-slide__desc {
    font-size: 1.375rem;
  }

  .brand-nav__logo {
    height: 48px;
    max-width: 240px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .brand-slide__inner { grid-template-columns: 1fr; }
  .products__showcase { grid-template-columns: 1fr; }
  .video-showcase__content { 
    grid-template-columns: 1fr; 
    gap: 1.5rem;
  }
  .quick-links__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .why-choose__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
  .why-choose__grid .why-card { width: auto; }
  .industries__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
  .industries__grid .industry-card { width: auto; }
  .hero__panel {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1.5rem;
  }
  .hero__img { height: 280px; }
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 2rem);
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .hero__panel {
    padding: 4rem 1.5rem;
  }
  
  .quick-links__grid { 
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
  }
  
  /* Video Section Mobile Optimizations */
  .video-showcase__content {
    gap: 1.25rem;
  }
  
  .video-pills {
    grid-template-columns: 1fr;
    gap: 0.625rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.25rem;
  }
  
  .video-pills::-webkit-scrollbar {
    width: 4px;
  }
  
  .video-pills::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
  }
  
  .video-pills::-webkit-scrollbar-thumb {
    background: rgba(234, 88, 12, 0.6);
    border-radius: 2px;
  }
  
  .video-pill {
    padding: 0.875rem 1rem;
  }
  
  .video-pill__title {
    font-size: 0.875rem;
  }
  
  .video-pill__brand {
    font-size: 0.75rem;
  }
  
  .video-play-btn {
    width: 64px;
    height: 64px;
  }
  
  .video-play-btn svg {
    width: 48px;
    height: 48px;
  }
  .why-choose__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
  .why-choose__grid .why-card { width: auto; }
  .industries__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .industries__grid .industry-card { width: auto; }
  .industry-sectors { gap: 0.625rem; }
  .industry-card { flex: 0 1 calc((100% - 3 * 0.625rem) / 4); }
  .clients-logo-grid { gap: 0.75rem; }
  .clients-logo-grid__item { flex: 1 1 116px; max-width: 138px; height: 80px; padding: 0.5rem 0.75rem; }
  .clients-logo-grid__item img { max-height: 48px; max-width: 100px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .service-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
  .service-grid .service-card { width: auto; }
  .standards-bar__content { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 0.5rem; row-gap: 0.75rem; }
  .standards-bar__badges { justify-content: center; gap: 0.5rem; }
  .standards-bar__label { width: 100%; text-align: center; font-size: 0.875rem; margin-bottom: 0.25rem; }
  .standard-badge { padding: 0.35rem 0.6rem; font-size: 0.75rem; gap: 0.35rem; }
  .standard-badge__icon { width: 14px; height: 14px; }
  .cta-finale { padding: 4rem 0; }
  .faq-grid { gap: 0.5rem; }
}

@media (max-width: 640px) {
  .brand-nav__inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .brand-nav__item {
    flex: 0 0 auto;
    max-width: none;
    min-width: 44px;
    height: 44px;
    padding: 0 0.75rem;
  }
  .cap-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .cap-tab {
    width: 100%;
    padding: 0.625rem 0.5rem;
    font-size: 0.875rem;
  }
  .cap-tab:last-child {
    grid-column: span 2;
  }
  .cap-grid {
    justify-content: center;
    gap: 0.75rem;
  }
  .cap-feature-card {
    flex: 0 1 calc(50% - 0.375rem);
    padding: 1rem;
  }
  .cap-feature-title {
    font-size: 0.9375rem;
  }
  .cap-feature-desc {
    font-size: 0.8125rem;
  }
  .section { padding: 3rem 0; }
  .hero__cta,
  .brand-slide__cta,
  .specs-card__cta,
  .cta-finale__actions {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__cta .btn,
  .brand-slide__cta .btn,
  .specs-card__cta .btn,
  .cta-finale__actions .btn {
    width: 100%;
  }
  .video-pills { grid-template-columns: repeat(2, 1fr); }
  .why-choose__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .why-card:nth-last-child(1):nth-child(odd) { grid-column: span 2; width: 100%; text-align: center; }
  .why-card:nth-last-child(1):nth-child(odd) .why-card__icon { margin-left: auto; margin-right: auto; }
  .why-card { padding: 1rem; }
  .why-card__title { font-size: 1rem; }
  .why-card__description { font-size: 0.8125rem; }
  .trusted-by { padding: 3rem 0; }
  .industry-sectors { gap: 0.5rem; padding: 0.75rem 0 0; }
  .industry-card { flex: 0 1 calc((100% - 2 * 0.5rem) / 3); padding: 0.875rem 0.5rem; border-radius: 12px; }
  .industry-card__name { font-size: 0.72rem; }
  .clients-logo-grid { gap: 0.625rem; padding: 1.5rem 0 0.5rem; }
  .clients-logo-grid__item { flex: 1 1 100px; max-width: 120px; height: 72px; padding: 0.45rem 0.6rem; border-radius: 10px; }
  .clients-logo-grid__item img { max-height: 42px; max-width: 88px; }
  .hero__video-toggle { bottom: 0.5rem; right: 0.5rem; padding: 0.35rem 0.75rem; font-size: 0.68rem; }
  .hero__video-toggle svg { width: 10px; height: 10px; }
  .products__viewer { min-height: 400px; order: 1; }
  .products__specs { display: contents; }
  .products__nav { order: 2; margin: 1rem 0; width: 100%; }
  .specs-card { padding: 1.5rem; order: 3; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .cap-stat__value { font-size: 1.25rem; }
  .cap-stat__label { font-size: 0.875rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); justify-content: center; }
  .service-card:nth-last-child(1):nth-child(odd) { grid-column: span 2; max-width: 100%; justify-self: stretch; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .industries__grid { grid-template-columns: repeat(3, 1fr); }
  .brand-slide__inner { padding: 1.5rem; gap: 2rem; }
  .cta-finale { padding: 3rem 0; }
  .cta-finale__title { font-size: 1.75rem; }
}

@media (max-width: 520px) {
  .hero__stats { 
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }
  
  .quick-links__grid { 
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
  }
  
  .brand-nav {
    padding: 0.75rem 0;
  }
  
  .brand-nav__item {
    height: 44px;
    padding: 0 0.875rem;
  }
  
  .brand-nav__logo {
    height: 24px;
    max-width: 120px;
  }
  
  .ticker__item {
    width: 140px;
    max-width: 140px;
    height: 70px;
    padding: 0.75rem;
  }
  
  .ticker__item img {
    max-height: 40px;
    max-width: 110px;
  }
  .industries__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .industries__grid .industry-card { padding: 1rem; }
  .industry-card__title { font-size: 0.8125rem; }
  .industry-card__desc { font-size: 0.75rem; }
  .industry-sectors { gap: 0.5rem; padding: 0.75rem 0 0; }
  .industry-card { flex: 0 1 calc((100% - 2 * 0.4rem) / 3); padding: 0.7rem 0.4rem; border-radius: 10px; }
  .industry-card__name { font-size: 0.68rem; }
  .clients-logo-grid { gap: 0.5rem; padding: 1.25rem 0 0.5rem; }
  .clients-logo-grid__item { flex: 0 0 calc((100% - 1rem) / 3); max-width: calc((100% - 1rem) / 3); height: 64px; padding: 0.4rem 0.5rem; border-radius: 8px; }
  .clients-logo-grid__item img { max-height: 36px; max-width: 76px; }
  .hero__video-toggle { bottom: 0.4rem; right: 0.4rem; padding: 0.3rem 0.65rem; font-size: 0.65rem; gap: 0.3rem; }
  .hero__video-toggle svg { width: 9px; height: 9px; }
}

/* Focus-visible styles */
.brand-nav__item:focus-visible,
.products__counter-dot:focus-visible,
.cap-tab:focus-visible,
.video-pill:focus-visible,
.hero-video-pill:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 0.25rem;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  
  *, *::before, *::after { 
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Print styles */
@media print {
  body::before { display: none; }
  .brand-nav { position: static; }
  .hero__video-pills,
  .hero__video-toggle,
  .brand-nav__controls,
  .cta-finale,
  .video-showcase,
  .skip-link { display: none !important; }
  .section { padding: 2rem 0; break-inside: avoid; }
  .hero__panel { grid-template-columns: 1fr; }
  * { color: #000 !important; background: #fff !important; box-shadow: none !important; }
  a { text-decoration: underline; }
  .why-card,
  .service-card,
  .specs-card,
  .faq-item { break-inside: avoid; }
  img { max-width: 100% !important; }
}

/* WHY CHOOSE FITCO */
.why-choose {
  background: linear-gradient(180deg, var(--white) 0%, #f8f8f8 100%);
}

.why-choose__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-choose__grid .why-card {
  width: calc(25% - 1.125rem);
  flex-grow: 0;
  flex-shrink: 0;
}

.why-card {
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,250,250,0.95) 100%);
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.06);
  transition: all 400ms var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-400), var(--accent-600));
  opacity: 0;
  transition: opacity 400ms var(--ease-out-expo);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.06);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-50), rgba(255,255,255,0.8));
  border: 1px solid var(--accent-100);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  transition: all 300ms var(--ease-out-expo);
}

.why-card:hover .why-card__icon {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.15);
}

.why-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-600);
}

.why-card__title {
  font-family: var(--font-display);
  font-size: 1.175rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-950);
  margin-bottom: 0.75rem;
}

.why-card__description {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-600);
  letter-spacing: -0.01em;
}

/* INDUSTRIES SECTION */
.industries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.industries__grid .industry-card {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(250,250,250,0.98) 100%);
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.04);
  transition: all 300ms var(--ease-out-expo);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  flex: unset;
}

.industries__grid .industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--accent-500), var(--accent-700));
  border-radius: 0 2px 2px 0;
  transition: height 300ms var(--ease-out-expo);
}

.industries__grid .industry-card:hover {
  box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.1);
  border-color: rgba(234, 88, 12, 0.15);
  background: rgba(255, 255, 255, 1);
  transform: translateY(-4px);
}

.industries__grid .industry-card:hover::before {
  height: 100%;
}

.industry-card__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gray-900);
  margin: 0 0 0.375rem;
}

.industry-card__desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--gray-500);
  margin: 0;
}

.industries__footer {
  text-align: center;
  margin-top: 2.5rem;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2.25rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,250,250,0.95) 100%);
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.06);
  transition: all 400ms var(--ease-out-expo);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--accent-200);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  box-shadow: 0 16px 48px -12px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.testimonial-card__quote {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 1.75rem;
  font-style: italic;
  letter-spacing: -0.01em;
}

.testimonial-card__author {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.25rem;
}

.testimonial-card__role {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-950);
  letter-spacing: -0.01em;
}

.testimonial-card__company {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

/* CTA SECTION */
.cta-finale {
  background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-700) 50%, var(--accent-600) 100%);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.cta-finale::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.1), transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(255, 255, 255, 0.06), transparent 50%);
}

.cta-finale::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
}

.cta-finale__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-finale__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 2rem + 2.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.cta-finale__subtitle {
  font-size: 1.175rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-finale__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--white {
  background: #fff;
  color: var(--accent-700);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.btn--white:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 1);
}

.btn--outline-white {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.8);
  color: #fff;
  transform: translateY(-3px);
}

/* STANDARDS BADGES */
.standards-bar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 2rem 0;
}

.standards-bar__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.standards-bar__label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-600);
  flex-shrink: 0;
}

.standards-bar__badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.standard-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.02em;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.standard-badge__icon {
  width: 16px;
  height: 16px;
  color: var(--accent-600);
}

/* SERVICE & SUPPORT */
.service-support {
  background: linear-gradient(180deg, var(--white) 0%, #f8f8f8 100%);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-grid .service-card {
  width: calc(50% - 0.75rem);
  flex-grow: 0;
  flex-shrink: 0;
}

.service-card {
  padding: 2.25rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,250,250,0.95) 100%);
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.06);
  transition: all 400ms var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-400), var(--accent-600));
  opacity: 0;
  transition: opacity 400ms var(--ease-out-expo);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.service-card__icon {
  display: none;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-950);
  margin-bottom: 0.5rem;
}

.service-card__subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  font-weight: 500;
}

.service-card__features {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--gray-700);
}

.service-feature span {
  display: block;
}

.service-feature svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-600);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* FAQ Section */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  transition: all 300ms var(--ease-out-expo);
}

.faq-item:hover {
  background: var(--white);
  box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.06);
}

.faq-item[open] {
  background: var(--white);
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.1);
  border-color: rgba(234, 88, 12, 0.15);
}

.faq-question {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 1.75rem;
  margin: 0;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::before {
  content: "";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent-50), var(--accent-100));
  border: 1px solid rgba(234, 88, 12, 0.12);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out-expo);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c2410c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(-90deg);
}

.faq-item[open] .faq-question::before {
  transform: rotate(0deg);
  background: linear-gradient(135deg, var(--accent-100), var(--accent-200));
  border-color: rgba(234, 88, 12, 0.2);
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.12);
}

.faq-question::after {
  display: none;
}

.faq-item[open] .faq-question {
  margin-bottom: 0.625rem;
}

.faq-answer {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.65;
  padding-left: calc(28px + 0.625rem);
  margin: 0;
  animation: faqFadeIn 0.25s ease-in-out;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Extra-small phones ─────────────────────────────── */
@media (max-width: 380px) {
  .industry-sectors { gap: 0.375rem; }
  .industry-card { flex: 0 1 calc((100% - 0.375rem) / 2); }
  .industry-card { padding: 0.65rem 0.35rem; }
  .industry-card__name { font-size: 0.65rem; }

  .clients-logo-grid { gap: 0.375rem; }
  .clients-logo-grid__item { flex: 0 0 calc((100% - 0.75rem) / 3); max-width: calc((100% - 0.75rem) / 3); height: 58px; padding: 0.35rem 0.4rem; }
  .clients-logo-grid__item img { max-height: 30px; max-width: 64px; }

  .hero__video-toggle { padding: 0.28rem 0.55rem; font-size: 0.62rem; }
}

/* ── Landscape phones (e.g. iPhone SE landscape) ─────── */
@media (max-width: 768px) and (orientation: landscape) {
  .industry-sectors { gap: 0.4rem; }
  .industry-card { flex: 0 1 calc((100% - 5 * 0.4rem) / 6); }
  .industry-card { padding: 0.6rem 0.4rem; }
  .industry-card__name { font-size: 0.65rem; }
  .clients-logo-grid { gap: 0.5rem; }
  .clients-logo-grid__item { flex: 1 1 90px; max-width: 110px; height: 60px; }
  .clients-logo-grid__item img { max-height: 34px; }
}

.faq.section {
  padding: 3rem 0;
}

.faq .section__header {
  margin-bottom: 1.5rem;
}
