/* --- variables.css --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* ─── Color System ─── */
  /* Primary Dark Navy */
  --color-primary-900: #021733;
  --color-primary-800: #062B63;
  /* Brand Navy */
  --color-primary-700: #0c4391;
  --color-primary-600: #125bc0;
  --color-primary-500: #1b74f0;
  --color-primary-400: #4a90f5;
  /* added: was undefined */
  --color-primary-300: #7cb0f8;
  /* added: was undefined */

  /* Accent Orange */
  --color-accent-600: #E67300;
  /* Dark hover */
  --color-accent-500: #FF8A00;
  /* Brand Orange */
  --color-accent-400: #FFA233;
  --color-accent-300: #FFBA66;
  --color-accent-200: #FFD199;
  /* added: was undefined */

  /* Neutral Light */
  --color-neutral-100: #FFFFFF;
  --color-neutral-200: #F8FAFC;
  /* Section background */
  --color-neutral-300: #E5E7EB;
  /* Borders */
  --color-neutral-400: #CBD5E1;
  --color-neutral-500: #64748B;
  /* Muted text */
  --color-neutral-600: #475569;
  /* added: was undefined */

  /* Neutral Dark */
  --color-neutral-700: #334155;
  /* Body text */
  --color-neutral-800: #0F172A;
  /* Heading text */
  --color-neutral-900: #090D16;
  /* Near-black */

  /* Status Colors */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-info: #3B82F6;

  /* ─── Glassmorphism ─── */
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(6, 43, 99, 0.08);
  --glass-blur: 18px;
  --glass-dark-bg: rgba(6, 43, 99, 0.96);
  --glass-dark-border: rgba(255, 255, 255, 0.08);

  /* ─── Typography ─── */
  --font-headings: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Fluid Font Sizes (clamp) */
  --text-display-1: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  --text-display-2: clamp(2rem, 4vw + 1rem, 3.5rem);
  --text-h1: clamp(2rem, 6vw + 1rem, 4.5rem);
  --text-h2: clamp(1.75rem, 4vw + 1rem, 3rem);
  --text-h3: clamp(1.4rem, 2.5vw + 1rem, 2rem);
  --text-body: clamp(1rem, 0.5vw + 0.8rem, 1.25rem);
  --text-small: 16px;
  --text-hero-title: clamp(42px, 5vw, 72px);
  --text-xs: 13px;
  /* added: was undefined */
  --text-lg: 24px;
  /* added: was undefined */

  /* Font Weights */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Letter Spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0em;
  --tracking-wide: 0.06em;
  --tracking-widest: 0.12em;
  --tracking-wider: 0.08em;
  /* added: was undefined */

  /* ─── Spacing (8px baseline) ─── */
  --space-3xs: 4px;
  --space-2xs: 8px;
  --space-xs: 12px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  --space-section-sm: 60px;
  --space-section-md: 90px;
  --space-section-lg: 120px;

  /* ─── Shadows (navy-tinted) ─── */
  --shadow-xs: 0 1px 2px 0 rgba(10, 25, 50, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(10, 25, 50, 0.07), 0 2px 4px -1px rgba(10, 25, 50, 0.04);
  --shadow-md: 0 10px 15px -3px rgba(10, 25, 50, 0.09), 0 4px 6px -2px rgba(10, 25, 50, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(10, 25, 50, 0.13), 0 10px 10px -5px rgba(10, 25, 50, 0.07);
  --shadow-xl: 0 25px 50px -12px rgba(10, 25, 50, 0.20);
  --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

  /* ─── Border Radii ─── */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* ─── Borders ─── */
  --border-thin: 1px solid var(--color-neutral-300);
  --border-thick: 2px solid var(--color-neutral-300);

  /* ─── Transitions ─── */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.30s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.50s cubic-bezier(0.25, 1, 0.5, 1);

  /* ─── Focus Ring ─── */
  --focus-outline: 2px solid var(--color-accent-500);
  --focus-outline-offset: 3px;

  /* ─── Layout ─── */
  --header-height-desktop: 76px;
  --header-height-tablet: 68px;
  --header-height-mobile: 60px;
  --container-max: 1200px;
  --container-width: var(--container-max);
  /* added: was undefined */
  --container-pad: 24px;
  --grid-gap-main: 60px;
  --text-h4: 24px;
  --hero-lead-max-width: 640px;
}


/* --- base.css --- */
/* ─── Reset & Box Model ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-regular);
  line-height: 1.7;
  color: var(--color-neutral-700);
  background-color: var(--color-neutral-100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
  overflow-x: hidden;
}

/* ─── Headings ─── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: var(--weight-bold);
  line-height: 1.25;
  letter-spacing: var(--tracking-tight);
  color: var(--color-neutral-800);
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: var(--text-h1);
}

h2 {
  font-size: var(--text-h2);
}

h3 {
  font-size: var(--text-h3);
}

h4 {
  font-size: 1.1rem;
  font-weight: var(--weight-semibold);
}

h5 {
  font-size: 1rem;
  font-weight: var(--weight-semibold);
}

h6 {
  font-size: 0.9rem;
  font-weight: var(--weight-medium);
}

/* ─── Links ─── */
a {
  color: var(--color-primary-600);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent-500);
}

a:focus-visible {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
  border-radius: 2px;
}

/* ─── Paragraphs & Text ─── */
p {
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: var(--weight-semibold);
  color: var(--color-neutral-800);
}

em {
  font-style: italic;
}

small {
  font-size: var(--text-xs);
}

/* ─── Lists ─── */
ul,
ol {
  padding-left: 1.5em;
}

li {
  margin-bottom: var(--space-2xs);
}

/* ─── Images ─── */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ─── Forms baseline ─── */
input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
}

/* ─── Horizontal Rule ─── */
hr {
  border: none;
  border-top: var(--border-thin);
  margin: var(--space-lg) 0;
}

/* ─── Tables ─── */
table {
  border-collapse: collapse;
  width: 100%;
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── Utility: Visually hidden (accessible) ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Skip to main content ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--color-primary-800);
  color: white;
  padding: var(--space-xs) var(--space-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: var(--weight-semibold);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* ─── Selection ─── */
::selection {
  background-color: var(--color-accent-300);
  color: var(--color-primary-900);
}

/* ─── Scrollbar (Webkit) ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-neutral-200);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary-700);
  border-radius: var(--radius-full);
}


/* --- layout.css --- */
/* ═══════════════════════════════════════════════════════════════
   LAYOUT.CSS — Header, Footer, Page Sections, Container, Grid
   ═══════════════════════════════════════════════════════════════ */

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ─── Grid System ─── */
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gap-main);
}

.col-span-6 {
  grid-column: span 6;
}

.col-span-5 {
  grid-column: span 5;
}

.col-span-4 {
  grid-column: span 4;
}

.col-span-8 {
  grid-column: span 8;
}

.col-span-7 {
  grid-column: span 7;
}

.col-span-3 {
  grid-column: span 3;
}

.col-span-9 {
  grid-column: span 9;
}

.col-span-12 {
  grid-column: span 12;
}

.grid-auto-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: var(--space-lg);
}

.grid-auto-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--space-lg);
}

.grid-auto-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: var(--space-md);
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: start;
}

@media (max-width: 1024px) {
  .grid-12 {
    grid-template-columns: 1fr;
  }

  .col-span-6,
  .col-span-5,
  .col-span-4,
  .col-span-8,
  .col-span-7,
  .col-span-3,
  .col-span-9,
  .col-span-12 {
    grid-column: span 1;
  }
}

/* ─── Page Section Defaults ─── */
.section {
  padding-block: var(--space-section-md);
}

.section--sm {
  padding-block: var(--space-section-sm);
}

.section--lg {
  padding-block: var(--space-section-lg);
}

.section--light-gray {
  background-color: var(--color-neutral-200);
}

.section--navy {
  background: var(--color-primary-900);
  color: #fff;
}

.section--navy h2,
.section--navy h3,
.section--navy strong {
  color: #fff;
}

.section--navy p {
  color: rgba(255, 255, 255, 0.75);
}

/* ─── Section Header ─── */
.section-header {
  text-align: left;
  margin-bottom: var(--space-2xl);
  max-width: 680px;
  margin-inline: 0;
}

.section-header--left {
  text-align: left;
  margin-inline: 0;
}

.section-header__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-family: var(--font-headings);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent-500);
  background-color: rgba(255, 138, 0, 0.1);
  border: 1px solid rgba(255, 138, 0, 0.25);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.section--navy .section-header__tag {
  background-color: rgba(255, 138, 0, 0.15);
  border-color: rgba(255, 138, 0, 0.3);
  color: var(--color-accent-400);
}

.section-header__title {
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  color: var(--color-neutral-800);
  margin-bottom: var(--space-sm);
  line-height: 1.25;
}

.section--navy .section-header__title {
  color: #fff;
}

.section-header__lead {
  font-size: var(--text-body);
  color: var(--color-neutral-500);
  line-height: 1.75;
  margin-bottom: 0;
}

.section--navy .section-header__lead {
  color: rgba(255, 255, 255, 0.7);
}

/* ─── PAGE LAYOUT WRAPPER ─── */
.page-layout {
  min-height: 100vh;
}

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height-desktop);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  transition: box-shadow var(--transition-normal), background var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo__img {
  height: 42px !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important;
  max-height: 100% !important;
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-desktop__item {
  position: relative;
}

.nav-desktop__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 18px;
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-neutral-800);
  border-radius: 12px;
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.nav-desktop__link:hover,
.nav-desktop__link.active {
  color: #ff8c00;
  background: #fff5eb;
  border-radius: 12px;
}

.nav-desktop__link .nav-arrow {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.nav-desktop__item:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 580px;
  background: #fff;
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal), transform var(--transition-normal);
  z-index: 100;
}

.nav-desktop__item:hover .mega-menu,
.mega-menu:focus-within {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-menu__col-title {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-primary-800);
  margin-bottom: var(--space-xs);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-accent-500);
}

.mega-menu__link {
  display: flex;
  flex-direction: column;
  padding: var(--space-xs);
  border-radius: var(--radius-sm);
  color: var(--color-neutral-800);
  transition: background var(--transition-fast), color var(--transition-fast);
  margin-bottom: 2px;
}

.mega-menu__link:hover {
  background: #fff5eb;
  color: #ff8c00;
}

.mega-menu__link-name {
  font-family: var(--font-headings);
  font-size: 0.875rem;
  font-weight: var(--weight-semibold);
}

.mega-menu__link-hint {
  font-size: var(--text-xs);
  color: var(--color-neutral-500);
  margin-top: 1px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.header-search-btn,
.header-hamburger {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--color-neutral-800);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.header-search-btn:hover,
.header-hamburger:hover {
  background: var(--color-neutral-200);
  color: var(--color-accent-500);
}

.header-search-btn svg,
.header-hamburger svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.header-hamburger {
  display: none;
}

/* ─── MOBILE DRAWER ─── */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
}

.mobile-drawer.open {
  visibility: visible;
}

.mobile-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 23, 51, 0.6);
  opacity: 0;
  transition: opacity var(--transition-normal);
  backdrop-filter: blur(4px);
}

.mobile-drawer.open .mobile-drawer__overlay {
  opacity: 1;
}

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 90vw);
  background: #fff;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer.open .mobile-drawer__panel {
  transform: translateX(0);
}

.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  border-bottom: var(--border-thin);
  flex-shrink: 0;
}

.mobile-drawer__head img {
  height: 40px;
  width: auto;
}

.mobile-drawer__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--color-neutral-200);
  border-radius: var(--radius-full);
  color: var(--color-neutral-800);
}

.mobile-drawer__close:hover {
  background: var(--color-neutral-300);
}

.mobile-drawer__close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.mobile-nav {
  list-style: none;
  padding: var(--space-md);
  flex: 1;
}

.mobile-nav__item {
  border-bottom: 1px solid var(--color-neutral-200);
}

.mobile-nav__link {
  display: block;
  padding: var(--space-sm) var(--space-xs);
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-neutral-800);
  transition: color var(--transition-fast);
}

.mobile-nav__link:hover {
  color: var(--color-accent-500);
}

.mobile-drawer__cta {
  padding: var(--space-md);
  border-top: var(--border-thin);
  flex-shrink: 0;
}

.mobile-drawer__cta .btn {
  width: 100%;
  justify-content: center;
}

/* ─── MOBILE FLOATING CTA ─── */
.mobile-fab {
  display: none;
  position: fixed;
  bottom: var(--space-md);
  left: 0;
  right: 0;
  z-index: 900;
  padding-inline: var(--space-md);
  gap: var(--space-xs);
  pointer-events: none;
}

.mobile-fab__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 14px var(--space-sm);
  border-radius: var(--radius-full);
  font-family: var(--font-headings);
  font-weight: var(--weight-semibold);
  font-size: 0.9rem;
  color: #fff;
  border: none;
  box-shadow: var(--shadow-lg);
  pointer-events: all;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.mobile-fab__btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.mobile-fab__btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.mobile-fab__btn--call {
  background: var(--color-primary-800);
}

.mobile-fab__btn--wa {
  background: #25d366;
}

/* ─── FOOTER ─── */
.site-footer {
  background-color: var(--color-primary-900);
  color: #ffffff;
  padding-top: var(--space-3xl);
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #ffffff;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: var(--space-md);
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-size: var(--text-small);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  color: #dbeafe;
}

.footer-links-connect {
  display: flex;
  gap: var(--space-xs);
}

.footer-link-connect {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.75);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.footer-link-connect:hover {
  background: var(--color-accent-500);
  border-color: var(--color-accent-500);
  color: #fff;
}

.footer-link-connect svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-col-title {
  font-family: var(--font-headings);
  font-size: 0.875rem;
  font-weight: var(--weight-bold);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-link {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: var(--color-accent-400);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-contact-item {
  display: flex;
  gap: var(--space-xs);
  align-items: flex-start;
  font-size: var(--text-small);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-accent-400);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  color: #dbeafe;
  line-height: 1.5;
}

.footer-hours {
  margin-top: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  background: rgba(255, 138, 0, 0.1);
  border: 1px solid rgba(255, 138, 0, 0.2);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  color: var(--color-accent-300);
}

.footer-hours strong {
  display: block;
  color: var(--color-accent-400);
  margin-bottom: 2px;
}

.footer-map-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
  padding: 8px var(--space-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.footer-map-btn:hover {
  background: var(--color-accent-500);
  border-color: var(--color-accent-500);
  color: #fff;
}

.footer-map-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-block: var(--space-md);
}

.footer-copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
}

.footer-cert {
  font-size: var(--text-xs);
  color: var(--color-accent-400);
  font-weight: var(--weight-semibold);
}

.footer-legal-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.footer-legal-link {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal-link:hover {
  color: var(--color-accent-400);
}

/* ─── Breadcrumb ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  color: var(--color-neutral-500);
  padding: var(--space-sm) 0;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb__item+.breadcrumb__item::before {
  content: '/';
  color: var(--color-neutral-400);
  margin-right: 6px;
}

.breadcrumb__link {
  color: var(--color-neutral-500);
}

.breadcrumb__link:hover {
  color: var(--color-accent-500);
}

.breadcrumb__current {
  color: var(--color-neutral-800);
  font-weight: var(--weight-medium);
}

/* ─── Page Hero Banner (inner pages) ───
   NOTE: this used to be defined twice (here and again ~1100 lines down,
   plus a third partial override in a hotfix block at the end of the file).
   Consolidated into ONE definition below at its final line. The texture
   background (::before) and wave/breadcrumb rules stay here since nothing
   else redefines them. */
.page-hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.page-hero__wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.page-hero__wave .shape-fill {
  fill: #ffffff;
}

/* Breadcrumbs on dark backgrounds */
.page-hero .breadcrumb__link {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumb__link:hover {
  color: var(--color-accent-400);
}

.page-hero .breadcrumb__current {
  color: var(--color-neutral-100);
}

.page-hero .breadcrumb__item+.breadcrumb__item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* ─── Responsive ─── */
@media (max-width: 1439px) {
  .nav-desktop {
    gap: 28px;
  }

  .nav-desktop__link {
    font-size: 17px;
    padding: 10px 14px;
  }
}

@media (max-width: 1279px) {
  .nav-desktop {
    gap: 22px;
  }

  .nav-desktop__link {
    font-size: 16px;
  }

  .header-actions .btn {
    padding: 14px 26px;
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .header-hamburger {
    display: flex;
  }

  .nav-desktop,
  .header-search-btn {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: var(--header-height-mobile);
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .mobile-fab {
    display: flex;
  }

  .section {
    padding-block: var(--space-section-sm);
  }

  .page-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
}


/* --- components.css --- */
/* ═══════════════════════════════════════════════════════════════
   COMPONENTS.CSS — Buttons, Cards, Forms, Accordion, Slider,
                    Lightbox, Badges, Stats, Hero, Gallery, etc.
   ═══════════════════════════════════════════════════════════════ */

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 16px 34px;
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.01em;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), color var(--transition-fast),
    border-color var(--transition-fast);
  white-space: nowrap;
  height: 56px;
  line-height: 1;
}

.btn:focus-visible {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--color-accent-500);
  border-color: var(--color-accent-500);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 138, 0, 0.3);
}

.btn--primary:hover {
  background: var(--color-accent-600);
  border-color: var(--color-accent-600);
  box-shadow: 0 6px 20px rgba(255, 138, 0, 0.4);
  color: #fff;
}

.btn--secondary {
  background: transparent;
  border-color: var(--color-primary-800);
  color: var(--color-primary-800);
}

.btn--secondary:hover {
  background: var(--color-primary-800);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn--navy {
  background: var(--color-primary-800);
  border-color: var(--color-primary-800);
  color: #fff;
}

.btn--navy:hover {
  background: var(--color-primary-900);
  border-color: var(--color-primary-900);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--small {
  padding: 8px var(--space-md);
  font-size: var(--text-xs);
  min-height: 36px;
}

.btn--large {
  padding: 16px var(--space-xl);
  font-size: 1rem;
}

.btn--icon-only {
  padding: 10px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--small svg {
  width: 14px;
  height: 14px;
}

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary-900);
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero__slide.active {
  opacity: 1;
  pointer-events: all;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.hero__slide.active .hero__bg {
  transform: scale(1);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(2, 23, 51, 0.88) 0%, rgba(6, 43, 99, 0.65) 60%, rgba(6, 43, 99, 0.3) 100%);
}

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: var(--space-3xl);
}

.hero__content {
  max-width: 620px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent-400);
  margin-bottom: var(--space-md);
}

.hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color-accent-500);
}

.hero__title {
  font-size: clamp(2rem, 4vw + 1rem, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-md);
  overflow-wrap: break-word;
}

.hero__title em {
  font-style: normal;
  color: var(--color-accent-400);
}

.hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  max-width: var(--hero-lead-max-width, 640px);
}


.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero__image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__product-img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Hero Scroll Indicator */
.hero__scroll-cue {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

.hero__scroll-cue svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* Hero Controls */
.hero__controls {
  position: absolute;
  bottom: var(--space-2xl);
  right: var(--space-xl);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), width var(--transition-fast);
  padding: 0;
}

.hero__dot.active {
  background: var(--color-accent-500);
  width: 24px;
}

.hero__arrow {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.hero__arrow:hover {
  background: var(--color-accent-500);
  border-color: var(--color-accent-500);
}

.hero__arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* ─── STATS STRIP ─── */
.stats-strip {
  background: linear-gradient(90deg, var(--color-primary-800) 0%, var(--color-primary-700) 100%);
  padding-block: var(--space-xl);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item+.stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-num {
  display: block;
  font-family: var(--font-headings);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--weight-bold);
  color: var(--color-accent-400);
  line-height: 1;
  margin-bottom: var(--space-2xs);
}

.stat-label {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--weight-medium);
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--space-lg);
  }

  .stat-item:nth-child(2)::before,
  .stat-item:nth-child(4)::before {
    display: none;
  }
}

/* ─── PRODUCT CARDS ─── */
.product-card {
  background: #fff;
  border: var(--border-thin);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

a.product-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.product-card:hover {
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-700);
}

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-neutral-200);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__img {
  transform: scale(1.04);
}

.product-card__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--color-accent-500);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
}

.product-card__category {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: rgba(6, 43, 99, 0.85);
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.product-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__title {
  font-size: 1rem;
  font-weight: var(--weight-bold);
  color: var(--color-neutral-800);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.product-card__desc {
  font-size: var(--text-small);
  color: var(--color-neutral-500);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  flex: 1;
}

.product-card__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
  background: var(--color-neutral-200);
  border-radius: var(--radius-sm);
  padding: var(--space-xs);
  margin-bottom: var(--space-md);
}

.product-card__spec {
  text-align: center;
}

.product-card__spec-val {
  display: block;
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: var(--weight-bold);
  color: var(--color-primary-800);
}

.product-card__spec-lbl {
  display: block;
  font-size: 10px;
  color: var(--color-neutral-500);
  margin-top: 1px;
}

.product-card__price {
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: var(--weight-semibold);
  color: var(--color-accent-600);
  margin-bottom: var(--space-sm);
}

.product-card__footer {
  margin-top: auto;
}

.product-card__footer .btn {
  width: 100%;
}

/* ─── FEATURE CARDS (Why-Choose-Us) ─── */
.feature-card {
  background: #fff;
  border: var(--border-thin);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-600);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(6, 43, 99, 0.08) 0%, rgba(255, 138, 0, 0.08) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}

.feature-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-primary-800);
  fill: none;
  stroke-width: 1.75;
}

.feature-card__title {
  font-size: 1rem;
  font-weight: var(--weight-bold);
  color: var(--color-neutral-800);
  margin-bottom: var(--space-xs);
}

.feature-card__desc {
  font-size: var(--text-small);
  color: var(--color-neutral-500);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ─── TESTIMONIAL CARD ─── */
.testimonial-card {
  background: #fff;
  border: var(--border-thin);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card__quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.7;
  color: var(--color-accent-400);
  flex-shrink: 0;
  user-select: none;
}

.testimonial-card__stars {
  color: var(--color-accent-500);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: var(--text-body);
  color: var(--color-neutral-700);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: auto;
}

.testimonial-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--color-primary-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-headings);
  font-weight: var(--weight-bold);
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__name {
  font-weight: var(--weight-semibold);
  font-size: 0.9rem;
  color: var(--color-neutral-800);
  line-height: 1.3;
}

.testimonial-card__meta {
  font-size: var(--text-xs);
  color: var(--color-neutral-500);
}

/* Testimonial Slider */
.testimonial-slider-wrap {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-track .testimonial-card {
  flex: 0 0 100%;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-neutral-300);
  border-radius: var(--radius-full);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-neutral-800);
  transition: all var(--transition-fast);
}

.slider-arrow:hover {
  border-color: var(--color-accent-500);
  color: var(--color-accent-500);
  background: rgba(255, 138, 0, 0.05);
}

.slider-arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.slider-dots {
  display: flex;
  gap: var(--space-2xs);
  align-items: center;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-neutral-300);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background: var(--color-accent-500);
  width: 24px;
}

/* ─── ACCORDION ─── */
.accordion {
  border: var(--border-thin);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.accordion__item {
  border-bottom: var(--border-thin);
}

.accordion__item:last-child {
  border-bottom: none;
}

.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  background: #fff;
  cursor: pointer;
  gap: var(--space-md);
  transition: background var(--transition-fast);
  border: none;
  width: 100%;
  text-align: left;
}

.accordion__header:hover {
  background: var(--color-neutral-200);
}

.accordion__header[aria-expanded="true"] {
  background: rgba(255, 138, 0, 0.04);
}

.accordion__question {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: var(--weight-semibold);
  color: var(--color-neutral-800);
  line-height: 1.4;
  flex: 1;
}

.accordion__header[aria-expanded="true"] .accordion__question {
  color: var(--color-primary-800);
}

.accordion__icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--color-neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.accordion__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-neutral-700);
  fill: none;
  stroke-width: 2.5;
  transition: transform var(--transition-fast);
}

.accordion__header[aria-expanded="true"] .accordion__icon {
  background: var(--color-accent-500);
  transform: rotate(180deg);
}

.accordion__header[aria-expanded="true"] .accordion__icon svg {
  stroke: #fff;
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition-normal);
}

.accordion__body.open {
  max-height: 600px;
}

.accordion__answer {
  padding: 0 var(--space-lg) var(--space-md);
  font-size: var(--text-body);
  color: var(--color-neutral-700);
  line-height: 1.75;
}

.accordion__answer p:last-child {
  margin-bottom: 0;
}

/* Category accordion group */
.accordion-category {
  margin-bottom: var(--space-lg);
}

.accordion-category-title {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-primary-800);
  padding: var(--space-sm) var(--space-md);
  background: rgba(6, 43, 99, 0.05);
  border-left: 3px solid var(--color-accent-500);
  margin-bottom: var(--space-xs);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* FAQ Search */
.faq-search-wrap {
  position: relative;
  margin-bottom: var(--space-xl);
}

.faq-search {
  width: 100%;
  padding: 14px var(--space-md) 14px 52px;
  font-size: var(--text-body);
  border: 2px solid var(--color-neutral-300);
  border-radius: var(--radius-full);
  background: #fff;
  color: var(--color-neutral-800);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-search:focus {
  outline: none;
  border-color: var(--color-primary-600);
  box-shadow: 0 0 0 4px rgba(6, 43, 99, 0.08);
}

.faq-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  stroke: var(--color-neutral-500);
  fill: none;
  stroke-width: 2;
  pointer-events: none;
}

/* ─── GALLERY ─── */
.gallery-grid {
  columns: 3;
  column-gap: var(--space-md);
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-md);
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 43, 99, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-sm);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__title {
  color: #fff;
  font-size: 0.85rem;
  font-weight: var(--weight-semibold);
  font-family: var(--font-headings);
}

.gallery-item__cat {
  color: var(--color-accent-300);
  font-size: var(--text-xs);
}

/* Gallery Filter */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}

.gallery-filter-btn {
  padding: 8px var(--space-md);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-neutral-300);
  background: #fff;
  font-size: var(--text-small);
  font-weight: var(--weight-semibold);
  color: var(--color-neutral-700);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--color-primary-800);
  border-color: var(--color-primary-800);
  color: #fff;
}

@media (max-width: 768px) {
  .gallery-grid {
    columns: 2;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    columns: 1;
  }
}

/* ─── LIGHTBOX MODAL ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(2, 9, 28, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__inner {
  position: relative;
  max-width: min(1000px, 95vw);
  max-height: 90vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.lightbox__img-wrap {
  position: relative;
  max-height: 75vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.lightbox__img {
  max-height: 75vh;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.lightbox__caption {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-small);
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.lightbox__close:hover {
  background: var(--color-error);
  border-color: var(--color-error);
}

.lightbox__close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.lightbox__prev {
  left: -60px;
}

.lightbox__next {
  right: -60px;
}

.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--color-accent-500);
  border-color: var(--color-accent-500);
}

.lightbox__prev svg,
.lightbox__next svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

@media (max-width: 768px) {
  .lightbox__prev {
    left: var(--space-sm);
  }

  .lightbox__next {
    right: var(--space-sm);
  }
}

/* ─── AWARDS CARDS ─── */
.award-card {
  background: #fff;
  border: var(--border-thin);
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.award-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.award-card__img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--color-neutral-200);
}

.award-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.award-card:hover .award-card__img {
  transform: scale(1.04);
}

.award-card__body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.award-card__year {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent-500);
  margin-bottom: var(--space-2xs);
}

.award-card__title {
  font-size: 1rem;
  font-weight: var(--weight-bold);
  color: var(--color-neutral-800);
  margin-bottom: var(--space-xs);
}

.award-card__desc {
  font-size: var(--text-small);
  color: var(--color-neutral-500);
  line-height: 1.6;
  flex: 1;
}

.award-card__footer {
  margin-top: var(--space-sm);
}

.award-card__view-btn {
  font-size: var(--text-xs);
  color: var(--color-primary-700);
  font-weight: var(--weight-semibold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.award-card__view-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* Cert Cards */
.cert-card {
  display: flex;
  gap: var(--space-lg);
  background: #fff;
  border: var(--border-thin);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal);
  align-items: center;
}

.cert-card:hover {
  box-shadow: var(--shadow-md);
}

.cert-card__img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.cert-card__title {
  font-size: 1.1rem;
  font-weight: var(--weight-bold);
  color: var(--color-neutral-800);
  margin-bottom: var(--space-xs);
}

.cert-card__desc {
  font-size: var(--text-small);
  color: var(--color-neutral-500);
  margin-bottom: var(--space-xs);
}

.cert-card__meta {
  font-size: var(--text-xs);
  color: var(--color-neutral-400);
}

/* ─── FORMS ─── */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  position: relative;
}

.form-label {
  display: block;
  font-size: var(--text-small);
  font-weight: var(--weight-semibold);
  color: var(--color-neutral-700);
  margin-bottom: var(--space-2xs);
}

.form-label .required {
  color: var(--color-error);
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: 13px var(--space-md);
  font-size: var(--text-body);
  color: var(--color-neutral-800);
  background: #fff;
  border: 2px solid var(--color-neutral-300);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary-600);
  box-shadow: 0 0 0 4px rgba(6, 43, 99, 0.08);
}

.form-input::placeholder {
  color: var(--color-neutral-400);
}

.form-input.error {
  border-color: var(--color-error);
}

.form-input.error:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-input.success {
  border-color: var(--color-success);
}

.form-error {
  font-size: var(--text-xs);
  color: var(--color-error);
  margin-top: 4px;
  display: none;
}

.form-input.error+.form-error {
  display: block;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: '';
  position: absolute;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--color-neutral-500);
  pointer-events: none;
}

.form-select {
  cursor: pointer;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
  background: rgba(16, 185, 129, 0.06);
  border: 2px solid var(--color-success);
  border-radius: var(--radius-lg);
  color: var(--color-success);
}

.form-success.visible {
  display: block;
}

.form-success svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-success);
  fill: none;
  stroke-width: 1.5;
  margin-inline: auto;
  margin-bottom: var(--space-md);
}

.form-success h3 {
  color: var(--color-success);
}

/* Star Rating */
.star-rating {
  display: flex;
  gap: 4px;
}

.star-rating__star {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-neutral-300);
  transition: color var(--transition-fast), transform var(--transition-fast);
  border: none;
  background: none;
  padding: 0;
}

.star-rating__star:hover,
.star-rating__star.selected,
.star-rating__star.filled {
  color: var(--color-accent-500);
  transform: scale(1.1);
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-left {
  transform: translateX(-30px);
}

.reveal-left.visible {
  transform: translateX(0);
}

.reveal-right {
  transform: translateX(30px);
}

.reveal-right.visible {
  transform: translateX(0);
}

/* ─── TIMELINE ─── */
.timeline {
  position: relative;
  padding-left: var(--space-2xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary-800), var(--color-accent-500));
}

.timeline__item {
  position: relative;
  margin-bottom: var(--space-2xl);
}

.timeline__dot {
  position: absolute;
  left: calc(-1 * var(--space-2xl) + 12px);
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: var(--color-primary-800);
  border: 3px solid var(--color-accent-500);
  box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.15);
}

.timeline__year {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent-500);
  margin-bottom: var(--space-2xs);
}

.timeline__title {
  font-size: 1rem;
  font-weight: var(--weight-bold);
  color: var(--color-neutral-800);
  margin-bottom: var(--space-xs);
}

.timeline__desc {
  font-size: var(--text-small);
  color: var(--color-neutral-500);
  line-height: 1.65;
}

/* ─── TEAM CARDS ─── */
.team-card {
  background: #fff;
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-decoration: none;
  display: block;
  color: inherit;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-card__photo {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-full);
  object-fit: cover;
  margin-inline: auto;
  margin-bottom: var(--space-md);
  border: 3px solid var(--color-accent-400);
  box-shadow: var(--shadow-md);
}

.team-card__photo-placeholder {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary-800), var(--color-primary-600));
  margin-inline: auto;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-headings);
  font-weight: var(--weight-bold);
  font-size: 1.5rem;
}

.team-card__name {
  font-size: 1rem;
  font-weight: var(--weight-bold);
  color: var(--color-neutral-800);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: var(--text-small);
  color: var(--color-accent-500);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-sm);
}

.team-card__bio {
  font-size: var(--text-small);
  color: var(--color-neutral-500);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ─── SERVICE CARDS REMOVED DUPLICATION ─── */

/* ─── PRODUCT DETAIL (image gallery viewer) ─── */
.pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pdp-viewer {
  width: 100%;
  aspect-ratio: 4/3;
  border: var(--border-thin);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-neutral-200);
}

.pdp-viewer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.pdp-viewer:hover img {
  transform: scale(1.03);
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
}

.pdp-thumb {
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity var(--transition-fast), border-color var(--transition-fast);
}

.pdp-thumb:hover,
.pdp-thumb.active {
  opacity: 1;
  border-color: var(--color-accent-500);
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-block: var(--space-md);
}

.specs-table tr {
  border-bottom: 1px solid var(--color-neutral-200);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table tr:nth-child(even) {
  background: var(--color-neutral-200);
}

.specs-table td {
  padding: 10px var(--space-sm);
  font-size: var(--text-small);
}

.specs-table td:first-child {
  font-weight: var(--weight-semibold);
  color: var(--color-primary-900);
  width: 42%;
}

/* Tabs */
.pdp-tabs {
  display: flex;
  border-bottom: 2px solid var(--color-neutral-300);
  list-style: none;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  overflow-x: auto;
}

.pdp-tab {
  padding: 12px 6px;
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: var(--weight-bold);
  cursor: pointer;
  position: relative;
  color: var(--color-neutral-500);
  border: none;
  background: none;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.pdp-tab:hover,
.pdp-tab.active {
  color: var(--color-accent-500);
}

.pdp-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent-500);
}

.pdp-panel {
  display: none;
  animation: panelFade 0.3s ease;
}

.pdp-panel.active {
  display: block;
}

@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: var(--text-small);
  color: var(--color-neutral-700);
  line-height: 1.5;
}

.feature-list__item::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF8A00' stroke-width='2.5'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E") no-repeat center/contain;
}

/* Download card */
.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  background: var(--color-neutral-200);
  border: var(--border-thin);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.download-card:hover {
  border-color: var(--color-accent-400);
  background: #fff;
}

.download-card__info {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.download-card__icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 138, 0, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent-500);
  fill: none;
  stroke-width: 2;
}

.download-card__name {
  font-weight: var(--weight-semibold);
  font-size: var(--text-small);
  color: var(--color-neutral-800);
}

.download-card__meta {
  font-size: var(--text-xs);
  color: var(--color-neutral-500);
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-800) 0%, var(--color-primary-900) 100%);
  padding-block: var(--space-3xl);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(255, 138, 0, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: var(--space-sm);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: var(--space-xl);
  max-width: 580px;
  margin-inline: 0;
}

.cta-section .cta-actions {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cta-map-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.cta-map-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
}

/* ─── COUNTRY CARDS ABOVE MAP ─── */
.export-countries-wrap {
  width: 100%;
  max-width: 860px;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
}

.country-cards-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 8px;
  width: 100%;
  flex-wrap: wrap;
}

.country-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 72px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(245, 166, 35, 0.70);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 8px;
  box-sizing: border-box;
}

.country-card-check {
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: 10px;
  color: #F5A623;
}

.country-flag {
  width: 24px;
  height: 16px;
  margin-bottom: 4px;
  object-fit: cover;
  border-radius: 1px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.country-name {
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  color: #FFFFFF !important;
  line-height: 1.2;
}

.country-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #F5A623;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1025px) {
  .cta-map-wrap .country-cards-row {
    flex-wrap: nowrap !important;
    justify-content: center !important;
  }

  .cta-map-wrap .country-card {
    width: auto !important;
    flex: 1 1 0% !important;
    min-width: 0 !important;
    max-width: 90px !important;
    padding: var(--space-3xs) 2px !important;
    height: 64px !important;
  }

  .cta-map-wrap .country-flag {
    width: 20px !important;
    height: 12px !important;
    margin-bottom: 2px !important;
  }

  .cta-map-wrap .country-name {
    font-size: 9px !important;
  }
}

/* ─── PAGE BADGES ─── */
.iso-badge-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 6px var(--space-sm);
  background: rgba(6, 43, 99, 0.06);
  border: 1px solid rgba(6, 43, 99, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-primary-800);
}

.cert-badge img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.hero__content .cert-badge {
  background: rgba(2, 23, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* ─── PAGE HERO (single consolidated definition) ───
   Previously split across 3 locations in the source file (a base
   rule, a full re-declaration, and an !important hotfix patch).
   Merged here into the values that were actually winning the
   cascade, so the rendered result is unchanged. */
.page-hero {
  background: linear-gradient(130deg, var(--color-primary-900) 0%, var(--color-primary-800) 60%, var(--color-primary-700) 100%);
  padding: var(--space-2xl) 0 var(--space-3xl);
  min-height: auto;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="none"/><path d="M0 60L60 0M-10 10L10-10M50 70L70 50" stroke="rgba(255,255,255,0.04)" stroke-width="1"/></svg>') repeat;
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent-400);
  margin-bottom: var(--space-sm);
}

.page-hero__title {
  font-size: clamp(2rem, 4vw + 1rem, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--space-sm);
  overflow-wrap: break-word;
}

.page-hero__lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-lg);
  max-width: var(--hero-lead-max-width, 640px);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 320px;
  }
}

/* ─── TIMELINE ─── */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: var(--space-2xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent-400), var(--color-primary-300));
}

.timeline__item {
  position: relative;
  margin-bottom: var(--space-2xl);
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: calc(-1 * var(--space-2xl) + 2px);
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent-500);
  border: 3px solid var(--color-neutral-100);
  box-shadow: 0 0 0 3px var(--color-accent-200);
  transform: translateX(-50%);
}

.timeline__year {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-accent-600);
  margin-bottom: 4px;
}

.timeline__title {
  font-size: var(--text-h4);
  margin-bottom: var(--space-xs);
}

.timeline__desc {
  color: var(--color-neutral-600);
  font-size: var(--text-small);
  line-height: 1.6;
  margin: 0;
}

/* ─── TEAM CARDS ─── */
.team-card {
  background: var(--color-neutral-100);
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.team-card__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-accent-300);
  margin: 0 auto var(--space-sm);
  display: block;
}

.team-card__photo-placeholder {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-700), var(--color-primary-800));
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.team-card__name {
  font-size: var(--text-h4);
  margin-bottom: 2px;
}

.team-card__role {
  font-size: var(--text-xs);
  color: var(--color-accent-600);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.team-card__bio {
  font-size: var(--text-small);
  color: var(--color-neutral-600);
  line-height: 1.6;
  margin: 0;
}

/* ─── SERVICE CARDS ─── */
.service-card {
  display: flex;
  gap: var(--space-lg);
  background: var(--color-neutral-100);
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-400), var(--color-accent-600));
  color: #fff;
  font-family: var(--font-headings);
  font-weight: var(--weight-bold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__title {
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
}

.service-card__desc {
  color: var(--color-neutral-600);
  font-size: var(--text-small);
  line-height: 1.6;
  margin: 0;
}

/* ─── AWARD & CERT CARDS ─── */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: var(--space-xl);
}

.award-card {
  background: var(--color-neutral-100);
  border: var(--border-thin);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.award-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.award-card__img-wrap {
  overflow: hidden;
}

.award-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform var(--transition-slow);
  display: block;
}

.award-card:hover .award-card__img {
  transform: scale(1.04);
}

.award-card__body {
  padding: var(--space-lg);
}

.award-card__year {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-accent-600);
  margin-bottom: 4px;
}

.award-card__title {
  font-size: var(--text-h4);
  margin-bottom: var(--space-xs);
}

.award-card__org {
  font-size: var(--text-xs);
  color: var(--color-neutral-500);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-sm);
}

.award-card__desc {
  font-size: var(--text-small);
  color: var(--color-neutral-600);
  line-height: 1.6;
  margin: 0;
}

.cert-card {
  background: var(--color-neutral-100);
  border: var(--border-thin);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--transition-normal), transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.cert-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.cert-card__img-wrap {
  background: var(--color-neutral-200);
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.cert-card__img {
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
}

.cert-card__body {
  padding: var(--space-lg);
  flex: 1;
}

.cert-card__title {
  font-size: var(--text-h4);
  margin-bottom: 4px;
}

.cert-card__org {
  font-size: var(--text-xs);
  color: var(--color-neutral-500);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-sm);
}

.cert-card__desc {
  font-size: var(--text-small);
  color: var(--color-neutral-600);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.cert-card__badge {
  display: inline-block;
  padding: 4px var(--space-sm);
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

/* ─── CATALOG FILTER ─── */
.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-2xl);
}

.catalog-filter-btn {
  padding: 8px var(--space-md);
  border: 2px solid var(--color-neutral-300);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--color-neutral-600);
  font-family: var(--font-headings);
  font-weight: var(--weight-semibold);
  font-size: var(--text-small);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.catalog-filter-btn:hover {
  border-color: var(--color-accent-400);
  color: var(--color-accent-600);
}

.catalog-filter-btn.active {
  background: var(--color-primary-800);
  border-color: var(--color-primary-800);
  color: #fff;
}

/* ─── GALLERY FILTER + GRID ─── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-2xl);
}

.gallery-filter-btn {
  padding: 8px var(--space-md);
  border: 2px solid var(--color-neutral-300);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--color-neutral-600);
  font-family: var(--font-headings);
  font-weight: var(--weight-semibold);
  font-size: var(--text-small);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-filter-btn:hover {
  border-color: var(--color-accent-400);
  color: var(--color-accent-600);
}

.gallery-filter-btn.active {
  background: var(--color-primary-800);
  border-color: var(--color-primary-800);
  color: #fff;
}

.gallery-grid {
  columns: 3 280px;
  gap: var(--space-md);
}

.gallery-item {
  break-inside: avoid;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  margin-bottom: var(--space-md);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 43, 99, 0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__title {
  color: #fff;
  font-size: var(--text-small);
  font-weight: var(--weight-bold);
  margin: 0;
}

.gallery-item__cat {
  color: var(--color-accent-400);
  font-size: var(--text-xs);
  margin: 2px 0 0;
}

/* ─── FAQ SEARCH ─── */
.faq-search-wrap {
  position: relative;
  margin-bottom: var(--space-2xl);
}

.faq-search-icon {
  position: absolute;
  left: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  stroke: var(--color-neutral-500);
  fill: none;
  stroke-width: 2;
  pointer-events: none;
}

.faq-search {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 2px solid var(--color-neutral-300);
  border-radius: var(--radius-full);
  font-size: 1rem;
  background: var(--color-neutral-100);
  transition: border-color var(--transition-fast);
}

.faq-search:focus {
  outline: none;
  border-color: var(--color-accent-500);
}

/* ─── ACCORDION CATEGORIES ─── */
.accordion-category {
  margin-bottom: var(--space-2xl);
}

.accordion-category-title {
  font-family: var(--font-headings);
  font-size: var(--text-h3);
  font-weight: var(--weight-bold);
  color: var(--color-primary-800);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 3px solid var(--color-accent-400);
  display: inline-block;
}

/* ─── PDP (PRODUCT DETAIL) STYLES ─── */
.pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pdp-viewer {
  width: 100%;
  aspect-ratio: 4/3;
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-neutral-200);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-normal);
}

.pdp-viewer:hover {
  box-shadow: var(--shadow-lg);
}

.pdp-viewer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition-fast), transform var(--transition-slow);
}

.pdp-viewer:hover img {
  transform: scale(1.03);
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.pdp-thumb {
  aspect-ratio: 1;
  border: 2px solid var(--color-neutral-300);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.pdp-thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
  border-color: var(--color-accent-400);
}

.pdp-thumb.active {
  opacity: 1;
  border-color: var(--color-accent-500);
  box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.2);
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-caption-detail {
  display: none;
}

.pdp-viewer figcaption .pdp-caption-detail {
  display: block;
  margin-top: var(--space-xs);
  font-weight: var(--weight-regular);
  font-size: 0.9em;
  line-height: 1.4;
  opacity: 0.85;
}

.pdp-caption-thumb-title {
  display: block;
  font-weight: var(--weight-bold);
}

.pdp-viewer figcaption .pdp-caption-thumb-title {
  display: none;
}




/* --- SUB-NAVIGATION --- */
.sub-nav {
  position: sticky;
  top: var(--header-height-desktop);
  background: var(--color-neutral-100);
  border-bottom: 1px solid var(--color-neutral-300);
  z-index: 999;
  padding-block: var(--space-xs);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.sub-nav__container {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.sub-nav__link {
  font-family: var(--font-headings);
  font-weight: var(--weight-bold);
  font-size: var(--text-small);
  color: var(--color-neutral-600);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.sub-nav__link:hover {
  color: var(--color-primary-800);
  background: var(--color-neutral-200);
}

@media (max-width: 1024px) {
  .sub-nav {
    top: var(--header-height-tablet);
  }
}

@media (max-width: 768px) {
  .sub-nav {
    display: none;
  }
}

/* --- ABOUT HIGHLIGHTS CARD GRID --- */
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  width: 100%;
}

@media (max-width: 1024px) {
  .about-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* --- VALUE PROPOSITION / BENEFITS GRID --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  width: 100%;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* --- FEATURES GRID DASHBOARD --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  width: 100%;
}

.feature-mini-card {
  background: var(--color-neutral-100);
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-3xs);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.feature-mini-card:hover {
  border-color: var(--color-primary-400);
  box-shadow: var(--shadow-sm);
}

.feature-mini-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-primary-900);
}

.feature-mini-card__header strong {
  font-size: var(--text-small);
  font-weight: var(--weight-bold);
}

.feature-mini-card p {
  font-size: var(--text-xs);
  color: var(--color-neutral-600);
  line-height: 1.5;
  margin: 0;
}

.feature-mini-card__header svg {
  color: var(--color-accent-500);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr !important;
  }
}

/* --- STICKY CTA BAR --- */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-neutral-300);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
  z-index: 999;
  padding-block: var(--space-xs);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.sticky-cta-bar.is-visible {
  transform: translateY(0);
}

.sticky-cta-bar__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding-inline: var(--container-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.sticky-cta-bar__info {
  display: flex;
  flex-direction: column;
}

.sticky-cta-bar__title {
  font-weight: var(--weight-bold);
  color: var(--color-primary-900);
  font-size: var(--text-small);
}

.sticky-cta-bar__price {
  font-size: var(--text-xs);
  color: var(--color-accent-600);
  font-weight: var(--weight-medium);
}

.sticky-cta-bar__actions {
  display: flex;
  gap: var(--space-xs);
}

@media (max-width: 768px) {
  .sticky-cta-bar__info {
    display: none;
  }

  .sticky-cta-bar__container {
    justify-content: center;
  }
}

/* --- ACCORDION OVERRIDES (DESKTOP) --- */
@media (min-width: 1025px) {
  .specs-accordion__trigger {
    pointer-events: none;
    cursor: default;
  }

  .specs-accordion__icon {
    display: none;
  }

  .specs-accordion__panel {
    display: block !important;
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}


.pdp-tabs {
  display: flex;
  list-style: none;
  border-bottom: 2px solid var(--color-neutral-300);
  margin-bottom: var(--space-md);
  gap: var(--space-md);
  flex-wrap: wrap;
}

.pdp-tab {
  padding: 10px 4px;
  font-family: var(--font-headings);
  font-weight: var(--weight-bold);
  font-size: var(--text-small);
  cursor: pointer;
  color: var(--color-neutral-500);
  border: none;
  background: none;
  position: relative;
  transition: color var(--transition-fast);
}

.pdp-tab:hover,
.pdp-tab.active {
  color: var(--color-accent-600);
}

.pdp-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent-500);
}

.pdp-panel {
  display: none;
  animation: pdpFade 0.25s ease;
}

.pdp-panel.active {
  display: block;
}

@keyframes pdpFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin: 0;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: var(--text-small);
  color: var(--color-neutral-700);
  line-height: 1.6;
}

.feature-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF8A00' stroke-width='2.5'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E") no-repeat center/contain;
}

.download-card {
  background: var(--color-neutral-200);
  border: var(--border-thin);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xs);
  transition: border-color var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
}

.download-card:hover {
  border-color: var(--color-accent-400);
  background: var(--color-neutral-100);
}

.download-card__info {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.download-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent-500);
  fill: none;
  stroke-width: 2;
}

.download-card__name {
  font-weight: var(--weight-semibold);
  font-size: var(--text-small);
  margin: 0;
}

.download-card__meta {
  font-size: var(--text-xs);
  color: var(--color-neutral-500);
  margin: 0;
}

/* ─── CONTACT INFO ITEMS ─── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-info-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(6, 43, 99, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-primary-800);
  fill: none;
  stroke-width: 2;
}

.contact-info-item__label {
  font-size: var(--text-xs);
  color: var(--color-neutral-500);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin: 0;
}

.contact-info-item__val {
  font-size: var(--text-small);
  color: var(--color-neutral-800);
  margin: 2px 0 0;
}

.contact-info-item__val a {
  color: var(--color-primary-800);
  font-weight: var(--weight-semibold);
}

.contact-info-item__val a:hover {
  color: var(--color-accent-600);
}

/* ─── MAP EMBED ─── */
.map-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: var(--border-thin);
  box-shadow: var(--shadow-sm);
}

/* ─── REVIEW FORM WRAP ─── */
.review-form-wrap {
  background: var(--color-neutral-100);
  border: var(--border-thin);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

/* ─── STAR RATING ─── */
.star-rating {
  display: flex;
  gap: 4px;
}

.star-rating__star {
  font-size: 1.8rem;
  color: var(--color-neutral-300);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  transition: color var(--transition-fast), transform var(--transition-fast);
  line-height: 1;
}

.star-rating__star:hover,
.star-rating__star.active {
  color: #f59e0b;
  transform: scale(1.15);
}

/* ─── INTRO IMAGE ─── */
.intro-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════════
   MACHINE VIDEO SECTION
   ══════════════════════════════════ */
.video-section {
  padding: var(--space-3xl) 0;
  text-align: center;
}

.video-section h2 {
  font-size: var(--text-h3);
  color: var(--color-primary-900);
  margin-bottom: var(--space-sm);
}

.video-section p {
  color: var(--color-neutral-600);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.video-player-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: var(--border-thin);
  background: #000;
  aspect-ratio: 16 / 9;
  position: relative;
}

.video-thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: filter 0.3s;
}

.video-thumbnail-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s;
}

.video-thumbnail-overlay:hover::before {
  background: rgba(0, 0, 0, 0.25);
}

.video-play-btn {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  background: var(--color-accent-500);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s, box-shadow 0.3s;
}

.video-thumbnail-overlay:hover .video-play-btn {
  transform: scale(1.12);
  background: var(--color-accent-600);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.8);
}

.video-play-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  margin-left: 4px;
}

.video-player-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ─── PDP INFO BLOCK TYPOGRAPHY & SPACING ─── */
.pdp-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.pdp-info__category {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent-500);
  margin-bottom: var(--space-xs);
  display: inline-block;
  line-height: 1.2;
}

.pdp-info__title {
  font-size: var(--text-h2);
  color: var(--color-neutral-800);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
  font-weight: var(--weight-bold);
}

.pdp-info__price-container {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.pdp-info__price {
  font-size: var(--text-h3);
  font-weight: var(--weight-bold);
  color: var(--color-accent-600);
  margin: 0;
  line-height: 1.2;
}

.pdp-info__price-tax {
  font-size: var(--text-small);
  color: var(--color-neutral-500);
  margin: 0;
  line-height: 1.2;
}

.pdp-info__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  width: 100%;
}

@media (max-width: 1024px) {
  .pdp-info__stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pdp-info__stat-card {
  text-align: center;
  background: var(--color-neutral-200);
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.pdp-info__stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--color-accent-400);
  background: #fff;
}

.pdp-info__stat-val {
  font-family: var(--font-headings);
  font-weight: var(--weight-bold);
  font-size: 1.2rem;
  color: var(--color-primary-800);
  margin-bottom: var(--space-3xs);
  line-height: 1.2;
}

.pdp-info__stat-lbl {
  font-size: var(--text-xs);
  color: var(--color-neutral-500);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.pdp-info__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  width: 100%;
}

@media (max-width: 640px) {
  .pdp-info__stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}

/* ─── FEATURED VIDEO SECTION ─── */
.video-container-wrap {
  max-width: 1150px;
  margin-inline: auto;
  width: 100%;
}

.video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-neutral-300);
  background-color: var(--color-neutral-900);
  cursor: pointer;
  transform: translateZ(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover {
  transform: scale(1.015);
  box-shadow: var(--shadow-xl);
}

.video-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 23, 51, 0.45);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-card:hover .video-card__overlay {
  background: rgba(2, 23, 51, 0.35);
}

.video-card__play-btn {
  background: var(--color-accent-500);
  color: #fff;
  border: none;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 138, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, box-shadow 0.3s ease;
}

.video-card__play-btn svg {
  transform: translateX(3px);
  width: 32px;
  height: 32px;
}

.video-card:hover .video-card__play-btn {
  transform: scale(1.1);
  background: var(--color-accent-600);
  box-shadow: 0 6px 24px rgba(255, 138, 0, 0.6);
}

.video-card__media {
  width: 100%;
  height: 100%;
}

.video-card__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover .video-card__poster {
  transform: scale(1.02);
}

/* ─── MANUFACTURING TOUR EQUAL HEIGHT LAYOUT ─── */
@media (min-width: 1025px) {
  .tour-images-col {
    display: flex;
    flex-direction: column;
  }

  .tour-images-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: var(--space-sm);
  }

  .tour-img-card {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-thin);
  }

  .tour-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
}

@media (max-width: 1024px) {
  .tour-images-wrap {
    display: block;
    width: 100%;
  }

  .tour-img-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-thin);
  }

  .tour-img {
    width: 100%;
    aspect-ratio: 4/3;
    display: block;
    object-fit: cover;
  }
}

/* Specs Accordion Component */
.specs-accordion {
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-block: var(--space-md);
  background: var(--color-neutral-100);
}

.specs-accordion__item {
  border-bottom: 1px solid var(--color-neutral-300);
}

.specs-accordion__item:last-child {
  border-bottom: none;
}

.specs-accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  background: var(--color-neutral-100);
  border: none;
  font-size: 1.1rem;
  font-weight: var(--weight-bold);
  color: var(--color-primary-900);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.specs-accordion__trigger:hover,
.specs-accordion__trigger:focus-visible {
  background: var(--color-neutral-200);
  color: var(--color-primary-800);
  outline: none;
}

.specs-accordion__trigger[aria-expanded="true"] {
  background: var(--color-neutral-200);
  border-bottom: 1px solid var(--color-neutral-300);
}

.specs-accordion__icon svg {
  transition: transform 0.3s ease;
}

.specs-accordion__trigger[aria-expanded="true"] .specs-accordion__icon svg {
  transform: rotate(180deg);
}

.specs-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out, visibility 0.3s ease-out;
  background: #ffffff;
  overflow: hidden;
  visibility: hidden;
}

.specs-accordion__panel.is-open {
  grid-template-rows: 1fr;
  visibility: visible;
}

.specs-accordion__content {
  overflow: hidden;
  min-height: 0;
  padding: 0 var(--space-md);
  transition: padding 0.3s ease-out;
}

.specs-accordion__panel.is-open .specs-accordion__content {
  padding: var(--space-md);
}

.specs-accordion__content .specs-table {
  margin-block: 0;
}





/* --- responsive.css --- */
/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE.CSS — Unified media queries for mobile optimization
   ═══════════════════════════════════════════════════════════════ */

/* ─── Base Variable Overrides & Resizing ─── */
:root {
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
}

/* ─── Tablet Breakpoint (max-width: 1024px) ─── */
@media (max-width: 1024px) {
  :root {
    --text-display-1: 2.85rem;
    --text-display-2: 2.25rem;
    --text-h1: 2rem;
    --text-h2: 1.75rem;
    --text-h3: 1.4rem;
    --container-pad: 40px;
  }

  .section {
    padding-block: var(--space-xl);
  }

  .grid-12 {
    gap: var(--space-md);
  }

  /* Header mobile adjustments */
  .site-header {
    height: var(--header-height-tablet);
  }

  /* Card responsive columns */
  .grid-auto-3 {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)) !important;
  }
}

/* ─── Mobile Breakpoint (max-width: 768px) ─── */
@media (max-width: 768px) {
  :root {
    --text-display-1: 2.25rem;
    --text-display-2: 1.85rem;
    --text-h1: 1.75rem;
    --text-h2: 1.5rem;
    --text-h3: 1.25rem;
    --text-body: 1rem;
    --text-small: 0.875rem;
    --container-pad: 30px;
  }

  .section {
    padding-block: var(--space-lg);
  }

  /* Grid alignment */
  .grid-12 {
    grid-template-columns: 1fr;
  }

  .col-span-1,
  .col-span-2,
  .col-span-3,
  .col-span-4,
  .col-span-5,
  .col-span-6,
  .col-span-7,
  .col-span-8,
  .col-span-9,
  .col-span-10,
  .col-span-11,
  .col-span-12 {
    grid-column: span 1 !important;
    min-width: 0 !important;
  }

  .awards-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)) !important;
  }

  /* Disable horizontal scroll animations on mobile to prevent document width expansion */
  .reveal-left {
    transform: translateY(20px) !important;
  }

  .reveal-left.visible {
    transform: translateY(0) !important;
  }

  .reveal-right {
    transform: translateY(20px) !important;
  }

  .reveal-right.visible {
    transform: translateY(0) !important;
  }

  /* Hero Section Mobile Overlay Fix */
  .hero {
    min-height: 90vh !important;
    height: 90vh !important;
  }

  .hero__slide {
    height: 100% !important;
    align-items: center !important;
  }

  .hero__container {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    padding-block: var(--space-xl) !important;
    padding-inline: 20px !important;
  }

  .hero__content {
    max-width: 100% !important;
    width: 100% !important;
    text-align: left !important;
    margin-top: -40px;
  }

  .hero__bg::after {
    background: linear-gradient(to bottom, rgba(2, 23, 51, 0.92) 0%, rgba(6, 43, 99, 0.85) 60%, rgba(6, 43, 99, 0.7) 100%) !important;
  }

  .hero__title {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: var(--space-sm) !important;
  }

  .hero__desc {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: var(--space-lg) !important;
    max-width: 100% !important;
  }

  .hero__actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: var(--space-xs) !important;
  }

  .hero__actions .btn {
    width: 100% !important;
    height: 48px !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 !important;
  }

  /* Hero Slider Controls position */
  .hero__controls {
    right: 50% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: var(--space-lg) !important;
    justify-content: center !important;
    width: auto !important;
  }

  /* Page Hero (Inner Page Banners) */
  .page-hero {
    padding-block: var(--space-xl) var(--space-lg) !important;
  }

  .page-hero__title {
    font-size: 1.75rem !important;
  }

  /* Interactive Elements Touch targets */
  .btn {
    min-height: 48px !important;
    padding-inline: var(--space-md) !important;
  }

  .btn--large {
    min-height: 52px !important;
  }

  /* Floating Buttons Safe Area spacing */
  .wa-float {
    bottom: calc(90px + var(--safe-area-bottom)) !important;
    right: 20px !important;
  }

  .mobile-fab {
    bottom: calc(20px + var(--safe-area-bottom)) !important;
    padding-inline: 20px !important;
  }

  /* Navigation Drawer alignment */
  .mobile-drawer__panel {
    z-index: 2100 !important;
  }


  .table-responsive table {
    min-width: 600px !important;
    margin-bottom: 0 !important;
  }

  /* Timeline for Founder and About Page */
  .timeline {
    padding-left: 0 !important;
  }

  .timeline::before {
    left: 20px !important;
  }

  .timeline__item {
    width: 100% !important;
    padding-left: 45px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .timeline__item::after {
    left: 20px !important;
  }

  .timeline__dot {
    left: 20px !important;
    transform: translateX(-50%) !important;
  }

  /* Stat item dividers on tablet/mobile */
  .stat-item+.stat-item::before {
    display: none !important;
  }

  /* Testimonial slider defensive constraints */
  .testimonial-slider-wrap {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  /* Founder page stacking orientation */
  .founder-story__img-col {
    order: -1 !important;
    margin-bottom: var(--space-md) !important;
  }

  /* Cards responsiveness & mobile padding adjustments */
  .testimonial-card,
  .award-card,
  .product-card {
    height: auto !important;
    min-height: unset !important;
  }

  .testimonial-card {
    padding: var(--space-md) !important;
  }

  .award-card__body {
    padding: var(--space-md) !important;
  }

  /* Touch-friendly Horizontal Swipe for Filters and PDP Tabs */
  .catalog-filters,
  .gallery-filters,
  .pdp-tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: var(--space-sm) !important;
    padding-bottom: 8px !important;
    margin-bottom: var(--space-lg) !important;
    scrollbar-width: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .catalog-filters::-webkit-scrollbar,
  .gallery-filters::-webkit-scrollbar,
  .pdp-tabs::-webkit-scrollbar {
    display: none !important;
  }

  .catalog-filter-btn,
  .gallery-filter-btn,
  .pdp-tab {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }

  /* Lightbox content container sizing correction */
  .lightbox__inner {
    max-width: 95% !important;
  }

  /* Text overflow protection for contact email */
  .contact-info-item__val a {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  /* Center footer legal links on mobile */
  .footer-legal-links {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: var(--space-sm) !important;
  }

  /* FAQ Accordion Padding optimization */
  .accordion__header {
    padding: var(--space-sm) var(--space-md) !important;
  }

  .accordion__answer {
    padding: 0 var(--space-md) var(--space-sm) !important;
  }

  /* Forms customization */
  .form-input {
    min-height: 46px !important;
  }

  .form-textarea {
    min-height: 120px !important;
  }
}

/* ─── Stats and Column stack Breakpoint (max-width: 640px) ─── */
@media (max-width: 640px) {

  /* 2x2 Grid for Stats Strip on mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    row-gap: var(--space-lg) !important;
  }

  /* Show column dividers only for col 2 items (child 2 and child 4) */
  .stat-item::before {
    display: none !important;
  }

  .stat-item:nth-child(2)::before,
  .stat-item:nth-child(4)::before {
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    top: 10% !important;
    bottom: 10% !important;
    width: 1px !important;
    background: rgba(255, 255, 255, 0.15) !important;
  }
}

/* ─── Micro screens Breakpoint (max-width: 480px) ─── */
@media (max-width: 480px) {
  :root {
    --text-display-1: 1.85rem;
    --text-display-2: 1.6rem;
    --text-h1: 1.5rem;
    --text-h2: 1.3rem;
    --text-h3: 1.15rem;
    --text-body: 0.95rem;
    --text-small: 0.85rem;
    --container-pad: 16px;
  }

  .section {
    padding-block: var(--space-md);
  }

  /* Slide title optimization */
  .hero__title {
    font-size: 1.6rem !important;
  }

  /* Double column stats wrap */
  .stats-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-sm) !important;
  }

  .stat-item::before {
    display: none !important;
  }

  /* Highlights grid stacking */
  .highlights-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-sm) !important;
  }

  /* Modal popups sizing */
  .lightbox__inner {
    max-width: 95% !important;
  }
}

/* ─── Mobile Reflow Breakpoint (max-width: 640px) ─── */
@media (max-width: 640px) {

  /* Specification Table Reflow */
  .specs-table,
  .specs-table tbody,
  .specs-table tr,
  .specs-table td {
    display: block !important;
    width: 100% !important;
  }

  .specs-table tr {
    padding-block: var(--space-xs) !important;
    border-bottom: 1px solid var(--color-neutral-300) !important;
  }

  .specs-table tr:last-child {
    border-bottom: none !important;
  }

  .specs-table td {
    padding: var(--space-3xs) 0 !important;
  }

  .specs-table td:first-child {
    font-size: var(--text-xs) !important;
    text-transform: uppercase !important;
    color: var(--color-neutral-500) !important;
    margin-bottom: 2px !important;
    width: 100% !important;
  }

  /* Product CTA Buttons Stack */
  .pdp-info__cta-group {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .pdp-info__cta-group .btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ─── Compact Product Card Specs Reflow (max-width: 400px) ─── */
@media (max-width: 480px) {
  .product-card__specs {
    grid-template-columns: 1fr !important;
    gap: var(--space-3xs) !important;
    padding: var(--space-xs) !important;
  }

  .product-card__spec {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: left !important;
    border-bottom: 1px dashed var(--color-neutral-300);
    padding-bottom: var(--space-3xs);
  }

  .product-card__spec:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .product-card__spec-val {
    margin-bottom: 0 !important;
  }

  .product-card__spec-lbl {
    margin-top: 0 !important;
    order: -1;
  }
}




/* --- main.css remaining --- */
/* ═══════════════════════════════════════════════
   MAIN.CSS — Imports + Page-specific overrides
   ═══════════════════════════════════════════════ */

/* ─── Intro / About Section ─── */
.intro-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  min-height: 450px;
}

/* ─── Contact Page ─── */
.contact-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: #fff;
  border: var(--border-thin);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-fast);
}

.contact-info-item:hover {
  box-shadow: var(--shadow-sm);
}

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(6, 43, 99, 0.08), rgba(255, 138, 0, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary-800);
  fill: none;
  stroke-width: 2;
}

.contact-info-item__label {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-neutral-500);
  margin-bottom: 4px;
}

.contact-info-item__val {
  font-size: var(--text-small);
  color: var(--color-neutral-800);
  font-weight: var(--weight-medium);
}

.contact-info-item__val a {
  color: var(--color-primary-600);
}

.contact-info-item__val a:hover {
  color: var(--color-accent-500);
}

/* Map embed */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-thin);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 250px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* ─── Reviews Page ─── */
.review-form-wrap {
  background: var(--color-neutral-200);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  border: var(--border-thin);
}

/* ─── 404 Page ─── */
.not-found {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.not-found__code {
  font-family: var(--font-headings);
  font-size: clamp(5rem, 20vw, 10rem);
  font-weight: var(--weight-bold);
  line-height: 1;
  background: linear-gradient(135deg, var(--color-primary-800), var(--color-accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
}

.not-found h1 {
  font-size: var(--text-h2);
  margin-bottom: var(--space-sm);
}

.not-found p {
  color: var(--color-neutral-500);
  margin-bottom: var(--space-xl);
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

/* ─── Legal Pages ─── */
.legal-content {
  max-width: 800px;
  margin-inline: auto;
  padding-block: var(--space-3xl);
}

.legal-content h2 {
  font-size: var(--text-h3);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-sm);
  color: var(--color-primary-800);
  border-bottom: 2px solid var(--color-accent-500);
  padding-bottom: var(--space-xs);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

.legal-content ul {
  margin-bottom: var(--space-md);
}

.legal-content p {
  color: var(--color-neutral-700);
}

/* ─── Products Catalog Filters ─── */
.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}

.catalog-filter-btn {
  padding: 9px var(--space-md);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-neutral-300);
  background: #fff;
  font-size: var(--text-small);
  font-weight: var(--weight-semibold);
  color: var(--color-neutral-700);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.catalog-filter-btn:hover,
.catalog-filter-btn.active {
  background: var(--color-primary-800);
  border-color: var(--color-primary-800);
  color: #fff;
}

/* ─── Services Page ─── */
.services-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.services-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.services-img-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: var(--glass-dark-bg);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  color: #fff;
  font-size: var(--text-small);
  font-weight: var(--weight-semibold);
}

/* ─── WhatsApp Floating Button ─── */
.wa-float {
  position: fixed;
  bottom: 90px;
  right: var(--space-md);
  z-index: 800;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  color: #fff;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
  color: #fff;
}

.wa-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

@media (max-width: 640px) {
  .wa-float {
    display: none;
  }
}

/* ─── Print ─── */
@media print {

  .site-header,
  .site-footer,
  .mobile-fab,
  .wa-float {
    display: none !important;
  }

  .page-layout {
    padding-top: 0;
  }
}

/* --- Dark Section & Hero Overrides --- */
.bg-primary-900 {
  background-color: var(--color-primary-900) !important;
  color: #ffffff !important;
}

.bg-primary-900 h1,
.bg-primary-900 h2,
.bg-primary-900 h3,
.bg-primary-900 h4,
.bg-primary-900 h5,
.bg-primary-900 h6 {
  color: #ffffff !important;
}

.bg-primary-900 p,
.bg-primary-900 li {
  color: #ffffff !important;
}

.bg-primary-900 a:not(.btn) {
  color: #ffffff !important;
  text-decoration: underline;
}

.bg-primary-900 .text-muted,
.bg-primary-900 [style*='color:var(--color-neutral-700)'],
.bg-primary-900 [style*='color: var(--color-neutral-700)'],
.bg-primary-900 [style*='color:rgba(255,255,255,0.9)'],
.bg-primary-900 [style*='color: rgba(255,255,255,0.9)'] {
  color: #dbeafe !important;
}

/* Hero / Page-Hero text safety net: covers any raw h1-h3/p that
   editors drop inside a hero section without using the __title/__desc
   BEM classes (the classes themselves already carry the right color). */
.hero h1,
.hero h2,
.hero h3,
.page-hero h1,
.page-hero h2,
.page-hero h3 {
  color: #ffffff;
}

.hero p,
.page-hero p {
  color: rgba(255, 255, 255, 0.88);
}


@media (max-width: 480px) {
  .product-card__body {
    padding: var(--space-md);
  }
}

/* ============================================================
   Responsive variable overrides for --text-h4 (used by card/service
   titles). Values 1-4 and 7 of the old hotfix patch list are gone
   from here because they're now permanent parts of the base rules
   above, instead of being bolted on with !important at the end.
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --text-h4: 22px;
  }
}

@media (max-width: 768px) {
  :root {
    --text-h4: 20px;
  }
}

@media (max-width: 480px) {
  :root {
    --text-h4: 18px;
  }
}

/* Container width modifiers */
.container--narrow {
  max-width: 800px;
}

.container--medium {
  max-width: 900px;
}

.container--wide {
  max-width: 960px;
}

/* Button size modifiers */
.btn--full-width {
  width: 100%;
}

.btn--small-compact {
  padding: 8px 14px;
  font-size: var(--text-xs);
  min-height: 32px;
}

/* Breadcrumb current-page overflow safety net (prevents a very long
   page title from blowing out the breadcrumb row on narrow screens) */
.breadcrumb__current {
  max-width: 60vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  vertical-align: bottom;
}

/* ============================================================
   STANDARDIZED RESPONSIVE BREAKPOINT SYSTEM
   Added on top of the existing functional breakpoints (1024/768/
   640/480, which drive nav-to-hamburger switching, header height,
   and footer column stacking and must stay put). These new tiers
   only fine-tune spacing/sizing at the requested checkpoints -
   no colors, fonts, or component structure change here.
   ============================================================ */

/* ─── Desktop tiers: extra breathing room on very large screens ─── */
@media (min-width: 1920px) {
  :root {
    --container-max: 1320px;
    --container-pad: 32px;
  }
}

@media (min-width: 1536px) and (max-width: 1919px) {
  :root {
    --container-max: 1240px;
  }
}

@media (min-width: 1366px) and (max-width: 1535px) {
  :root {
    --container-max: 1200px;
  }
}

/* ─── Tablet tiers: progressively tighter container padding ─── */
@media (max-width: 1024px) {
  :root {
    --container-pad: 32px;
  }
}

@media (max-width: 820px) {
  :root {
    --container-pad: 28px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-pad: 24px;
  }
}

/* ─── Mobile tiers: fine-grained padding + heading scale ─── */
@media (max-width: 430px) {
  :root {
    --container-pad: 20px;
    --text-h1: 2rem;
    --text-h2: 1.6rem;
    --text-h3: 1.3rem;
  }
}

@media (max-width: 390px) {
  :root {
    --container-pad: 18px;
  }

  .btn {
    padding: 14px 26px;
    font-size: 0.85rem;
  }
}

@media (max-width: 375px) {
  :root {
    --container-pad: 16px;
  }

  .hero__title,
  .page-hero__title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
}

@media (max-width: 360px) {
  :root {
    --container-pad: 14px;
  }

  .hero__actions,
  .page-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

/* ============================================================
   STANDARDIZED LAYOUT, TYPOGRAPHY, CONTAINER & SPACING SYSTEM
   ============================================================ */

/* 1. Spacing, Typography & Container variables */
:root {
  /* Typography Scale */
  --text-h1: clamp(2rem, 6vw + 1rem, 4.5rem);
  --text-h2: clamp(1.75rem, 4vw + 1rem, 3rem);
  --text-h3: clamp(1.4rem, 2.5vw + 1rem, 2rem);
  --text-body: clamp(1rem, 0.5vw + 0.8rem, 1.25rem);
  
  /* Container scale */
  --container-max: 1200px;
  --container-pad: 24px;
  
  /* Spacing values */
  --space-hero-top: 120px;
  --space-hero-bottom: 80px;
  --space-section-sm: clamp(30px, 4vw, 60px);
  --space-section-md: clamp(45px, 6vw, 90px);
  --space-section-lg: clamp(60px, 8vw, 120px);
  --space-btn-gap: 16px;
  --space-text-margin: 16px;
  --space-breadcrumb-padding: 12px;

  /* Hero Content Width constraints */
  --hero-content-max-width: 780px;   /* ~65% of container */
  --hero-lead-max-width: 840px;      /* ~70% of container */
}

/* Tablet Scale Override */
@media (max-width: 1024px) {
  :root {
    --text-h1: clamp(44px, 4vw + 1rem, 52px);
    --text-h2: clamp(32px, 3vw + 0.5rem, 38px);
    --text-body: 18px;
    --container-pad: 20px;
    --space-hero-top: 80px;
    --space-hero-bottom: 50px;
    --space-breadcrumb-padding: 10px;
  }
}

/* Mobile Scale Override */
@media (max-width: 768px) {
  :root {
    --text-h1: clamp(32px, 5vw + 0.5rem, 40px);
    --text-h2: clamp(28px, 4vw, 32px);
    --text-body: clamp(16px, 1vw + 12px, 18px);
    --container-pad: 16px;
    --space-hero-top: 60px;
    --space-hero-bottom: 40px;
    --space-breadcrumb-padding: 8px;
  }
}

/* 2. Global Containers */
.container {
  width: 100% !important;
  max-width: var(--container-max) !important;
  margin-inline: auto !important;
  padding-inline: var(--container-pad) !important;
}

/* Standardized Narrow Container (Centred layouts, FAQs, etc.) */
.container--narrow {
  max-width: 800px !important;
}
.container--medium {
  max-width: 900px !important;
}
.container--wide {
  max-width: 960px !important;
}

/* 3. Section Sizing & Padding */
.section {
  padding-block: var(--space-section-md) !important;
}
.section--sm {
  padding-block: var(--space-section-sm) !important;
}
.section--lg {
  padding-block: var(--space-section-lg) !important;
}

/* 4. Typography binding */
h1, .page-hero__title, .hero__title {
  font-size: var(--text-h1) !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
}

h2, .section-header__title, .pdp-info__title {
  font-size: var(--text-h2) !important;
  line-height: 1.25 !important;
}

h3 {
  font-size: var(--text-h3) !important;
}

body, p {
  font-size: var(--text-body) !important;
}

/* 5. Hero Containers Width Standardisation (60-70% content width desktop) */
.page-hero__content {
  width: 100% !important;
  max-width: 100% !important;
  text-align: left !important;
}

.page-hero__title,
.page-hero__lead {
  max-width: var(--hero-lead-max-width) !important; /* 70% width limit to keep in 1-3 lines */
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.hero__content {
  max-width: var(--hero-content-max-width) !important; /* ~65% content width for home page slider */
  width: 100% !important;
}

.hero__title,
.hero__desc {
  max-width: 100% !important;
  width: 100% !important;
}

/* 6. Spacing standardisations */
.page-hero {
  padding-top: var(--space-md) !important;
  padding-bottom: var(--space-hero-bottom) !important;
  min-height: auto !important;
}

.hero {
  min-height: calc(100vh - var(--header-height-desktop)) !important;
}

/* Mobile hero sizes override */
@media (max-width: 768px) {
  .page-hero {
    min-height: 320px !important;
  }
}

.breadcrumb {
  padding-block: var(--space-breadcrumb-padding) !important;
}

.breadcrumb__current {
  max-width: 60vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  vertical-align: bottom;
}

.hero__actions,
.page-hero__actions {
  gap: var(--space-btn-gap) !important;
}

/* Bottom curves cleaning */
.page-hero::after {
  content: none !important;
  display: none !important;
}
.page-hero__wave {
  height: 60px !important;
}

/* Headings word-wrap safety */
.page-hero__title, .hero__title {
  overflow-wrap: break-word !important;
}

/* Button modifiers */
.btn--full-width {
  width: 100% !important;
}
.btn--small-compact {
  padding: 8px 14px !important;
  font-size: var(--text-xs) !important;
  min-height: 32px !important;
}


/* ----------------- LIGHTBOX GALLERY ARROWS POSITION FIX ----------------- */
@media (max-width: 1120px) {
  .lightbox__prev {
    left: 16px !important;
  }
  .lightbox__next {
    right: 16px !important;
  }
}

/* ----------------- GLOBAL RESPONSIVENESS IMPROVEMENTS ----------------- */
img {
  max-width: 100% !important;
  height: auto !important;
}

.table-responsive {
  width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
}
.table-responsive table {
  min-width: 600px !important;
}

/* ----------------- HEADER ADJUSTMENTS & VERIFICATION FIXES ----------------- */
.site-header .btn {
  height: 46px !important;
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
  line-height: 1 !important;
}

.header-hamburger {
  height: 42px !important;
  width: 42px !important;
}
