/* ============================================
   SIMPLEX CNC SYSTEMS - Modern Redesign
   Grey / Silver / Dark Red accent
   ============================================ */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400;600;700;900&family=Inter:wght@300;400;500;600;700&family=Anton&display=swap');

@font-face {
  font-family: 'Impact';
  src: url('fonts/impact.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  /* Deep navy/charcoal text and UI tones */
  --silver-100: #EEF2FF;
  --silver-200: #C8D4F0;
  --silver-300: #8892B8;
  --silver-400: #566080;
  --silver-500: #364058;
  --silver-600: #243248;
  --silver-700: #162038;
  --silver-800: #0E1628;
  --silver-900: #080C18;
  /* Electric blue accent — precision engineering */
  --red: #1464E8;
  --red-light: #4280FF;
  /* Glass effects on dark */
  --glass: rgba(255,255,255,0.05);
  --glass-strong: rgba(255,255,255,0.09);
  /* Deeper shadows on dark backgrounds */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
  --radius: 10px;
  --radius-sm: 6px;
}

body {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--silver-200);
  background: #070A14;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-footer {
  margin-top: auto;
}

h1, h2, h3, .hero-title, .pd-hero-text h1, .products-intro h1,
.pd-highlight-val, .pgrid-name, .why-num, .section-title {
  font-family: 'Titillium Web', 'Segoe UI', sans-serif;
}

.product-name, .pgrid-name, .hp-card h3, .pd-hero-text h1 {
  font-family: Impact, 'Anton', 'Arial Narrow', sans-serif;
  letter-spacing: 0;
  font-stretch: condensed;
}

a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
* { -webkit-tap-highlight-color: transparent; }

/* Homepage */
.home-page {
  background: linear-gradient(145deg, #050810 0%, #080D1C 40%, #050810 100%);
}

/* ---- HEADER (sticky, full-width) ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, #0C1830 0%, #081428 30%, #060F22 60%, #0A1530 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  transition: background 0.3s, box-shadow 0.3s;
}

.dark-page {
  background: #070A14;
  color: var(--silver-200);
}

.dark-page::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Dark page header */
.dark-page .site-header,
.home-page .site-header {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.12) 0%, transparent 70%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.4) 0%, transparent 50%),
    linear-gradient(180deg, #0E1E3A 0%, #0A1630 40%, #081228 70%, #060F22 100%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08);
}

.dark-page .nav-item {
  color: #fff;
  text-shadow: none;
}

.dark-page .nav-item:hover,
.dark-page .nav-item.active {
  color: #fff;
}

.dark-page .nav-item::before {
  background: rgba(255,255,255,0.9);
}

.dark-page .header-cta {
  color: #fff;
}

.dark-page .logo img {
  filter: brightness(0) invert(1);
}

.dark-page .burger span {
  background: #fff;
}

.dark-page .nav-dropdown,
.home-page .nav-dropdown {
  background: linear-gradient(135deg, #0C1A30 0%, #091525 50%, #071220 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--red);
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.dark-page .dropdown-link,
.home-page .dropdown-link {
  color: #fff;
}

.dark-page .dropdown-link:hover,
.home-page .dropdown-link:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.dark-page .dropdown-link::before,
.home-page .dropdown-link::before {
  background: var(--red);
}

.dark-page .site-footer {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.55) 0%, transparent 50%),
    linear-gradient(180deg, #0A1226 0%, #07101E 40%, #050D18 70%, #040A14 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 8px 40px rgba(0,0,0,0.5);
}

/* Dark page — product hero */
.dark-page .pd-hero {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.15) 0%, transparent 65%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.5) 0%, transparent 50%),
    linear-gradient(180deg, #0E1C36 0%, #0A1428 40%, #071020 70%, #050C18 100%);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.dark-page .pd-hero-text h1 { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7)); }
.dark-page .pd-product-name { color: var(--red-light); }

.dark-page .pd-tagline { color: #fff; }
.dark-page .back-link { color: #fff !important; }

/* Dark page — specs bar */
.dark-page .pd-specs {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.55) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.5) 0%, transparent 50%),
    linear-gradient(180deg, #101E36 0%, #0C1628 45%, #091220 100%);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}

.dark-page .pd-highlight {
  border-right-color: rgba(255,255,255,0.06);
}

.dark-page .pd-highlight-val { color: #fff; }
.dark-page .pd-highlight-label { color: var(--silver-200); }

/* Dark page — full specs */
.dark-page .pd-full-specs {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.55) 0%, transparent 50%),
    linear-gradient(180deg, #091424 0%, #060F1E 40%, #050C18 80%, #040A14 100%);
  box-shadow: inset 0 6px 30px rgba(0,0,0,0.4), inset 0 -6px 30px rgba(0,0,0,0.35);
}

.dark-page .pd-full-specs h2 { filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5)); }


.dark-page .pd-spec-card {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(20,100,232,0.12) 0%, transparent 55%),
    linear-gradient(160deg, rgba(16,28,56,0.9) 0%, rgba(10,20,42,0.88) 40%, rgba(7,15,32,0.9) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: none;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.dark-page .pd-spec-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(145deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.14) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.dark-page .pd-spec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(20,100,232,0.3), inset 0 1px 0 rgba(255,255,255,0.12);
}

.dark-page .pd-spec-card h3 { letter-spacing: 1px; text-transform: uppercase; font-size: 12px; font-weight: 700; }
.dark-page .pd-spec-card ul li { color: var(--silver-200); border-bottom-color: rgba(255,255,255,0.06); line-height: 1.7; }

.dark-page h1 {
  letter-spacing: -0.5px;
  background: linear-gradient(180deg, #ffffff 0%, #e8e8f0 45%, #c0c0cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  background-clip: text;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.65));
}

.dark-page h2 {
  letter-spacing: 0.3px;
  background: linear-gradient(180deg, #ffffff 0%, #e4e4ec 45%, #b8b8c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  background-clip: text;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.55));
}

.dark-page h3 {
  background: linear-gradient(180deg, #ffffff 0%, #e0e0e8 50%, #b4b4c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  background-clip: text;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}

.dark-page .pd-full-specs h2 { letter-spacing: 2px; text-transform: uppercase; font-size: 13px; font-weight: 700; }

/* Dark page — content area (company, research, etc.) */
.dark-page .content-area {
  background:
    radial-gradient(ellipse at 15% 5%, rgba(20,100,232,0.1) 0%, transparent 42%),
    radial-gradient(ellipse at 85% 95%, rgba(0,0,0,0.55) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 20%, rgba(20,100,232,0.05) 0%, transparent 50%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.012) 0px, transparent 1px, transparent 3px),
    linear-gradient(160deg, #0D1A30 0%, #091420 30%, #070F1A 65%, #050C14 100%);
  box-shadow: inset 0 4px 20px rgba(0,0,0,0.35);
}

.dark-page .content-area .geo-sq { background: rgba(20,100,232,0.05); }
.dark-page .content-area h1,
.dark-page .content-area h2,
.dark-page .content-area h3 { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6)); }
.dark-page .content-area p { color: var(--silver-200); }
.dark-page .content-area a { color: var(--silver-200); }
.dark-page .content-area a:hover { color: #fff; }
.dark-page .section-line { background: var(--red); }

/* Dark page — downloads */
.dark-page .dl-hero {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.18) 0%, transparent 65%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.65) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.55) 0%, transparent 50%),
    linear-gradient(180deg, #0E1C36 0%, #0A1428 35%, #071020 65%, #050C18 100%);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.07);
}
.dark-page .dl-hero .geo-sq { background: rgba(20,100,232,0.06); }
.dark-page .dl-hero h1 { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.65)); }
.dark-page .dl-hero p { color: var(--silver-200); }

.dark-page .dl-tab { color: var(--silver-200); }
.dark-page .dl-tab:hover { color: #fff; }
.dark-page .dl-tab::after { background: rgba(255,255,255,0.12); }

.dark-page .dl-content {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.55) 0%, transparent 50%),
    linear-gradient(180deg, #091422 0%, #060F1C 40%, #050C16 75%, #040A12 100%);
  box-shadow: inset 0 8px 30px rgba(0,0,0,0.45), inset 0 -8px 30px rgba(0,0,0,0.35);
}

.dark-page .dl-card {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(20,100,232,0.1) 0%, transparent 55%),
    linear-gradient(160deg, rgba(14,24,48,0.9) 0%, rgba(10,18,38,0.88) 40%, rgba(7,14,30,0.9) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  position: relative;
  color: var(--silver-200);
  box-shadow: 0 8px 28px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.09);
  transition: transform 0.3s, box-shadow 0.3s;
}
.dark-page .dl-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(145deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.04) 50%, rgba(255,255,255,0.12) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.dark-page .dl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(20,100,232,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
}

.dark-page .dl-modal {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.1) 0%, transparent 55%),
    linear-gradient(180deg, #0E1A30 0%, #0A1226 50%, #081020 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  color: var(--silver-200);
}
.dark-page .dl-modal-close { color: var(--silver-300); }
.dark-page .dl-modal-close:hover { color: #fff; }

/* Dark page — tooling */
.dark-page .tooling-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.55) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.5) 0%, transparent 50%),
    linear-gradient(180deg, #0B1628 0%, #081220 40%, #060E18 80%, #040C14 100%);
  box-shadow: inset 0 6px 28px rgba(0,0,0,0.4), inset 0 -6px 28px rgba(0,0,0,0.35);
}

.dark-page .tooling-section.tooling-profile {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.55) 0%, transparent 50%),
    linear-gradient(180deg, #0D1A2E 0%, #0A1424 40%, #080F1C 75%, #060C16 100%);
  box-shadow: inset 0 8px 30px rgba(0,0,0,0.45), inset 0 -8px 30px rgba(0,0,0,0.4);
}

.dark-page .tooling-section.tooling-profile:nth-of-type(even) {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.65) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.6) 0%, transparent 50%),
    linear-gradient(180deg, #0B1624 0%, #081020 40%, #060D18 75%, #040A14 100%);
  box-shadow: inset 0 8px 30px rgba(0,0,0,0.5), inset 0 -8px 30px rgba(0,0,0,0.45);
}

.dark-page .tooling-intro { color: var(--silver-200); }
.dark-page .tooling-stage-img {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #0E1C34 0%, #0A1428 50%, #071020 100%);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}
.dark-page .tooling-stage-label { color: #fff; }
.dark-page .tooling-section .section-title { filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5)); }
.dark-page .tooling-arrow svg { stroke: var(--red); }

/* Tooling CTA with background image */
.tooling-cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  background:
    url('images/SimpCent_03_angle8.png') center / cover no-repeat;
}

.tooling-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 100%);
  backdrop-filter: blur(1px);
}

.tooling-cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

.tooling-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 30px;
}

.tooling-cta-inner p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.tooling-cta-inner h2 {
  color: #fff;
  margin-bottom: 12px;
}

/* Dark page — contact */
.dark-page .contact-row strong { color: #fff; }
.dark-page .contact-row p { color: #fff; }
.dark-page .contact-row a { color: #fff; }

.contact-cards-section {
  padding: 70px 40px 100px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.55) 0%, transparent 50%),
    linear-gradient(180deg, #0C1828 0%, #091420 40%, #060F1A 70%, #040C14 100%);
}

.contact-cards-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-card {
  background: rgba(20,100,232,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 44px 32px 40px;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.contact-card-icon {
  width: 58px;
  height: 58px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
}

.contact-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.contact-card p {
  color: var(--silver-300);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 24px;
}

.contact-card-email {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: border-color 0.2s;
  word-break: break-all;
}

.contact-card-email:hover {
  border-color: rgba(255,255,255,0.7);
}

@media (max-width: 800px) {
  .contact-cards-inner {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .contact-cards-section { padding: 50px 24px 70px; }
}
.dark-page .content-area p { color: #fff; }

/* Dark page — research */
.dark-page .coming-soon-title {
  background: linear-gradient(180deg, #ffffff 0%, #c8c8d0 40%, #808088 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.7));
}

.dark-page .coming-soon-desc { color: var(--silver-200); }

/* Dark page — download file names */
.dark-page .dl-info h3 { filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5)); }

@media (max-width: 900px) {
  .dark-page .main-nav,
  .home-page .main-nav {
    background: #0B1428;
    border-left: 1px solid rgba(255,255,255,0.08);
  }

  .home-page .burger span,
  .dark-page .burger span {
    background: #fff;
  }
  .dark-page .nav-item {
    color: #fff;
    text-shadow: none;
  }
  .dark-page .nav-item:hover,
  .dark-page .nav-item.active {
    color: #fff;
  }
  .dark-page .nav-dropdown {
    border-top-color: rgba(255,255,255,0.1);
  }
  .dark-page .dropdown-link {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.06);
  }
  .dark-page .dropdown-link:hover,
  .dark-page .dropdown-link.active {
    color: #fff;
  }
  .dark-page .nav-item.active:not(.has-dropdown) {
    color: #fff;
    background: rgba(20,100,232,0.12);
    border-left-color: var(--red) !important;
  }
  .dark-page .has-dropdown.active > .nav-label {
    color: #fff;
  }
  .dark-page .header-cta {
    background: linear-gradient(145deg, #2878FF 0%, #1464E8 50%, #0A50D0 100%);
    color: #fff;
  }
}

.home-page .hero {
  margin-top: -80px;
  padding-top: 80px;
  min-height: 100vh;
}

@media (min-width: 901px) {
  .home-page .nav-item {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  }

  .home-page .nav-item:hover,
  .home-page .nav-item.active {
    color: #fff;
  }

  .home-page .header-cta {
    color: #fff;
  }

  .home-page .header-cta:hover {
    color: var(--silver-300);
  }

  .home-page .logo img {
    filter: brightness(0) invert(1);
  }
}

.home-page .site-footer {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.65) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.6) 0%, transparent 50%),
    linear-gradient(180deg, #0A1226 0%, #07101E 40%, #050D18 70%, #040A14 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 8px 40px rgba(0,0,0,0.5);
}

.hero-why-simplex .section-title {
  color: #fff;
  margin-bottom: 0;
}

.hero-why-simplex .section-title::after {
  display: none;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo - left side */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 66px;
  width: auto;
  transition: opacity 0.2s;
  filter: brightness(0) invert(1);
}

.logo:hover img { opacity: 0.8; }

/* Get in Touch link */
.header-cta {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: gap 0.2s ease, color 0.2s ease;
  z-index: 50;
}

.header-cta::after {
  content: '\2192';
  font-size: 16px;
  transition: transform 0.2s ease;
}

.header-cta:hover {
  color: var(--silver-200);
  gap: 10px;
}

.header-cta:hover::after {
  transform: translateX(2px);
}

/* Nav bar - no background, inherits header gradient */
.main-nav {
  display: flex;
  align-items: stretch;
  height: 48px;
  flex: 1;
  justify-content: center;
}

@media (max-width: 1100px) and (min-width: 701px) {
  .main-nav {
    justify-content: flex-start;
  }
}

.nav-item {
  position: relative;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  letter-spacing: 0.3px;
}

.nav-item:hover {
  color: #fff;
}

.nav-item.active {
  color: #fff;
}

/* Animated bar: vertical line at top-right sweeps left into blue square */
.nav-item::before {
  content: '';
  position: absolute;
  top: 5px;
  left: calc(100% - 7px);
  right: 5px;
  height: 12px;
  background: rgba(66,128,255,0.8);
  border-radius: 1px;
  transition: right 0.25s ease, left 0.35s ease 0.15s, background 0.15s ease;
}

.nav-item:hover::before {
  left: 5px;
  right: calc(100% - 17px);
  background: var(--red);
  transition: left 0.35s ease, right 0.3s ease 0.2s, background 0.3s ease 0.2s;
}

.nav-item.active::before {
  left: 5px;
  right: calc(100% - 17px);
  background: var(--red);
  transition: none;
}

/* Staggered nav entrance */
@keyframes navSlideIn {
  0% { opacity: 0; transform: translateX(10px); }
  60% { transform: translateX(-1px); }
  100% { opacity: 1; transform: translateX(0); }
}

.nav-item {
  opacity: 0;
  animation: navSlideIn 0.4s ease-out forwards;
}

.nav-item:nth-child(1) { animation-delay: 0.05s; }
.nav-item:nth-child(2) { animation-delay: 0.1s; }
.nav-item:nth-child(3) { animation-delay: 0.15s; }
.nav-item:nth-child(4) { animation-delay: 0.2s; }
.nav-item:nth-child(5) { animation-delay: 0.25s; }
.nav-item:nth-child(6) { animation-delay: 0.3s; }

/* ---- DROPDOWN NAV ---- */
.has-dropdown {
  position: relative;
}

.has-dropdown > .nav-label {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 5px;
}

/* Chevron indicator */
.has-dropdown > .nav-label::after {
  content: '';
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.25s ease;
}

.has-dropdown:hover > .nav-label::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: linear-gradient(135deg, #0C1A30 0%, #091525 50%, #071220 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--red);
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  border-radius: 0 0 6px 6px;
  padding: 6px 0;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 200;
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  transform: scaleY(1);
  pointer-events: auto;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--silver-200);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.dropdown-link:hover {
  background: rgba(20,100,232,0.1);
  color: #fff;
  padding-left: 24px;
}

.dropdown-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--red);
  transition: width 0.2s ease;
}

.dropdown-link:hover::before {
  width: 3px;
}

/* ---- COMING SOON ---- */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 50vh;
  padding: 60px 30px;
}

.coming-soon-title {
  font-family: Impact, 'Anton', 'Arial Narrow', sans-serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--silver-100);
  line-height: 1.1;
  margin-bottom: 8px;
}

.coming-soon-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}

.coming-soon-line {
  width: 60px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 24px;
  animation: comingSoonPulse 2s ease-in-out infinite;
}

@keyframes comingSoonPulse {
  0%, 100% { width: 60px; opacity: 1; }
  50% { width: 100px; opacity: 0.6; }
}

.coming-soon-desc {
  font-size: 15px;
  color: var(--silver-300);
  max-width: 400px;
  line-height: 1.6;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  overflow: hidden;
  background: #040A1A;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/heroimage2.png') center / cover no-repeat;
  filter: brightness(1.0) contrast(1.05) saturate(1.0);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* Clean circle center with navy vignette radiating outward */
    radial-gradient(ellipse 52% 62% at 62% 50%,
      transparent 0%,
      transparent 28%,
      rgba(5,14,50,0.22) 54%,
      rgba(4,10,42,0.52) 78%,
      rgba(3,8,36,0.68) 100%
    ),
    /* Left side darker for text readability */
    linear-gradient(100deg,
      rgba(4,10,32,0.55) 0%,
      rgba(4,10,32,0.16) 30%,
      transparent 48%
    ),
    /* Top/bottom shadow */
    linear-gradient(180deg,
      rgba(4,10,42,0.32) 0%,
      transparent 18%,
      transparent 82%,
      rgba(4,10,42,0.42) 100%
    );
  pointer-events: none;
}

.hero-bg-slideshow {
  position: absolute;
  top: 80px;
  height: 560px;
  right: 0;
  left: 30%;
  z-index: 2;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1.04);
  animation: heroSlideZoom 8s ease-in-out infinite alternate;
}

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

@keyframes heroSlideZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero-blur {
  position: absolute;
  inset: 0;
  z-index: 2;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 400px);
  position: relative;
  z-index: 4;
}

/* Left side */
.hero-left {
  flex: 1;
  max-width: 550px;
  position: relative;
  padding: 60px 0;
}

/* Right side — slideshow */
.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 4;
}

.hero-slideshow {
  width: 100%;
  max-width: 450px;
}

.hero-slideshow .slide {
  display: none;
}

.hero-slideshow .slide.active {
  display: block;
}

.hero-slideshow .slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-eyebrow {
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 18px;
  border-left: 2px solid rgba(255,255,255,0.6);
  padding-left: 12px;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  position: relative;
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}
.hero-title::after {
  content: attr(data-text);
  position: absolute;
  left: 3px;
  top: 3px;
  z-index: -1;
  color: rgba(232,104,32,0.45);
  font-size: inherit;
  font-weight: inherit;
  white-space: nowrap;
  letter-spacing: inherit;
}

.hero-sub {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  max-width: 420px;
  margin: 0 0 36px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-outline-light {
  color: var(--silver-300) !important;
  border-color: var(--silver-600) !important;
}
.btn-outline-light:hover {
  color: #fff !important;
  border-color: var(--silver-400) !important;
}

/* Geo squares — hidden by default, shown on specific pages */
.geo-squares { display: none; }

.geo-sq {
  position: absolute;
  border-radius: 0;
  opacity: 0.5;
  will-change: opacity;
}


.btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 26px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(145deg, #2878FF 0%, #1464E8 50%, #0A50D0 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 20px rgba(20,100,232,0.45), 0 1px 3px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -1px 0 rgba(0,0,0,0.2);
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

.btn-primary:hover {
  background: linear-gradient(145deg, #3A86FF 0%, #1C6EF0 50%, #1060DC 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(20,100,232,0.6), 0 2px 6px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 0 rgba(0,0,0,0.15);
  border-color: rgba(255,255,255,0.25);
}

.btn-outline {
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.06) 100%);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-outline:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0.1) 100%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.slideshow {
  position: relative;
  width: 100%;
  height: 440px;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active { opacity: 1; }

.slide img {
  max-height: 420px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.12));
}

.slide-indicators {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

.indicator:hover { background: rgba(255,255,255,0.3); }
.indicator.active { background: var(--red); border-color: var(--red); transform: scale(1.3); }

/* ---- SECTIONS ---- */
.section {
  padding: 70px 0;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.section-title {
  font-size: 28px;
  font-weight: 300;
  color: var(--silver-100);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(200,200,200,0.2) 0%, var(--red-light) 30%, var(--red) 50%, var(--red-light) 70%, rgba(200,200,200,0.2) 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-title.line-visible::after {
  transform: scaleX(1);
}

/* Features — stat banner */
.section.section-features {
  background: transparent;
  padding: 0;
  -webkit-mask-image: none;
  mask-image: none;
}

.features-banner-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}
.features-banner-wrap::before,
.features-banner-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.features-banner-wrap::before {
  left: 0;
  background: none;
}
.features-banner-wrap::after {
  right: 0;
  background: none;
}

.features-banner {
  display: flex;
  align-items: center;
  padding: 20px 0;
  animation: featScroll 25s linear infinite;
  width: max-content;
}

@keyframes featScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.feat-stat {
  text-align: center;
  padding: 14px 30px;
  margin: 0 8px;
  min-width: 180px;
  flex-shrink: 0;
  background: rgba(10, 10, 10, 0.6);
  border-radius: 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.05);
}

.feat-num {
  display: block;
  font-family: 'Titillium Web', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.feat-label {
  display: block;
  font-size: 11px;
  color: var(--silver-300);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.feat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

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

.feature {
  padding: 32px 28px;
  background: linear-gradient(145deg, rgba(14,24,52,0.9) 0%, rgba(10,16,36,0.85) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: all 0.35s;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out forwards;
}

.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(20,100,232,0.35);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--silver-700) 0%, var(--silver-900) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--silver-200);
}

.feature h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--silver-100);
  margin-bottom: 8px;
}

.feature p {
  font-size: 13px;
  color: var(--silver-300);
  line-height: 1.7;
}

/* Products on homepage */
.section-products {
  background: transparent;
  position: relative;
  z-index: 1;
}

.products-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 30px;
}

.products-header .section-title {
  margin-bottom: 0;
}

.view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  transition: letter-spacing 0.2s;
}

.view-all:hover {
  letter-spacing: 0.5px;
}

.home-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 20px 15px 16px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  background: linear-gradient(145deg, rgba(14,24,52,0.85) 0%, rgba(8,14,32,0.8) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
}

.hp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
  border-color: rgba(20,100,232,0.4);
}

.hp-img {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.hp-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08));
}

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

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

.hp-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0;
  margin-bottom: 4px;
}

.hp-body p {
  font-size: 12px;
  color: var(--silver-300);
  max-width: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.product-card {
  display: flex;
  background: linear-gradient(160deg, rgba(14,24,50,0.88) 0%, rgba(8,14,32,0.85) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.5s ease-out forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(20,100,232,0.35);
}

.product-card-img {
  width: 180px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: linear-gradient(135deg, rgba(12,22,48,0.8) 0%, rgba(8,14,32,0.7) 100%);
}

.product-card-img img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  transition: transform 0.3s;
}

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

.product-card-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-card-body h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--silver-100);
  margin-bottom: 6px;
}

.product-card-body p {
  font-size: 12px;
  color: var(--silver-300);
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ---- PRODUCTS PAGE ---- */
.products-hero {
  background: linear-gradient(135deg, #0E1C38 0%, #0A1428 50%, #070F20 100%);
  padding: 60px 0 50px;
  text-align: center;
}

.products-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.products-hero h1 {
  font-size: 38px;
  font-weight: 300;
  color: #EEF2FF;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.products-hero h1::after { display: none; }

.products-hero p {
  font-size: 15px;
  color: var(--silver-300);
  max-width: 500px;
  margin: 0 auto;
}

.products-section {
  padding: 60px 0;
  background: #070A14;
}

.products-section-alt {
  background: linear-gradient(180deg, #0A0E1C 0%, #070A14 100%);
}

.products-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.products-section-header {
  margin-bottom: 35px;
}

.products-section-header h2 {
  font-size: 24px;
  font-weight: 300;
  color: var(--silver-100);
  margin-bottom: 8px;
}

.section-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #a0a0a8, #ffffff, #a0a0a8, transparent);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(220,220,230,0.3);
  margin-bottom: 28px;
}

/* Showcase cards */
.products-showcase {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-card {
  display: flex;
  background: linear-gradient(145deg, rgba(14,24,50,0.88) 0%, rgba(8,14,32,0.85) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s;
  text-decoration: none;
  color: inherit;
}

.showcase-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
  border-color: rgba(20,100,232,0.35);
}

.showcase-img {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: linear-gradient(135deg, rgba(12,22,48,0.8) 0%, rgba(8,14,32,0.75) 100%);
}

.showcase-img img {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  transition: transform 0.4s;
}

.showcase-card:hover .showcase-img img {
  transform: scale(1.05);
}

.showcase-body {
  padding: 30px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--silver-100);
  margin-bottom: 10px;
}

.showcase-body p {
  font-size: 14px;
  color: var(--silver-300);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: none;
}

.showcase-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  transition: letter-spacing 0.25s;
}

.showcase-card:hover .showcase-link {
  letter-spacing: 0.5px;
}

/* Linear stage cards */
.linear-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.linear-card {
  background: linear-gradient(145deg, rgba(14,24,50,0.88) 0%, rgba(8,14,32,0.85) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 24px 16px 20px;
  text-align: center;
  transition: all 0.35s;
  text-decoration: none;
  color: inherit;
}

.linear-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.55);
  border-color: rgba(20,100,232,0.35);
}

.linear-card img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  margin-bottom: 14px;
  transition: transform 0.3s;
}

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

.linear-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--silver-100);
  margin-bottom: 4px;
}

.linear-card p {
  font-size: 12px;
  color: var(--silver-300);
  max-width: none;
}

/* Controller banner */
.controller-banner {
  display: flex;
  background: linear-gradient(145deg, rgba(14,24,50,0.88) 0%, rgba(8,14,32,0.85) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s;
  text-decoration: none;
  color: inherit;
}

.controller-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
  border-color: rgba(20,100,232,0.35);
}

.controller-img {
  width: 220px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: linear-gradient(135deg, rgba(12,22,48,0.8) 0%, rgba(8,14,32,0.75) 100%);
}

.controller-img img {
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
  transition: transform 0.4s;
}

.controller-banner:hover .controller-img img {
  transform: scale(1.05);
}

.controller-body {
  padding: 30px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.controller-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--silver-100);
  margin-bottom: 10px;
}

.controller-body p {
  font-size: 14px;
  color: var(--silver-300);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: none;
}

/* Controller chooser page */
.controller-choose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.controller-choose .showcase-card {
  flex-direction: column;
}

.controller-choose .showcase-img {
  width: 100%;
  height: 200px;
}

/* Products page intro */
.products-intro {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.2) 0%, transparent 65%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.65) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.6) 0%, transparent 50%),
    linear-gradient(180deg, #0F1E3A 0%, #0C1630 35%, #091220 65%, #060E1A 100%);
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.07);
}

.products-intro .geo-squares {
  position: absolute;
  inset: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
}

.products-intro .geo-sq { background: rgba(20,100,232,0.06); }

.products-intro .geo-sq:nth-child(1)  { width: 60px;  height: 60px;  top: 10%; left: 5%;  }
.products-intro .geo-sq:nth-child(2)  { width: 80px;  height: 80px;  top: 30%; left: 15%; }
.products-intro .geo-sq:nth-child(3)  { width: 45px;  height: 45px;  top: 60%; left: 8%;  }
.products-intro .geo-sq:nth-child(4)  { width: 70px;  height: 70px;  top: 15%; left: 35%; }
.products-intro .geo-sq:nth-child(5)  { width: 55px;  height: 55px;  top: 50%; left: 28%; }
.products-intro .geo-sq:nth-child(6)  { width: 90px;  height: 90px;  top: 20%; right: 8%; }
.products-intro .geo-sq:nth-child(7)  { width: 50px;  height: 50px;  top: 55%; right: 15%; }
.products-intro .geo-sq:nth-child(8)  { width: 65px;  height: 65px;  top: 10%; right: 30%; }
.products-intro .geo-sq:nth-child(9)  { width: 40px;  height: 40px;  top: 65%; right: 5%;  }
.products-intro .geo-sq:nth-child(10) { width: 75px;  height: 75px;  top: 40%; right: 25%; }
.products-intro .geo-sq:nth-child(11) { width: 55px;  height: 55px;  top: 70%; left: 45%; }
.products-intro .geo-sq:nth-child(12) { width: 45px;  height: 45px;  top: 5%;  left: 55%; }

.products-intro::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 55%;
  z-index: 1;
  background: url('images/SimpCent_03_angle8.png') center / cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 45%, black 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 45%, black 100%);
  filter: brightness(0.55) contrast(1.2) saturate(0.85);
}

.products-intro::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 55%;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.4) 100%),
    radial-gradient(ellipse at 70% 50%, transparent 30%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 45%, black 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 45%, black 100%);
}

.products-intro-inner {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 30px;
}

.products-intro h1 {
  font-size: 38px;
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.products-intro h1 { position: relative; display: inline-block; }
.products-intro h1::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 30%, var(--red-light) 50%, var(--red) 70%, transparent 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.products-intro h1.line-visible::after { transform: scaleX(1); }

.products-intro p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 auto;
}


/* Why Simplex section */
.products-why {
  background: linear-gradient(180deg, #0A0E1C 0%, #070A14 100%);
  padding: 60px 0;
  text-align: center;
}

.products-why-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.products-why h2 {
  font-size: 26px;
  font-weight: 300;
  color: var(--silver-100);
  margin-bottom: 20px;
}

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

.why-item {
  padding: 24px;
  background: linear-gradient(145deg, rgba(14,24,50,0.88), rgba(8,14,32,0.85));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: all 0.3s;
}

.why-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(20,100,232,0.3);
}

.why-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
  opacity: 0.6;
  margin-bottom: 12px;
  font-family: 'Consolas', monospace;
}

.why-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--silver-100);
  margin-bottom: 8px;
}

.why-item p {
  font-size: 13px;
  color: var(--silver-300);
  line-height: 1.7;
}

@media (max-width: 700px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products-intro h1 { font-size: 28px; }
}

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

/* Products page — compact image grid with hover names */
.products-grid-section {
  padding: 40px 0 60px;
  background: #070A14;
}

.products-grid-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pgrid-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px 14px;
  transition: transform 0.3s;
  text-decoration: none;
}

.pgrid-item:hover {
  transform: scale(1.03);
}

.pgrid-item img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: transform 0.3s;
}

.pgrid-item:hover img {
  transform: scale(1.05);
}
.pgrid-img-stage {
  max-width: 65%;
}
@media (max-width: 700px) {
  .pgrid-img-stage { max-width: 90%; }
}

.pgrid-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pgrid-name {
  color: var(--red);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
}

.pgrid-sub {
  color: var(--silver-300);
  font-size: 11px;
  font-weight: 400;
  margin-top: 3px;
}

/* Stage/controller selector section */
.stage-select-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.55) 0%, transparent 50%),
    linear-gradient(180deg, #0C1628 0%, #091420 40%, #060F1A 75%, #040C14 100%);
  box-shadow: inset 0 8px 30px rgba(0,0,0,0.45), inset 0 -8px 30px rgba(0,0,0,0.4);
  padding: 50px 0 70px;
}

.stage-select-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Stage/controller selector grid */
.stage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.stage-grid .pgrid-item img {
  height: 170px;
}
.stage-grid.stage-grid-lg .pgrid-item img {
  height: 240px;
}
.stage-slide {
  opacity: 0;
  transition: opacity 1s ease;
}
.stage-slide-show {
  opacity: 1;
}
.stage-grid.stage-grid-sm .pgrid-item img {
  height: 140px;
}
.pgrid-slides {
  position: relative;
  width: 100%;
  height: 140px;
  margin-bottom: 12px;
  overflow: hidden;
}
.pgrid-sl {
  width: 100%;
  height: 140px;
  object-fit: contain;
  transition: opacity 1s ease;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.pgrid-sl.active {
  opacity: 1;
}



@media (max-width: 500px) {
  .stage-grid { grid-template-columns: 1fr; }
  .stage-grid .pgrid-item img { height: 220px; }
}

/* Coming soon / patent products */
.pgrid-coming-soon {
  cursor: pointer;
}

.pgrid-coming-soon:hover {
  transform: none;
}

.pgrid-question {
  font-size: 100px;
  font-weight: 300;
  color: var(--silver-400);
  line-height: 1;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

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

  .pgrid-sub {
    font-size: 10px;
  }
}

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

/* ── Product Ticker (products page) ── */
.prod-ticker-wrap {
  max-width: 100%;
  margin: 0;
  padding: 10px 0;
}

.prod-ticker {
  overflow: hidden;
  padding: 8px 0;
  position: relative;
}

.prod-ticker::before,
.prod-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.prod-ticker::before {
  left: 0;
  background: none;
}

.prod-ticker::after {
  right: 0;
  background: none;
}

.prod-ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: prodTickerScroll 50s linear infinite;
  cursor: grab;
}

.prod-ticker-track:hover {
  animation-play-state: paused;
}

@keyframes prodTickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.prod-ticker-item {
  flex-shrink: 0;
  width: 170px;
  min-width: 170px;
  height: 75px;
  margin: 0 6px;
  padding: 10px 16px;
  border-radius: var(--radius);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0C1828;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.prod-ticker-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: background 0.3s;
}

.prod-ticker-item:hover::before {
  background: rgba(0, 0, 0, 0.4);
}

.prod-ticker-item.active {
  border-color: var(--red);
}

.prod-ticker-item.active::before {
  background: rgba(0, 0, 0, 0.35);
}

.prod-ticker-item h4,
.prod-ticker-item p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.prod-ticker-item h4 {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
  line-height: 1.2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.prod-ticker-item p {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
  margin-top: 2px;
}

/* ── Product Content Panels ── */
/* Product Scroll Stripe */
.prod-scroll-section {
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.65) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.6) 0%, transparent 50%),
    linear-gradient(180deg, #0D1C36 0%, #0A1428 35%, #07101E 65%, #050C18 100%);
  padding: 50px 0;
  border-top: 1px solid rgba(20,100,232,0.15);
  border-bottom: 1px solid rgba(20,100,232,0.1);
  box-shadow: inset 0 20px 40px -10px rgba(0,0,0,0.5), inset 0 -20px 40px -10px rgba(0,0,0,0.5), 0 4px 20px rgba(0,0,0,0.5);
}

.prod-scroll-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: prodScrollStripe 10s linear infinite;
}

.prod-scroll-track:hover {
  animation-play-state: paused;
}

@keyframes prodScrollStripe {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.prod-card {
  flex-shrink: 0;
  width: 360px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.45) 0%, transparent 50%),
    linear-gradient(180deg, rgba(14,28,56,0.92) 0%, rgba(9,18,38,0.9) 50%, rgba(6,12,28,0.92) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: none;
  border-radius: 14px;
  padding: 20px 20px 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  box-shadow:
    0 16px 48px rgba(0,0,0,0.6),
    0 4px 12px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.32),
    inset 1px 0 0 rgba(255,255,255,0.12),
    inset -1px 0 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.35);
  overflow: hidden;
}

.prod-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.02) 60%, transparent 100%);
  pointer-events: none;
}

.prod-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.prod-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.6),
    0 6px 16px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 1px 0 0 rgba(255,255,255,0.12),
    inset -1px 0 0 rgba(255,255,255,0.1),
    inset 0 -1px 0 rgba(0,0,0,0.2);
}

.prod-card:hover::after {
  opacity: 1;
}

.prod-card-img {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  background: radial-gradient(ellipse at 50% 35%, #0E1C38 0%, #060E1E 100%);
  border-radius: 10px;
  border: 1px solid rgba(20,100,232,0.12);
  overflow: hidden;
}

.prod-card-img img {
  max-width: 88%;
  max-height: 175px;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.65));
}

.prod-card-placeholder {
  color: var(--silver-600);
  font-size: 13px;
  border: 1px dashed rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 6px;
}

.prod-card-title {
  font-family: Impact, 'Anton', 'Arial Narrow', sans-serif;
  font-size: 26px;
  font-weight: 400;
  background: linear-gradient(180deg, #ffffff 0%, #c8c8d0 40%, #808088 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  background-clip: text;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.7));
  margin: 16px 0 5px;
  line-height: 1.1;
}

.prod-card-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.prod-panels-section {
  background: #070A14;
  padding: 0 0 70px;
}

.prod-panels-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.prod-panels {
  position: relative;
  min-height: 360px;
}

.prod-panel {
  display: none;
}

.prod-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.prod-panel-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(14,24,50,0.88), rgba(8,14,32,0.85));
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.prod-panel-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.prod-panel-placeholder {
  color: var(--silver-500);
  font-size: 16px;
  font-weight: 300;
}

.prod-panel-text {
  display: flex;
  flex-direction: column;
}

.prod-panel-title {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 4px;
  line-height: 1.2;
}

.prod-panel-sub {
  font-size: 13px;
  color: var(--silver-300);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.prod-panel-desc {
  font-size: 15px;
  color: var(--silver-300);
  line-height: 1.75;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .prod-panel.active {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .prod-panel-img {
    order: -1;
    aspect-ratio: 16 / 10;
  }
  .prod-panel-title {
    font-size: 26px;
  }
  .prod-ticker-item {
    width: 140px;
    min-width: 140px;
    height: 65px;
  }
  .prod-ticker-item h4 {
    font-size: 14px;
  }
}

/* Homepage product link */
.product-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  transition: letter-spacing 0.2s;
}

.product-card:hover .product-link {
  letter-spacing: 0.5px;
}

/* About section */
.section-about {
  background: linear-gradient(180deg, #0C1428 0%, #080E1C 30%, #070A14 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-text p {
  font-size: 14px;
  color: var(--silver-300);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text .btn {
  margin-top: 10px;
  color: var(--silver-200);
  border-color: var(--silver-500);
}

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

/* ---- SUBPAGE CONTENT AREA ---- */
.content-area {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 30px 80px;
  flex: 1;
}
.content-area.contact-full {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  flex: 0 0 auto;
  overflow: visible;
}
.content-area.contact-full .geo-squares {
  position: fixed !important;
  inset: 0;
  z-index: 0;
}
.content-area.company-about .geo-squares {
  position: absolute !important;
  inset: 0;
  z-index: 0;
}
.contact-full > *:not(.geo-squares) {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

/* Background squares inside content container */
.page-bg-squares {
  display: none;
}

.content-area {
  position: relative;
  overflow: hidden;
}

.content-area .geo-squares {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.content-area > *:not(.geo-squares) {
  position: relative;
  z-index: 1;
}

/* Scattered squares — varied sizes, organic placement */
.content-area .geo-sq:nth-child(1)  { width: 45px;  height: 45px;  top: 8%;   left: 2%;   background: rgba(20,100,232,0.06); }
.content-area .geo-sq:nth-child(2)  { width: 90px;  height: 90px;  top: 18%;  left: 6%;   background: rgba(20,100,232,0.05); }
.content-area .geo-sq:nth-child(3)  { width: 35px;  height: 35px;  top: 42%;  left: 1%;   background: rgba(20,100,232,0.04); }
.content-area .geo-sq:nth-child(4)  { width: 70px;  height: 70px;  top: 55%;  left: 4%;   background: rgba(20,100,232,0.05); }
.content-area .geo-sq:nth-child(5)  { width: 55px;  height: 55px;  top: 72%;  left: 2%;   background: rgba(20,100,232,0.04); }
.content-area .geo-sq:nth-child(6)  { width: 80px;  height: 80px;  top: 85%;  left: 8%;   background: rgba(20,100,232,0.05); }
.content-area .geo-sq:nth-child(7)  { width: 50px;  height: 50px;  top: 5%;   right: 3%;  background: rgba(20,100,232,0.07); }
.content-area .geo-sq:nth-child(8)  { width: 75px;  height: 75px;  top: 22%;  right: 5%;  background: rgba(20,100,232,0.05); }
.content-area .geo-sq:nth-child(9)  { width: 40px;  height: 40px;  top: 38%;  right: 1%;  background: rgba(20,100,232,0.04); }
.content-area .geo-sq:nth-child(10) { width: 85px;  height: 85px;  top: 52%;  right: 4%;  background: rgba(20,100,232,0.05); }
.content-area .geo-sq:nth-child(11) { width: 60px;  height: 60px;  top: 68%;  right: 2%;  background: rgba(20,100,232,0.04); }
.content-area .geo-sq:nth-child(12) { width: 45px;  height: 45px;  top: 82%;  right: 7%;  background: rgba(20,100,232,0.05); }
.content-area .geo-sq:nth-child(13) { width: 100px; height: 100px; top: 92%;  left: 25%;  background: rgba(20,100,232,0.04); }
.content-area .geo-sq:nth-child(14) { width: 65px;  height: 65px;  top: 88%;  right: 22%; background: rgba(20,100,232,0.06); }
.content-area .geo-sq:nth-child(15) { width: 30px;  height: 30px;  top: 15%;  left: 18%;  background: rgba(20,100,232,0.07); }
.content-area .geo-sq:nth-child(16) { width: 50px;  height: 50px;  top: 60%;  right: 18%; background: rgba(20,100,232,0.05); }
.content-area .geo-sq:nth-child(17) { width: 40px;  height: 40px;  top: 35%;  left: 12%;  background: rgba(20,100,232,0.04); }
.content-area .geo-sq:nth-child(18) { width: 70px;  height: 70px;  top: 78%;  left: 15%;  background: rgba(20,100,232,0.04); }
.content-area .geo-sq:nth-child(19) { width: 55px;  height: 55px;  top: 45%;  right: 15%; background: rgba(20,100,232,0.05); }
.content-area .geo-sq:nth-child(20) { width: 35px;  height: 35px;  top: 95%;  right: 12%; background: rgba(20,100,232,0.06); }

/* Content stays above background squares */
.content-area, .site-footer {
  position: relative;
  z-index: 1;
}

.content-area .page-intro {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.6s ease-out 0.2s forwards;
}

.content-area h1 {
  font-size: 32px;
  color: var(--silver-100);
  margin-bottom: 16px;
  font-weight: 300;
  letter-spacing: -0.5px;
  display: inline-block;
  position: relative;
}

.content-area h1::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(200,200,200,0.2) 0%, var(--red-light) 30%, var(--red) 50%, var(--red-light) 70%, rgba(200,200,200,0.2) 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.content-area h1.line-visible::after {
  transform: scaleX(1);
}

.content-area h2 {
  font-size: 20px;
  color: var(--silver-200);
  margin: 30px 0 14px;
  font-weight: 600;
}

.content-area p {
  font-size: 14px;
  color: var(--silver-300);
  margin-bottom: 14px;
  line-height: 1.8;
}

/* ---- PRODUCT DETAIL PAGE ---- */

/* Product hero — dark bg, text left, image right */
.pd-hero {
  padding: 50px 0 40px;
  background: linear-gradient(135deg, #0E1C38 0%, #0A1630 25%, #081224 50%, #060E1C 75%, #050C18 100%);
}

.pd-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  background: transparent;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.pd-hero-text {
  flex: 1;
}

.pd-product-name {
  font-family: Impact, 'Anton', 'Arial Narrow', sans-serif;
  font-size: 42px;
  font-weight: 400;
  background: linear-gradient(180deg, #ffffff 0%, #c8c8d0 40%, #808088 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.7));
  letter-spacing: 0;
  line-height: 1.1;
  margin: 12px 0 0;
}

.pd-hero-text h1 {
  font-size: 22px;
  font-weight: 300;
  color: var(--silver-900);
  letter-spacing: 0;
  margin: 2px 0 16px;
}

.pd-hero-text h1 { position: relative; display: inline-block; }
.pd-hero-text h1::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(200,200,200,0.2) 0%, var(--red-light) 30%, var(--red) 50%, var(--red-light) 70%, rgba(200,200,200,0.2) 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.pd-hero-text h1.line-visible::after { transform: scaleX(1); }

/* Squares inside product hero */
.pd-hero-inner .geo-squares {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pd-hero-inner .geo-sq { background: rgba(20,100,232,0.07); }

.pd-hero-inner .geo-sq:nth-child(1)  { width: 60px; height: 60px; top: 10%; left: 2%;  }
.pd-hero-inner .geo-sq:nth-child(2)  { width: 80px; height: 80px; top: 30%; left: 8%;  }
.pd-hero-inner .geo-sq:nth-child(3)  { width: 45px; height: 45px; top: 55%; left: 3%;  }
.pd-hero-inner .geo-sq:nth-child(4)  { width: 70px; height: 70px; top: 75%; left: 12%; }
.pd-hero-inner .geo-sq:nth-child(5)  { width: 55px; height: 55px; top: 15%; left: 22%; }
.pd-hero-inner .geo-sq:nth-child(6)  { width: 65px; height: 65px; top: 60%; left: 20%; }
.pd-hero-inner .geo-sq:nth-child(7)  { width: 50px; height: 50px; top: 8%;  right: 5%; }
.pd-hero-inner .geo-sq:nth-child(8)  { width: 75px; height: 75px; top: 35%; right: 3%; }
.pd-hero-inner .geo-sq:nth-child(9)  { width: 40px; height: 40px; top: 65%; right: 10%;}
.pd-hero-inner .geo-sq:nth-child(10) { width: 85px; height: 85px; top: 20%; right: 18%;}
.pd-hero-inner .geo-sq:nth-child(11) { width: 55px; height: 55px; top: 50%; right: 8%; }
.pd-hero-inner .geo-sq:nth-child(12) { width: 45px; height: 45px; top: 80%; right: 15%;}

.pd-hero-text, .pd-hero-img {
  position: relative;
  z-index: 1;
}

.pd-tagline {
  font-size: 15px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 440px;
}

.pd-hero-img {
  width: 475px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-hero-img img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
}

.pd-slideshow {
  width: 100%;
  height: 400px;
}

/* Key spec highlights — horizontal stat bar */
.pd-specs {
  background: #0A1222;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pd-specs-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pd-spec-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pd-highlight {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.pd-highlight:last-child { border-right: none; }

.pd-highlight-val {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--silver-100);
  margin-bottom: 4px;
}

.pd-highlight-label {
  display: block;
  font-size: 11px;
  color: var(--silver-300);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Full specs — card grid */
.pd-full-specs {
  background: #070A14;
  padding: 60px 0;
}

.pd-full-specs-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.pd-full-specs h2 {
  font-size: 24px;
  font-weight: 300;
  color: var(--silver-100);
  margin-bottom: 8px;
}

.pd-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.pd-spec-card:last-child:nth-child(3n+1) {
  grid-column: 1 / -1;
}

.pd-spec-card {
  background: linear-gradient(145deg, rgba(14,24,50,0.88), rgba(8,14,32,0.85));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.pd-spec-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--silver-100);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.pd-spec-card ul {
  list-style: none;
  padding: 0;
}

.pd-spec-card ul li {
  font-size: 13px;
  color: var(--silver-300);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
}

.pd-spec-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
}

.pd-spec-card ul li:last-child { border-bottom: none; }

/* Stage spec list — simple two-column layout for products with a single spec list */
.pd-stage-specs {
  background: #070A14;
  padding: 40px 0;
}

.dark-page .pd-stage-specs {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.55) 0%, transparent 50%),
    linear-gradient(180deg, #091422 0%, #060F1C 40%, #050C16 75%, #040A12 100%);
  box-shadow: inset 0 8px 30px rgba(0,0,0,0.45), inset 0 -8px 30px rgba(0,0,0,0.4);
}

.dark-page .pd-stage-list li {
  color: var(--silver-200);
  border-bottom-color: rgba(255,255,255,0.06);
}
.pd-stage-specs-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.pd-stage-info h2 {
  font-family: Impact, 'Anton', 'Arial Narrow', sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--red);
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 2px;
}
.pd-stage-info h3 {
  font-family: Impact, 'Anton', 'Arial Narrow', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--silver-200);
  letter-spacing: 0;
  margin-bottom: 16px;
  font-style: normal;
  position: relative;
  display: inline-block;
}
.pd-stage-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(200,200,200,0.2) 0%, var(--red-light) 30%, var(--red) 50%, var(--red-light) 70%, rgba(200,200,200,0.2) 100%);
  border-radius: 2px;
}
.pd-stage-info img {
  width: 100%;
  max-width: 100%;
  height: 240px;
  object-fit: contain;
}
.pd-stage-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pd-stage-list li {
  font-size: 13.5px;
  color: var(--silver-300);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.pd-stage-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}
.pd-stage-list li:last-child { border-bottom: none; }
@media (max-width: 768px) {
  .pd-stage-specs-inner { grid-template-columns: 1fr; }
}

/* CTA section */
.pd-cta {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.65) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.6) 0%, transparent 50%),
    linear-gradient(180deg, #0C1A30 0%, #091428 40%, #06101E 75%, #050C18 100%);
  padding: 50px 0;
  text-align: center;
  box-shadow: inset 0 8px 30px rgba(0,0,0,0.45), inset 0 -8px 30px rgba(0,0,0,0.4);
}

.pd-cta-image {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.7) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.65) 0%, transparent 50%),
    linear-gradient(180deg, #0A1626 0%, #081220 35%, #060E1A 65%, #040C14 100%);
  position: relative;
  padding: 60px 0;
  border-top: 1px solid rgba(20,100,232,0.12);
  box-shadow: inset 0 20px 40px -10px rgba(0,0,0,0.5), 0 4px 20px rgba(0,0,0,0.5);
}

.pd-cta-image::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 55%;
  z-index: 1;
  background: url('images/SimpCent.png') center / cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg, black 0%, black 50%, transparent 95%);
  mask-image: linear-gradient(90deg, black 0%, black 50%, transparent 95%);
  filter: brightness(0.55) contrast(1.2) saturate(0.85);
  box-shadow: inset 0 0 120px rgba(0,0,0,0.85);
}

.pd-cta-image::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 55%;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.4) 100%),
    radial-gradient(ellipse at 30% 50%, transparent 30%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, black 0%, black 50%, transparent 95%);
  mask-image: linear-gradient(90deg, black 0%, black 50%, transparent 95%);
}

.pd-cta-image .pd-cta-inner {
  position: relative;
  z-index: 3;
  text-align: right;
  max-width: 1100px;
  margin: 0 auto;
}

.pd-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 30px;
}

.pd-cta h2 {
  font-size: 24px;
  font-weight: 300;
  color: var(--silver-100);
  margin-bottom: 10px;
}

.pd-cta p {
  font-size: 14px;
  color: var(--silver-200);
  margin-bottom: 24px;
}

/* Responsive product detail */
@media (max-width: 900px) {
  .pd-hero { padding: 20px 0 15px; }
  .pd-hero-inner { flex-direction: column; text-align: center; padding: 20px; }
  .pd-hero-img { width: 100%; }
  .pd-tagline { max-width: 100%; }
  .pd-spec-highlights { grid-template-columns: repeat(2, 1fr); }
  .pd-highlight { padding: 14px 12px; }
  .pd-highlight-val { font-size: 17px; }
  .pd-highlight-label { font-size: 10px; }
  .pd-specs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .pd-product-name { font-size: 32px; }
  .pd-hero-text h1 { font-size: 18px; }
  .pd-spec-highlights { grid-template-columns: repeat(2, 1fr); }
  .pd-highlight { padding: 12px 10px; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .pd-highlight-val { font-size: 15px; }
  .pd-highlight:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.06); }
}

/* Back link */
.back-link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--silver-600);
  margin-bottom: 20px;
  transition: color 0.2s, gap 0.2s;
}

.back-link svg {
  vertical-align: middle;
  flex-shrink: 0;
  margin-top: -2px;
}

.back-link:hover {
  color: var(--red);
  gap: 12px;
}

/* Product detail page */
.product-page {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.product-page .product-image {
  flex-shrink: 0;
  width: 360px;
  background: linear-gradient(145deg, rgba(14,24,50,0.88) 0%, rgba(8,14,32,0.85) 100%);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  opacity: 0;
  transform: translateX(-20px);
  animation: slideLeft 0.7s ease-out 0.3s forwards;
}

.product-page .product-image img {
  width: 100%;
  object-fit: contain;
}

.product-page .product-info {
  flex: 1;
  opacity: 0;
  transform: translateX(20px);
  animation: slideRight 0.7s ease-out 0.5s forwards;
}

.product-page .product-info h1 { margin-top: 0; }

.product-page .product-info ul {
  font-size: 14px;
  color: var(--silver-600);
  margin: 14px 0;
  padding-left: 22px;
  line-height: 2;
}

.product-page .product-info ul li { padding-left: 4px; }
.product-page .product-info ul li::marker { color: var(--red); }

/* Linear variants */
.linear-variants {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.linear-variant {
  text-align: center;
  background: linear-gradient(145deg, rgba(14,24,50,0.88) 0%, rgba(8,14,32,0.85) 100%);
  border-radius: var(--radius-sm);
  padding: 16px 10px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.3s;
  opacity: 0;
  animation: fadeUp 0.5s ease-out forwards;
}

.linear-variant:nth-child(1) { animation-delay: 0.4s; }
.linear-variant:nth-child(2) { animation-delay: 0.5s; }
.linear-variant:nth-child(3) { animation-delay: 0.6s; }
.linear-variant:nth-child(4) { animation-delay: 0.7s; }

.linear-variant:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.linear-variant img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
}

.linear-variant p {
  font-size: 12px;
  color: var(--silver-300);
  font-weight: 500;
}

/* ---- DOWNLOADS PAGE ---- */

/* Downloads hero */
.dl-hero {
  background: linear-gradient(180deg, #0E1C36 0%, #0A1428 50%, #071020 100%);
  padding: 40px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dl-hero .geo-squares {
  position: absolute;
  inset: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
}

.dl-hero .geo-sq { background: rgba(20,100,232,0.08); }

.dl-hero .geo-sq:nth-child(1)  { width: 55px; height: 55px; top: 5%;  left: 3%;  }
.dl-hero .geo-sq:nth-child(2)  { width: 70px; height: 70px; top: 20%; left: 12%; }
.dl-hero .geo-sq:nth-child(3)  { width: 40px; height: 40px; top: 50%; left: 5%;  }
.dl-hero .geo-sq:nth-child(4)  { width: 60px; height: 60px; top: 70%; left: 15%; }
.dl-hero .geo-sq:nth-child(5)  { width: 45px; height: 45px; top: 10%; left: 28%; }
.dl-hero .geo-sq:nth-child(6)  { width: 65px; height: 65px; top: 60%; left: 25%; }
.dl-hero .geo-sq:nth-child(7)  { width: 50px; height: 50px; top: 8%;  right: 5%; }
.dl-hero .geo-sq:nth-child(8)  { width: 75px; height: 75px; top: 25%; right: 10%;}
.dl-hero .geo-sq:nth-child(9)  { width: 40px; height: 40px; top: 55%; right: 3%; }
.dl-hero .geo-sq:nth-child(10) { width: 60px; height: 60px; top: 15%; right: 25%;}
.dl-hero .geo-sq:nth-child(11) { width: 50px; height: 50px; top: 65%; right: 18%;}
.dl-hero .geo-sq:nth-child(12) { width: 35px; height: 35px; top: 40%; right: 8%; }

.dl-hero-inner {
  position: relative;
  z-index: 1;
}

.dl-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.dl-hero h1 {
  font-size: 36px;
  font-weight: 300;
  color: var(--silver-100);
  margin-bottom: 8px;
}

.dl-hero h1 { position: relative; display: inline-block; }
.dl-hero h1::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(200,200,200,0.2) 0%, var(--red-light) 30%, var(--red) 50%, var(--red-light) 70%, rgba(200,200,200,0.2) 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.dl-hero h1.line-visible::after { transform: scaleX(1); }

.dl-hero p {
  font-size: 15px;
  color: var(--silver-300);
  margin-bottom: 30px;
}

/* Tabs */
.dl-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: none;
}

.dl-tab {
  padding: 12px 32px;
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--silver-300);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color 0.25s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.dl-tab:hover { color: var(--silver-100); }

.dl-tab.active {
  color: var(--red);
}

.dl-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.1);
  transition: background 0.3s;
}

.dl-tab.active::after {
  background: var(--red);
}

/* Download content */
.dl-content {
  background: #070A14;
  padding: 40px 0 60px;
  flex: 1;
}

.dl-content-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.dl-panel {
  display: none;
}

.dl-panel.active {
  display: block;
}

/* Download card grid */
.dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.dl-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: linear-gradient(145deg, rgba(14,24,50,0.88), rgba(8,14,32,0.85));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  text-decoration: none;
  color: inherit;
}

.dl-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(20,100,232,0.3);
}

.dl-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Titillium Web', monospace;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.dl-icon-exe {
  background: linear-gradient(135deg, var(--silver-700), var(--silver-800));
}

.dl-info h3 {
  font-size: 11px;
  font-weight: 500;
  color: var(--silver-200);
  margin-bottom: -2px;
  line-height: 1.3;
  font-family: 'Inter', sans-serif;
}

.dl-info strong {
  font-family: 'Consolas', monospace;
  font-weight: 700;
}

.dl-action {
  font-size: 11px;
  color: var(--red);
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s;
}

.dl-card:hover .dl-action {
  opacity: 1;
}

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

@media (max-width: 500px) {
  .dl-grid { grid-template-columns: 1fr; }
  .dl-tab { padding: 10px 18px; font-size: 13px; }
  .dl-action { opacity: 1; }
}

@media (max-width: 700px) {
  .dl-action { opacity: 1; }
}

/* Legacy download styles (keep for compatibility) */
.download-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.download-heading {
  font-size: 11px;
  font-weight: 700;
  color: var(--silver-200);
  text-align: center;
  padding: 12px 0;
  margin-bottom: 12px;
  background: linear-gradient(to bottom, rgba(14,24,50,0.88) 0%, rgba(8,14,32,0.85) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.download-list li {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 13px;
  border-radius: 4px;
  transition: background 0.2s;
}

.download-list li:hover { background: rgba(255,255,255,0.3); }
.download-list li:last-child { border-bottom: none; }
.download-list a { color: var(--silver-300); transition: color 0.2s; }
.download-list a:hover { color: var(--red); }
.download-list strong { font-family: 'Consolas', monospace; font-weight: 700; }

/* Contact */
.contact-map-full {
  width: 100%;
  height: 420px;
  filter: grayscale(1);
  transition: filter 0.4s;
}

.contact-map-full:hover {
  filter: grayscale(0);
}

.contact-map-full iframe {
  display: block;
  pointer-events: none;
}

.contact-map-full:hover iframe {
  pointer-events: auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-row svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-row strong {
  display: block;
  font-family: 'Titillium Web', sans-serif;
  font-size: 12px;
  color: var(--silver-700);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-row p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--silver-600);
  margin: 0;
}

.contact-row a { color: var(--red); font-weight: 500; }
.contact-row a:hover { text-decoration: underline; }

@media (max-width: 700px) {
  .contact-map-full { height: 280px; }
  .contact-full > *:not(.geo-squares) {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .contact-row p { font-size: 12px; }
  .contact-row a { word-break: break-all; }
}

@media (max-width: 480px) {
  .contact-map-full { height: 220px; }
  .contact-row {
    flex-direction: column;
    gap: 6px;
  }
  .contact-row svg { margin-top: 0; }
  .contact-info { gap: 16px; }
}

@media (max-width: 700px) {
  .content-area .geo-squares,
  .products-intro .geo-squares,
  .dl-hero .geo-squares,
  .pd-hero-inner .geo-squares { display: none; }
}

/* Company page layout — text left, image right */
.company-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 10px;
}

.company-text p {
  font-size: 15px;
  color: #fff;
  line-height: 1.9;
  margin-bottom: 16px;
}

.company-img-break {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}
.company-img-break img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  display: block;
}

.company-img p {
  font-size: 12px;
  color: var(--silver-500);
  margin-top: 8px;
  font-style: italic;
  text-align: center;
}

/* Loading bar */
.loading-bar {
  height: 2px;
  background: rgba(0,0,0,0.06);
  position: relative;
  margin: 12px 0;
  overflow: hidden;
  border-radius: 1px;
}

.loading-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--silver-500), var(--red));
  border-radius: 1px;
  animation: loadingBar 1s ease-out forwards;
}

/* ---- TOOLING PAGE ---- */
.tooling-section {
  padding: 50px 0;
}

.tooling-section.tooling-profile {
  background: #0A0E1C;
}

.tooling-section.tooling-profile:nth-of-type(even) {
  background: #070A14;
}

.tooling-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.tooling-intro {
  text-align: center;
  font-size: 16px;
  color: var(--silver-300);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.tooling-benchtops {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.tooling-bench-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.tooling-bench-img p {
  text-align: center;
  font-size: 14px;
  color: #fff;
  margin-top: 10px;
}

.tooling-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tooling-stage {
  text-align: center;
  flex: 0 1 280px;
}

.tooling-stage-img {
  width: 280px;
  height: 200px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  background: #0E1C34;
}

.tooling-stage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tooling-stage-label {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--silver-200);
}

.tooling-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

@media (max-width: 700px) {
  .tooling-benchtops {
    grid-template-columns: 1fr;
  }

  .tooling-process {
    flex-direction: column;
    gap: 15px;
  }

  .tooling-arrow svg {
    transform: rotate(90deg);
  }
}

/* ---- FOOTER ---- */
.site-footer {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(20,100,232,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(0,0,0,0.65) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0,0,0,0.6) 0%, transparent 50%),
    linear-gradient(180deg, #0A1226 0%, #07101E 40%, #050D18 70%, #040A14 100%);
  color: var(--silver-300);
  padding: 30px 0 16px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.footer-brand p {
  font-size: 12px;
  line-height: 1.5;
  color: #fff;
  max-width: 280px;
}

.footer-logo {
  height: 50px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  flex-shrink: 0;
}

.footer-grid h4 {
  font-size: 10px;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.footer-grid p {
  font-size: 12px;
  line-height: 1.7;
  color: #fff;
}

.footer-grid a {
  color: #fff;
  transition: color 0.2s;
}

.footer-grid a:hover { color: var(--silver-200); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 12px;
  text-align: center;
}

.footer-bottom p {
  font-size: 11px;
  color: #fff;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes contentFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInFromLeft {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromRight {
  0% { opacity: 0; transform: translateX(20px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes loadingBar {
  from { width: 0; }
  to { width: 100%; }
}

/* ---- BURGER MENU ---- */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Burger -> X animation */
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- RESPONSIVE ---- */

/* Tablet */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    min-height: auto;
    padding: 20px 24px;
  }

  .hero-left { padding: 30px 0; min-height: auto; max-width: 100%; }

  .pd-cta .btn {
    padding: 8px 18px;
    font-size: 12px;
  }

  .prod-scroll-track {
    animation-duration: 15s !important;
  }

  .prod-card {
    width: 260px;
    padding: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  }

  .prod-card::before,
  .prod-card::after {
    display: none;
  }

  .prod-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  }

  .prod-card-img {
    height: 170px;
    box-shadow: none;
  }

  .prod-card-title {
    font-size: 18px;
  }
  .hero-right { display: none; }
  .hero-content { padding-top: 6px; margin-top: 10px; }
  .hero-title { font-size: 28px; }
  .hero-sub { font-size: 13px; }
  .hero-bg-slideshow { left: 0; right: 0; }
  .hero-bg-slide { background-position: center; }

  .slideshow { height: 260px; }

  .product-grid { grid-template-columns: 1fr; }
  .product-card { flex-direction: row; }
  .product-card-img { width: 160px; height: auto; }

  .showcase-card { flex-direction: column; }
  .showcase-img { width: 100%; height: 200px; }
  .linear-showcase { grid-template-columns: repeat(2, 1fr); }
  .controller-banner { flex-direction: column; }
  .controller-img { width: 100%; height: 180px; }

  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-img { order: -1; }
  .about-img img { max-width: 400px; margin: 0 auto; display: block; }

  .features { grid-template-columns: 1fr 1fr; }
  .features-banner { padding: 20px 0; }
  .feat-stat { padding: 0 30px; min-width: 140px; }
  .features-banner-wrap::before,
  .features-banner-wrap::after { display: none; }
  .section-features { padding: 0; mask-image: none; -webkit-mask-image: none; }
  .section-features .section-inner { padding: 0; }
  .feat-divider { height: 30px; }
  .home-products { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { flex-wrap: wrap; gap: 20px; }
  .footer-brand { flex-basis: 100%; }
  .footer-logo { height: 40px; }

  .content-area { padding: 40px 24px 70px; }
  .section-inner { padding: 0 24px; }
}

/* Mobile - burger menu */
@media (max-width: 900px) {
  /* Shrink squares on mobile, hide a few to avoid overlap */
  .geo-sq:nth-child(n+16) { display: none; }

  .content-area .geo-sq:nth-child(1)  { left: 1%;  top: 3%;  }
  .content-area .geo-sq:nth-child(2)  { right: 2%; left: auto; top: 10%; }
  .content-area .geo-sq:nth-child(3)  { left: 5%;  top: 20%; }
  .content-area .geo-sq:nth-child(4)  { right: 8%; left: auto; top: 28%; }
  .content-area .geo-sq:nth-child(5)  { left: 2%;  top: 36%; }
  .content-area .geo-sq:nth-child(6)  { right: 3%; left: auto; top: 44%; }
  .content-area .geo-sq:nth-child(7)  { left: 8%;  top: 52%; }
  .content-area .geo-sq:nth-child(8)  { right: 5%; left: auto; top: 60%; }
  .content-area .geo-sq:nth-child(9)  { left: 3%;  top: 68%; }
  .content-area .geo-sq:nth-child(10) { right: 2%; left: auto; top: 76%; }
  .content-area .geo-sq:nth-child(11) { left: 6%;  top: 84%; }
  .content-area .geo-sq:nth-child(12) { right: 7%; left: auto; top: 90%; }
  .content-area .geo-sq:nth-child(13) { left: 35%; top: 15%; }
  .content-area .geo-sq:nth-child(14) { left: 40%; top: 45%; }
  .content-area .geo-sq:nth-child(15) { left: 30%; top: 75%; }

  /* ---- MOBILE NAV DRAWER ---- */
  .burger {
    display: flex;
    z-index: 10000;
  }

  .header-cta {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 280px;
    padding: 18px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(145deg, #2878FF 0%, #1464E8 50%, #0A50D0 100%);
    border-radius: 0;
    justify-content: center;
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 24px rgba(20,100,232,0.5);
    border-top: 1px solid rgba(255,255,255,0.15);
    top: auto;
  }

  .header-cta::after {
    color: #fff;
  }

  .header-cta.cta-visible {
    transform: translateX(0);
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 80px 0 30px;
    background: #0B1428;
    border-left: 1px solid rgba(255,255,255,0.08);
    box-shadow: -8px 0 40px rgba(0,0,0,0.7);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
  }

  .main-nav.nav-open {
    transform: translateX(0);
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 280px;
    background: transparent;
    z-index: 9998;
    pointer-events: none;
  }

  .nav-overlay.visible {
    pointer-events: auto;
  }

  /* ---- MOBILE NAV ITEMS ---- */
  .nav-item {
    display: block !important;
    height: auto !important;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    opacity: 1 !important;
    animation: none !important;
    text-shadow: none;
    position: relative;
  }

  .nav-item.has-dropdown {
    padding: 0;
  }

  /* Hide desktop ::before and ::after on all nav items */
  .nav-item::before,
  .nav-item::after,
  .nav-item.has-dropdown::before,
  .nav-item.has-dropdown::after {
    display: none !important;
  }

  /* Active bar for regular nav items */
  .nav-item.active:not(.has-dropdown) {
    color: #fff;
    background: rgba(20,100,232,0.1);
    border-left: 3px solid var(--red) !important;
  }

  /* Label row inside dropdown parents */
  .has-dropdown > .nav-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    height: auto;
    position: relative;
  }

  .has-dropdown.active > .nav-label {
    background: rgba(20,100,232,0.1);
    color: #fff;
    border-left: 3px solid var(--red) !important;
  }

  .has-dropdown > .nav-label::after {
    width: 6px;
    height: 6px;
    border-right: 1.5px solid var(--silver-500);
    border-bottom: 1.5px solid var(--silver-500);
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .has-dropdown.dropdown-open > .nav-label::after {
    transform: rotate(-135deg);
  }

  /* ---- Dropdown panel: hidden by default, shown on tap ---- */
  .nav-dropdown {
    display: none !important;
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    background: none;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    min-width: 0;
    max-height: none;
    overflow: visible;
    z-index: auto;
  }

  .has-dropdown.dropdown-open .nav-dropdown {
    display: block !important;
  }

  /* Dropdown links — indented, smaller, no bar */
  .dropdown-link {
    display: block !important;
    padding: 12px 24px 12px 40px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--silver-300);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: static;
    white-space: normal;
  }

  .dropdown-link::before {
    display: none !important;
  }

  .dropdown-link:hover {
    color: var(--silver-100);
    background: rgba(20,100,232,0.08);
  }

  .dropdown-link.active {
    color: var(--silver-100);
    font-weight: 600;
    position: relative;
  }

  .dropdown-link.active::after {
    display: block !important;
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 28px !important;
    width: 8px !important;
    height: 8px !important;
    background: var(--red) !important;
    transform: translateY(-50%) !important;
    border-radius: 0 !important;
  }

  .company-layout {
    grid-template-columns: 1fr;
  }
  .company-img { order: -1; }
  .company-img img { max-width: 300px; margin: 0 auto; display: block; }

  .hero-inner {
    padding: 30px 20px;
  }

  .hero-title { font-size: 24px; }
  .hero-eyebrow { font-size: 10px; }
  .hero-sub { font-size: 13px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { text-align: center; justify-content: center; }

  .slideshow { height: 240px; }
  .slide img { max-height: 220px; }

  .features { grid-template-columns: 1fr; }
  .home-products { grid-template-columns: repeat(2, 1fr); }
  .feat-num { font-size: 24px; }
  .features-banner { padding: 15px 0; }
  .feat-stat { padding: 0 25px; min-width: 120px; }
  .feat-label { font-size: 9px; }
  .features-banner-wrap::before,
  .features-banner-wrap::after { display: none; }
  .section.section-features { -webkit-mask-image: none; mask-image: none; }
  .products-header { flex-direction: column; }

  .product-card { flex-direction: column; }
  .product-card-img { width: 100%; height: 150px; }

  .section { padding: 50px 0; }
  .section-title { font-size: 24px; }

  .content-area { padding: 30px 18px 60px; }
  .content-area h1 { font-size: 26px; }

  .product-page { flex-direction: column; gap: 25px; }
  .product-page .product-image { width: 100%; }

  .linear-variants { grid-template-columns: repeat(2, 1fr); }
  .download-columns { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .products-hero h1 { font-size: 28px; }
  .products-hero { padding: 40px 0 35px; }
  .products-section { padding: 40px 0; }
  .linear-showcase { grid-template-columns: repeat(2, 1fr); }
  .showcase-body { padding: 20px; }
  .showcase-body h3 { font-size: 17px; }
  .controller-body { padding: 20px; }
  .controller-body h3 { font-size: 17px; }
  .footer-grid { flex-direction: column; gap: 20px; }
  .footer-brand { flex-direction: column; text-align: left; align-items: flex-start; }

  .about-grid { gap: 24px; }
}

/* Small phones */
@media (max-width: 400px) {
  /* Slightly smaller on tiny screens */
  .geo-sq:nth-child(n+13) { display: none; }

  .header-inner { padding: 0 16px; height: 60px; }
  .logo img { height: 52px; }

  .hero-inner { padding: 24px 16px; }
  .hero-title { font-size: 24px; }

  .content-area { padding: 24px 14px 50px; }
  .section-inner { padding: 0 16px; }

  .nav-item { padding: 12px 22px; font-size: 14px; }

  .linear-variants { grid-template-columns: 1fr; }
}

/* Download Modal */
.dl-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.dl-modal-overlay.active {
  display: flex;
}
.dl-modal {
  background: linear-gradient(160deg, #0E1A30 0%, #0A1226 50%, #081020 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 40px;
  max-width: 420px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  animation: modalIn 0.3s ease;
  color: var(--silver-200);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.dl-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--silver-600);
  cursor: pointer;
  line-height: 1;
}
.dl-modal-close:hover { color: var(--silver-900); }
.dl-modal h2 {
  font-family: 'Titillium Web', sans-serif;
  font-size: 20px;
  color: var(--silver-800);
  margin-bottom: 8px;
}
.dl-modal p {
  font-size: 14px;
  color: var(--silver-600);
  margin-bottom: 20px;
}
.dl-modal-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--silver-400);
  border-radius: 4px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background: white;
  color: var(--silver-800);
  margin-bottom: 14px;
  box-sizing: border-box;
}
.dl-modal-input:focus {
  outline: none;
  border-color: var(--red);
}
.dl-modal-submit {
  width: 100%;
  padding: 10px;
  font-size: 14px;
}
.dl-modal-error {
  color: var(--red);
  font-size: 13px;
  margin-top: 8px;
  display: none;
}
