/* ============================================
   STRATOSYTE — Global CSS (Light Theme)
   ============================================ */

/* --- Color Variables --- */
:root {
  --color-red:           #CC0000;
  --color-indigo:        #4B0082;
  --color-white:         #FFFFFF;
  --color-black:         #0D0D0D;

  /* Derived shades */
  --color-red-dark:      #AA0000;
  --color-indigo-dark:   #36005E;
  --color-indigo-light:  #6A00B8;
  --color-gray:          #CCCCCC;
  --color-gray-dark:     #888888;

  /* Light theme surface colours */
  --bg-body:             #FFFFFF;
  --bg-surface:          #F5F5F7;
  --bg-surface-2:        #ECECF0;
  --text-primary:        #0D0D0D;
  --text-secondary:      #444444;
  --text-muted:          #888888;
  --border-light:        rgba(75,0,130,0.12);
  --border-mid:          rgba(75,0,130,0.22);
  --shadow-card:         0 2px 16px rgba(0,0,0,0.07);
}

:root {
  

  /* Font sizes */
  --font-xs:   12px;   /* labels, tags, eyebrows, badges */
  --font-sm:   14px;   /* small body, captions, card descriptions */
  --font-base: 16px;   /* standard body copy */
  --font-md:   16px;   /* slightly larger body */
  --font-lg:   18px;   /* card titles, sub-headings */
  --font-xl:   22px;   /* section sub-headings */
  --font-2xl:  28px;   /* medium headings */
  --font-3xl:  36px;   /* large section headings */
  --font-4xl:  48px;   /* hero/page headings */
}
/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  max-width: 1440px;
  margin: 0 auto;   
   background: var(--bg-body);
  color: var(--text-primary);
  font-family: 'Barlow', sans-serif;
  line-height: 1.6;
}

/* ============================================
   HEADER & NAVIGATION  (stays black)
   ============================================ */
.nav-wrap {
  background: var(--color-black);
  border-bottom: 2px solid var(--color-red);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  /*
   * TODO: Replace SVG with your 5-frame animated logo.
   * Options:
   *   - CSS @keyframes sprite animation
   *   - Animated SVG / GIF / APNG / WebP
   *   - <canvas> frame animator
   */
}

.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-text span { color: var(--color-red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links > li { position: relative; }

.nav-links a {
  color: var(--color-gray);
  text-decoration: none;
  font-size: var(--font-base);
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 60px;
}

.nav-links a:hover,
.nav-links a.active { color: var(--color-red); }

.nav-chevron {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s;
}

.nav-item-products:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown — dark, drops from black nav */
.nav-dropdown {
  position: absolute;
  top: 58px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #1a1a1a;
  border: 1px solid rgba(75,0,130,0.4);
  border-top: 2px solid var(--color-red);
  min-width: 230px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.nav-item-products:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  border-bottom: 1px solid rgba(75,0,130,0.2);
  transition: background 0.2s;
  height: auto;
}

.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: rgba(75,0,130,0.18); }

.dropdown-icon {
  width: 32px;
  height: 32px;
  border-radius: 2px;
  background: rgba(204,0,0,0.1);
  border: 1px solid rgba(204,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dropdown-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--color-red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dropdown-text { display: flex; flex-direction: column; }

.dropdown-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: var(--font-base);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 3px;
}

.dropdown-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

.dropdown-arrow {
  margin-left: auto;
  width: 12px;
  height: 12px;
  stroke: rgba(255,255,255,0.25);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: stroke 0.2s;
}

.dropdown-item:hover .dropdown-arrow { stroke: var(--color-red); }

.nav-cta {
  background: var(--color-red) !important;
  color: var(--color-white) !important;
  padding: 7px 18px;
  border-radius: 2px;
  font-size: 12px !important;
  letter-spacing: 1.5px;
  height: auto !important;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--color-red-dark) !important; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  background: var(--bg-body);
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 400px;
  border-bottom: 1px solid var(--border-light);
}

.video-frame-outer { position: relative; }

.video-frame-outer::before,
.video-frame-outer::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--color-red);
  border-style: solid;
  z-index: 3;
}

.video-frame-outer::before { top: -6px; left: -6px; border-width: 3px 0 0 3px; }
.video-frame-outer::after  { bottom: -6px; right: -6px; border-width: 0 3px 3px 0; }

.video-frame-inner-tl,
.video-frame-inner-br {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--color-red);
  border-style: solid;
  z-index: 3;
}

.video-frame-inner-tl { top: -6px; right: -6px; border-width: 3px 3px 0 0; }
.video-frame-inner-br { bottom: -6px; left: -6px; border-width: 0 0 3px 3px; }

/* Video frame stays dark — it's a screen */
.video-frame-border {
  border: 2px solid var(--color-indigo);
  border-radius: 4px;
  padding: 6px;
  background: #1a0030;
  box-shadow: 0 0 0 1px rgba(75,0,130,0.25), inset 0 0 20px rgba(75,0,130,0.2), var(--shadow-card);
  position: relative;
}

.video-frame-topbar {
  background: var(--color-indigo-dark);
  border-radius: 2px 2px 0 0;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-red); opacity: 0.7; }
.topbar-dot:nth-child(2) { background: var(--color-indigo-light); }
.topbar-dot:nth-child(3) { background: #999; opacity: 0.5; }

.topbar-label {
  margin-left: auto;
  font-size: var(--font-xs);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-family: 'Barlow Condensed', sans-serif;
}

.video-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #050510;
  overflow: hidden;
  border-radius: 0 0 2px 2px;
}

.video-screen video { width: 100%; height: 100%; object-fit: cover; display: block; }

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #0a0015 0%, #1a0035 50%, #0a0015 100%);
}

.play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--color-red);
  display: flex; align-items: center; justify-content: center;
  background: rgba(204,0,0,0.1);
}

.play-btn svg { width: 20px; height: 20px; fill: var(--color-red); margin-left: 3px; }

.video-placeholder-text {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-family: 'Barlow Condensed', sans-serif;
}

.scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.06) 2px, rgba(0,0,0,0.06) 4px);
  pointer-events: none; z-index: 2;
}

.video-frame-footer {
  display: flex; align-items: center; gap: 8px; margin-top: 8px; padding: 0 2px;
}

.frame-footer-line { flex: 1; height: 1px; background: var(--color-indigo); opacity: 0.25; }

.frame-footer-label {
  font-size: var(--font-xs); letter-spacing: 2px; text-transform: uppercase;
  color: rgba(204,0,0,0.45);
  font-family: 'Barlow Condensed', sans-serif;
}

.hero-content { display: flex; flex-direction: column; justify-content: center; gap: 1.2rem; }

.hero-tag {
  display: inline-block;
  background: var(--color-indigo);
  color: var(--color-white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 4px 12px; align-self: flex-start;
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px; font-weight: 800;
  color: var(--text-primary);
  line-height: 1.0; text-transform: uppercase; letter-spacing: 1px;
}

.hero-headline span { color: var(--color-red); }
.hero-divider { width: 48px; height: 3px; background: var(--color-red); }

.hero-body {
  font-size: var(--font-base); color: var(--text-secondary);
  line-height: 1.75; max-width: 340px;
}

.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--color-red); color: var(--color-white);
  font-size: var(--font-sm); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 11px 22px; text-decoration: none; border-radius: 2px;
  align-self: flex-start; transition: background 0.2s;
}

.hero-cta:hover { background: var(--color-red-dark); }

/* ============================================
   TAGLINE STRIP
   ============================================ */
.tagline-strip {
  background: var(--color-indigo);
  padding: 12px 2.5rem;
  display: flex; align-items: center; gap: 1.2rem;
}

.tagline-strip-line { flex: 1; height: 1px; background: rgba(255,255,255,0.2); }

.tagline-strip p {
  font-size: var(--font-base); font-style: italic; font-weight: 400;
  color: var(--color-white); letter-spacing: 0.3px;
  text-align: center; white-space: nowrap;
}

/* ============================================
   PROCESS RIBBON
   ============================================ */
.process-section {
  background: var(--bg-surface);
  padding: 2rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.process-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--color-red); margin-bottom: 1rem; text-align: center;
}

.ribbon-wrapper { position: relative; overflow: hidden; }

.ribbon-wrapper::before,
.ribbon-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 60px; z-index: 3; pointer-events: none;
}

.ribbon-wrapper::before { left: 0; background: linear-gradient(to right, var(--bg-surface), transparent); }
.ribbon-wrapper::after  { right: 0; background: linear-gradient(to left, var(--bg-surface), transparent); }

.chevron-track {
  display: flex; align-items: stretch; height: 70px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  cursor: grab; user-select: none; justify-content: center;
}

.chevron-track::-webkit-scrollbar { display: none; }
.chevron-track.grabbing { cursor: grabbing; }

.chevron-item {
  position: relative;
  flex: 1 1 0;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.8rem 0 2.8rem;
  clip-path: polygon(0% 0%, calc(100% - 22px) 0%, 100% 50%, calc(100% - 22px) 100%, 0% 100%, 22px 50%);
  scroll-snap-align: start;
  transition: filter 0.2s, background-color 0.4s;
  margin-right: -1px;
}

.chevron-item:first-child {
  clip-path: polygon(0% 0%, calc(100% - 22px) 0%, 100% 50%, calc(100% - 22px) 100%, 0% 100%);
  padding-left: 1.4rem;
}

.chevron-item:last-child {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 22px 50%);
}

/* Wave animation — flows left to right on wide screens */
@keyframes chevronWave {
  0%   { filter: brightness(1); }
  50%  { filter: brightness(1.35); }
  100% { filter: brightness(1); }
}

.chevron-item:nth-child(1) { animation: chevronWave 3s ease-in-out infinite; animation-delay: 0s; }
.chevron-item:nth-child(2) { animation: chevronWave 3s ease-in-out infinite; animation-delay: 0.4s; }
.chevron-item:nth-child(3) { animation: chevronWave 3s ease-in-out infinite; animation-delay: 0.8s; }
.chevron-item:nth-child(4) { animation: chevronWave 3s ease-in-out infinite; animation-delay: 1.2s; }
.chevron-item:nth-child(5) { animation: chevronWave 3s ease-in-out infinite; animation-delay: 1.6s; }
.chevron-item:nth-child(6) { animation: chevronWave 3s ease-in-out infinite; animation-delay: 2.0s; }

.chevron-item:hover {
  filter: brightness(1.2) !important;
  animation-play-state: paused;
}

.chevron-item:hover { filter: brightness(1.15); }
.chevron-red    { background: var(--color-red); }
.chevron-indigo { background: var(--color-indigo); }
.chevron-dark   { background: var(--color-black); }

.chevron-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 800;
  color: rgba(255,255,255,0.1);
  position: absolute; left: 2.2rem; line-height: 1; pointer-events: none;
}

.chevron-item:first-child .chevron-num { left: 1rem; }

.chevron-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: var(--font-base); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--color-white); text-align: center; line-height: 1.2;
  z-index: 1; pointer-events: none;
}

.chevron-text small {
  display: block; font-size: var(--font-xs); font-weight: 400; letter-spacing: 1px;
  color: rgba(255,255,255,0.5); margin-top: 3px; text-transform: uppercase;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section { background: var(--bg-body); padding: 3rem 2rem; }

.services-grid {
  position: relative; display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 300px; gap: 4px;
}

.service-tile { position: relative; overflow: hidden; cursor: pointer; }

.service-tile-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.5s ease; filter: brightness(0.55);
}

.service-tile:hover .service-tile-bg { transform: scale(1.06); filter: brightness(0.25); }

.tile-label {
  position: absolute; top: 0; left: 0;
  background: var(--color-red); padding: 6px 14px; z-index: 2; transition: background 0.3s;
}

.service-tile:hover .tile-label { background: var(--color-indigo); }

.tile-label span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px ; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--color-white);
}

.tile-overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 2.5rem 1.8rem 1.8rem; opacity: 0; transition: opacity 0.35s ease;
}

.service-tile:hover .tile-overlay { opacity: 1; }

.overlay-divider { width: 32px; height: 2px; background: var(--color-red); margin-bottom: 12px; }

.overlay-desc { font-size: 16px; color: rgba(255,255,255,0.9); line-height: 1.7; margin-bottom: 16px; }

.overlay-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: var(--font-sm); font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--color-red); text-decoration: none;
  border-bottom: 1px solid rgba(204,0,0,0.4); padding-bottom: 2px;
}

.overlay-link svg {
  width: 12px; height: 12px; stroke: var(--color-red); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.services-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10; width: 180px; height: 180px; border-radius: 50%;
  background: var(--color-white); border: 5px solid var(--color-red);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(75,0,130,0.15), 0 8px 32px rgba(0,0,0,0.2);
  pointer-events: none;
}

.services-center-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px; font-weight: 800;
  color: var(--text-primary); letter-spacing: 2px; text-transform: uppercase;
  line-height: 1; text-align: center;
}

.services-center-text span {
  display: block; font-size: 20px; font-weight: 600;
  letter-spacing: 3px; color: var(--color-red); margin-bottom: 4px;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
  background: var(--bg-surface);
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.products-header { text-align: center; margin-bottom: 2.5rem; padding: 0 2rem; }

.products-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 800; color: var(--text-primary);
  letter-spacing: 3px; text-transform: uppercase; line-height: 1; margin-bottom: 0.5rem;
}

.products-header h2 span { color: var(--color-red); }
.products-header p { font-size: var(--font-base); font-style: italic; color: var(--text-muted); }
.products-header-line { width: 48px; height: 3px; background: var(--color-red); margin: 0.8rem auto 0; }

.products-ribbon-wrapper { position: relative; overflow: hidden; }

.products-ribbon-wrapper::before,
.products-ribbon-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 3; pointer-events: none;
}

.products-ribbon-wrapper::before { left: 0; background: linear-gradient(to right, var(--bg-surface), transparent); }
.products-ribbon-wrapper::after  { right: 0; background: linear-gradient(to left, var(--bg-surface), transparent); }

.products-track {
  display: flex; gap: 20px; padding: 1rem 2rem 1.5rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  cursor: grab; user-select: none;justify-content: center;
}

.products-track::-webkit-scrollbar { display: none; }
.products-track.grabbing { cursor: grabbing; }

.product-card {
  flex: 0 0 220px;
  background: var(--bg-body);
  border: 1px solid var(--border-mid);
  border-radius: 3px; overflow: hidden;
  display: flex; flex-direction: column;
  scroll-snap-align: start;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  text-decoration: none; cursor: pointer;
  box-shadow: var(--shadow-card);
}

.product-card:hover {
  border-color: var(--color-red);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(204,0,0,0.1);
}

.product-img-wrap { height: 160px; overflow: hidden; position: relative; }

.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; filter: brightness(0.9);
}

.product-card:hover .product-img-wrap img { transform: scale(1.05); filter: brightness(1); }

.product-badge {
  position: absolute; bottom: 8px; right: 8px;
  padding: 3px 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: var(--font-xs); font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; border-radius: 2px;
}

.badge-internal { background: rgba(75,0,130,0.85); color: var(--color-white); }
.badge-external { background: rgba(204,0,0,0.85); color: var(--color-white); }
.badge-soon     { background: rgba(30,30,30,0.7); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2); }

.product-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex; flex-direction: column; flex: 1; gap: 7px;
}

.product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 800;
  color: var(--text-primary); letter-spacing: 2px;
  text-transform: uppercase; line-height: 1.1;
}

.product-name span { color: var(--color-red); }
.product-divider { width: 28px; height: 2px; background: var(--color-red); }
.product-desc { font-size: var(--font-sm); color: var(--text-secondary); line-height: 1.65; flex: 1; }

.product-link-row {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: var(--font-sm); font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--color-red); border: 1px solid rgba(204,0,0,0.35);
  padding: 6px 12px; border-radius: 2px; transition: background 0.2s, color 0.2s;
}

.product-card:hover .product-link-row { background: var(--color-red); color: var(--color-white); }

.product-link-row svg {
  width: 11px; height: 11px; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.product-card-dashed {
  flex: 0 0 220px; border: 1px dashed rgba(75,0,130,0.25);
  border-radius: 3px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 320px; padding: 1.5rem;
  scroll-snap-align: start; background: transparent;
}

.product-card-dashed p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: var(--font-sm); letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); margin-top: 10px;
}

/* ============================================
   SCROLL NAV (shared for ribbons)
   ============================================ */
.ribbon-nav {
  display: flex; justify-content: center; align-items: center;
  gap: 16px; margin-top: 1.2rem; padding: 0 2rem;
}

.nav-arrow {
  width: 32px; height: 32px;
  border: 1px solid rgba(204,0,0,0.4); background: transparent;
  color: var(--color-red); display: flex; align-items: center; justify-content: center;
  cursor: pointer; border-radius: 2px; font-size: 15px; transition: background 0.2s;
}

.nav-arrow:hover { background: rgba(204,0,0,0.08); }

.scroll-dots { display: flex; gap: 6px; }

.scroll-dot {
  width: 20px; height: 3px; border-radius: 2px;
  background: rgba(0,0,0,0.1); transition: background 0.3s;
}

.scroll-dot.active { background: var(--color-red); }

/* ============================================
   FOOTER  (always stays dark)
   ============================================ */
.footer {
  background: var(--color-black);
  border-top: 2px solid var(--color-indigo);
}

.footer-body {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem; padding: 3rem 2.5rem 2rem;
}

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 1rem; text-decoration: none;
}

.footer-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--color-white); letter-spacing: 2px; text-transform: uppercase;
}

.footer-logo-text span { color: var(--color-red); }

.footer-tagline {
  font-size: 12.5px; color: rgba(255,255,255,0.4);
  line-height: 1.7; margin-bottom: 1.4rem; max-width: 220px;
}

.footer-socials { display: flex; gap: 10px; }

.social-btn {
  width: 32px; height: 32px; border: 1px solid rgba(75,0,130,0.5);
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: border-color 0.2s, background 0.2s;
}

.social-btn:hover { border-color: var(--color-red); background: rgba(204,0,0,0.1); }

.social-btn svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.45); transition: fill 0.2s; }
.social-btn:hover svg { fill: var(--color-red); }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: var(--font-base); font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--color-red); margin-bottom: 1rem; padding-bottom: 8px;
  border-bottom: 1px solid rgba(75,0,130,0.3);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
  font-size: var(--font-base); color: rgba(255,255,255,0.45);
  text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.2s;
}

.footer-links a::before {
  content: ''; width: 12px; height: 1px;
  background: var(--color-red); opacity: 0; transition: opacity 0.2s; flex-shrink: 0;
}

.footer-links a:hover { color: var(--color-white); }
.footer-links a:hover::before { opacity: 1; }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: flex-start; gap: 10px; }

.contact-icon {
  width: 28px; height: 28px; background: rgba(75,0,130,0.2);
  border: 1px solid rgba(75,0,130,0.35); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

.contact-icon svg {
  width: 13px; height: 13px; stroke: var(--color-red); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.contact-text { font-size: 12.5px; color: rgba(255,255,255,0.45); line-height: 1.55; }
.contact-text a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.contact-text a:hover { color: var(--color-red); }

.footer-bottom {
  border-top: 1px solid rgba(75,0,130,0.2); padding: 14px 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
}

.footer-bottom p { font-size: var(--font-sm); color: rgba(255,255,255,0.22); letter-spacing: 0.5px; }
.footer-bottom p span { color: var(--color-red); }

.footer-bottom-links { display: flex; gap: 1.5rem; }

.footer-bottom-links a {
  font-size: var(--font-sm); color: rgba(255,255,255,0.22);
  text-decoration: none; letter-spacing: 0.5px; transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--color-red); }

/* ============================================
   HERO CONTENT — two-column layout (index)
   ============================================ */
.hero-content { display: flex; flex-direction: column; justify-content: center; gap: 1.2rem; }

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px; font-weight: 800;
  color: var(--text-primary); line-height: 1.0;
  text-transform: uppercase; letter-spacing: 1px;
}

.hero-headline span { color: var(--color-red); }

.hero-body { font-size: var(--font-base); color: var(--text-secondary); line-height: 1.75; }

.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--color-red); color: var(--color-white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: var(--font-sm); font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 13px 24px; text-decoration: none; border-radius: 2px;
  align-self: flex-start; transition: background 0.2s;
  border: none; cursor: pointer;
}

.hero-cta:hover { background: var(--color-red-dark); }

.hero-inner-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

.hero-inner-grid h1 { padding-right: 1.8rem; }

.hero-vertical-divider {
  width: 3px;
  background: var(--color-red);
  border-radius: 2px;
  margin: 4px 0;
}

.hero-text-cta {
  display: flex; flex-direction: column;
  justify-content: center; gap: 1.2rem;
  padding-left: 1.8rem;
}

/* ============================================
   S-BOT PAGE STYLES
   ============================================ */
.sbot-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 3rem 2.5rem;
  overflow: hidden;
  background: var(--color-black);
}

.sbot-hero-box {
  background: rgba(75,0,130,0.88);
  border-left: 4px solid var(--color-red);
  padding: 2rem 2.2rem;
  max-width: 400px;
  flex-shrink: 0;
}

.sbot-hero-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 0.8rem;
}

.sbot-hero-box h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--color-white);
  margin-bottom: 1.2rem;
}

.sbot-hero-box h1 span { color: var(--color-red); }

/* Feature banner — rotating */
.feature-banner-rotator {
  background: var(--color-black);
  border-top: 2px solid var(--color-red);
  border-bottom: 2px solid var(--color-indigo);
  overflow: hidden;
  position: relative;
  height: 110px;
}

.feature-banner-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-banner {
  flex: 0 0 33.333%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 2.5rem;
  text-align: center;
  gap: 0.3rem;
}

.feature-banner-sub {
  font-size: var(--font-sm); font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--color-red);
}

.feature-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--color-white); line-height: 1.05;
}

.feature-banner h2 span { color: var(--color-red); }

.feature-banner-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--color-red);
  width: 0%;
  opacity: 0.7;
}

/* Benefits */
.benefits-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-body);
}

.benefit-card {
  padding: 2.2rem 2rem;
  border-right: 1px solid var(--border-light);
  position: relative;
}

.benefit-card:last-child { border-right: none; }
.benefit-card:nth-child(1) { border-top: 3px solid var(--color-red); }
.benefit-card:nth-child(2) { border-top: 3px solid var(--color-indigo); }
.benefit-card:nth-child(3) { border-top: 3px solid var(--color-red); }

.benefit-icon {
  width: 42px; height: 42px; border-radius: 2px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}

.benefit-icon svg {
  width: 22px; height: 22px; stroke: var(--color-white); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.icon-red    { background: var(--color-red); }
.icon-indigo { background: var(--color-indigo); }

.benefit-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-primary); margin-bottom: 0.7rem;
}

.benefit-card p { font-size: var(--font-base); color: var(--text-secondary); line-height: 1.7; }

/* Split sections */
.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 340px; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-img { position: relative; overflow: hidden; min-height: 300px; }

.split-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75); transition: transform 0.5s;
}

.split-section:hover .split-img img { transform: scale(1.04); }

.split-content {
  background: var(--color-indigo-dark);
  padding: 3rem 2.5rem;
  display: flex; flex-direction: column; justify-content: center; gap: 1rem;
  position: relative;
}

.split-content::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--color-red);
}

.split-section.reverse .split-content::before { left: auto; right: 0; }

.split-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--color-red);
}

.split-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 800; text-transform: uppercase;
  line-height: 1.1; letter-spacing: 1px; color: var(--color-white);
}

.split-divider { width: 36px; height: 2px; background: var(--color-red); }
.split-content p { font-size: var(--font-base); color: rgba(255,255,255,0.65); line-height: 1.75; }

/* FAQ */
.faq-section { padding: 3.5rem 2.5rem; background: var(--bg-surface); }
.faq-header { text-align: center; margin-bottom: 2.5rem; }

.faq-header p {
  font-size: var(--font-sm); font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--color-red); margin-bottom: 0.4rem;
}

.faq-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px; color: var(--text-primary);
}

.faq-header-line { width: 48px; height: 3px; background: var(--color-red); margin: 0.8rem auto 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
.faq-item {
  border: 1px solid var(--border-mid); border-radius: 2px;
  overflow: hidden; cursor: pointer; transition: border-color 0.2s;
  background: var(--bg-body); box-shadow: var(--shadow-card);
}

.faq-item:hover, .faq-item.open { border-color: var(--color-red); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; background: rgba(75,0,130,0.05); gap: 12px;
}

.faq-question span { font-size: var(--font-base); font-weight: 500; color: var(--text-primary); line-height: 1.4; }

.faq-toggle {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1px solid rgba(204,0,0,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.3s;
}

.faq-item.open .faq-toggle { background: var(--color-red); transform: rotate(45deg); }

.faq-toggle svg { width: 10px; height: 10px; stroke: var(--color-red); fill: none; stroke-width: 2.5; stroke-linecap: round; }
.faq-item.open .faq-toggle svg { stroke: white; }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 16px; font-size: var(--font-base);
  color: var(--text-secondary); line-height: 1.7;
  background: var(--bg-surface-2);
}

.faq-item.open .faq-answer { max-height: 200px; padding: 14px 16px; }

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */
.about-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 5rem 3.5rem;
  overflow: hidden;
  background: var(--bg-body);
}

.about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(75,0,130,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75,0,130,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.about-hero::after {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(75,0,130,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-orb-2 {
  position: absolute; bottom: -80px; left: 20%;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(204,0,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-content { position: relative; z-index: 2; max-width: 700px; }

.about-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--color-red);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 12px;
}

.about-eyebrow::before {
  content: ''; width: 30px; height: 2px; background: var(--color-red);
}

.about-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px; font-weight: 800; text-transform: uppercase;
  line-height: 0.92; letter-spacing: 1px;
  color: var(--text-primary); margin-bottom: 1.5rem;
}

.about-hero h1 span { color: var(--color-red); }

.about-hero-body {
  font-size: 15px; color: var(--text-secondary); line-height: 1.85;
  max-width: 560px;
  border-left: 3px solid var(--color-indigo);
  padding-left: 1.2rem;
}

/* Stat strip */
.stat-strip {
  background: var(--color-indigo);
  border-top: 1px solid rgba(204,0,0,0.25);
  border-bottom: 1px solid rgba(75,0,130,0.4);
  display: grid; grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 1.8rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.15);
  text-align: center; position: relative; transition: background 0.3s;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.05); }

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px; font-weight: 800;
  color: var(--color-white); line-height: 1; display: block;
}

.stat-num span { color: var(--color-red); }

.stat-label {
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  margin-top: 6px; display: block;
}

/* About company */
.about-company { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }

.about-company-img {
  position: relative; overflow: hidden; min-height: 400px;
  background:
    linear-gradient(135deg, rgba(75,0,130,0.4), rgba(13,13,13,0.7)),
    url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=900&q=80') center/cover no-repeat;
  transition: background-position 0.8s ease;
}

.about-company-img:hover { background-position: center 30%; }

.about-company-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.about-company-img-tag {
  display: inline-block; background: var(--color-red);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--color-white); padding: 4px 12px;
}

.about-company-text {
  background: var(--bg-surface);
  padding: 4rem 3.5rem;
  display: flex; flex-direction: column; justify-content: center; gap: 1.2rem;
  border-left: 1px solid var(--border-light);
}

.section-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--color-red);
}

.section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; font-weight: 800; text-transform: uppercase;
  line-height: 1.05; letter-spacing: 1px; color: var(--text-primary);
}

.section-heading span { color: var(--color-red); }
.section-divider { width: 40px; height: 3px; background: var(--color-red); }
.section-body { font-size: var(--font-base); color: var(--text-secondary); line-height: 1.85; }

/* Vision / Mission / Values */
.vmv-section { background: var(--bg-body); padding: 4rem 2.5rem; }

.vmv-header { text-align: center; margin-bottom: 3rem; }

.vmv-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text-primary);
}

.vmv-header h2 span { color: var(--color-red); }
.vmv-header-line { width: 48px; height: 3px; background: var(--color-red); margin: 0.8rem auto 0; }

.vmv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.vmv-card {
  border: 1px solid var(--border-mid);
  border-top: 3px solid var(--color-red);
  padding: 2.2rem 2rem;
  background: var(--bg-surface);
  position: relative; overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  box-shadow: var(--shadow-card);
}

.vmv-card:nth-child(2) { border-top-color: var(--color-indigo); }
.vmv-card:nth-child(3) { border-top-color: var(--color-red); }

.vmv-card:hover { background: var(--bg-surface-2); transform: translateY(-4px); border-color: var(--border-mid); }

.vmv-card::before {
  content: attr(data-letter);
  position: absolute; top: -10px; right: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 100px; font-weight: 800;
  color: rgba(75,0,130,0.04); line-height: 1; pointer-events: none;
}

.vmv-icon {
  width: 44px; height: 44px; border-radius: 2px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem;
}

.vmv-icon svg {
  width: 22px; height: 22px; stroke: var(--color-white); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.icon-bg-red    { background: var(--color-red); }
.icon-bg-indigo { background: var(--color-indigo); }

.vmv-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-primary); margin-bottom: 0.8rem;
}

.vmv-card p { font-size: var(--font-base); color: var(--text-secondary); line-height: 1.8; }

/* Core values */
.values-section {
  background: var(--bg-surface);
  padding: 3.5rem 2.5rem;
  border-top: 1px solid var(--border-light);
}

.values-header { text-align: center; margin-bottom: 2.5rem; }

.values-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text-primary);
}

.values-header h2 span { color: var(--color-red); }
.values-header-line { width: 48px; height: 3px; background: var(--color-red); margin: 0.8rem auto 0; }

.values-track { display: flex; gap: 0; overflow: hidden; }

.value-item {
  flex: 1; padding: 1.8rem 1.5rem;
  border-right: 1px solid var(--border-light);
  position: relative; text-align: center; transition: background 0.3s;
}

.value-item:last-child { border-right: none; }
.value-item:hover { background: var(--bg-surface-2); }

.value-item::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 0; height: 2px;
  background: var(--color-red); transition: width 0.3s;
}

.value-item:hover::after { width: 40px; }

.value-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: var(--font-sm); font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--color-red);
  margin-bottom: 0.6rem; display: block;
}

.value-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-primary); margin-bottom: 0.5rem;
}

.value-desc { font-size: var(--font-sm); color: var(--text-muted); line-height: 1.65; }

/* Team section */
.team-section { background: var(--bg-body); padding: 4rem 2.5rem; }

.team-header { text-align: center; margin-bottom: 3rem; }

.team-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text-primary);
}

.team-header h2 span { color: var(--color-red); }
.team-header p { font-size: var(--font-base); font-style: italic; color: var(--text-muted); margin-top: 0.5rem; }
.team-header-line { width: 48px; height: 3px; background: var(--color-red); margin: 0.8rem auto 0; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.team-card {
  border: 1px solid var(--border-mid); border-radius: 3px;
  overflow: hidden; background: var(--bg-surface);
  transition: border-color 0.3s, transform 0.3s; box-shadow: var(--shadow-card);
}

.team-card:hover { border-color: var(--color-red); transform: translateY(-5px); }

.team-photo {
  position: relative; height: 220px;
  background: linear-gradient(135deg, var(--bg-surface-2), var(--bg-surface));
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}

.team-photo-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; width: 100%; height: 100%;
}

.team-photo-icon {
  width: 70px; height: 70px; border-radius: 50%;
  border: 2px dashed var(--border-mid);
  display: flex; align-items: center; justify-content: center;
}

.team-photo-icon svg {
  width: 30px; height: 30px; stroke: var(--color-indigo); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}

.team-photo-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: var(--font-xs); font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted);
}

.team-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform 0.5s ease; filter: brightness(0.95);
}

.team-card:hover .team-photo img { transform: scale(1.05); filter: brightness(1); }

.team-social-overlay {
  position: absolute; inset: 0;
  background: rgba(75,0,130,0.6);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; transition: opacity 0.3s;
}

.team-card:hover .team-social-overlay { opacity: 1; }

.team-social-btn {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background 0.2s, border-color 0.2s;
}

.team-social-btn:hover { background: var(--color-red); border-color: var(--color-red); }
.team-social-btn svg { width: 13px; height: 13px; fill: rgba(255,255,255,0.8); }

.team-body {
  padding: 1.2rem 1.3rem 1.4rem;
  border-top: 2px solid var(--color-indigo);
}

.team-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-primary);
}

.team-name.placeholder { color: var(--text-muted); }
.team-role { font-size: var(--font-sm); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--color-red); margin-bottom: 0.7rem; }
.team-role.placeholder { color: rgba(204,0,0,0.35); }
.team-bio { font-size: var(--font-sm); color: var(--text-muted); line-height: 1.65; font-style: italic; }

/* Why us */
.whyus-section {
  background: var(--color-indigo);
  border-top: 2px solid var(--color-red);
  border-bottom: 1px solid rgba(75,0,130,0.4);
  padding: 3.5rem 2.5rem;
}

.whyus-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: center; }

.whyus-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: var(--color-white); line-height: 1; margin-bottom: 1rem;
}

.whyus-left h2 span { color: var(--color-red); }
.whyus-left p { font-size: var(--font-base); color: rgba(255,255,255,0.55); line-height: 1.75; }

.whyus-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.whyus-item { display: flex; align-items: flex-start; gap: 12px; }

.whyus-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-red); flex-shrink: 0; margin-top: 5px;
}

.whyus-item-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--color-white); margin-bottom: 4px;
}

.whyus-item-text p { font-size: var(--font-sm); color: rgba(255,255,255,0.45); line-height: 1.6; }

/* CTA banner */
.cta-banner {
  background: var(--bg-body); padding: 3.5rem 2.5rem;
  text-align: center; border-top: 1px solid var(--border-light);
}

.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-primary); margin-bottom: 0.8rem;
}

.cta-banner h2 span { color: var(--color-red); }
.cta-banner p { font-size: 14px; color: var(--text-muted); margin-bottom: 2rem; }

.cta-btns { display: flex; gap: 16px; justify-content: center; }

.cta-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--color-red); color: var(--color-white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: var(--font-base); font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 13px 28px;
  text-decoration: none; border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}

.cta-btn-primary:hover { background: var(--color-red-dark); transform: translateY(-2px); }

.cta-btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; border: 1px solid var(--border-mid);
  color: var(--text-secondary);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: var(--font-base); font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 13px 28px;
  text-decoration: none; border-radius: 2px;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.cta-btn-secondary:hover { border-color: var(--color-red); color: var(--text-primary); transform: translateY(-2px); }

.cta-btn-primary svg, .cta-btn-secondary svg {
  width: 14px; height: 14px; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ============================================
   HAMBURGER MENU
   ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-black);
  z-index: 150;
  flex-direction: column;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  border-top: 1px solid rgba(204,0,0,0.3);
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  color: var(--color-gray);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(75,0,130,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}

.nav-mobile-menu a:hover,
.nav-mobile-menu a.active { color: var(--color-red); }

.nav-mobile-menu .mobile-cta {
  background: var(--color-red);
  color: var(--color-white) !important;
  padding: 14px 20px;
  border-radius: 2px;
  text-align: center;
  margin-top: 1.5rem;
  border-bottom: none !important;
  justify-content: center !important;
}

.nav-mobile-menu .mobile-cta:hover { background: var(--color-red-dark); }

.nav-mobile-submenu {
  display: none;
  flex-direction: column;
  padding: 0.5rem 0 0.5rem 1rem;
  border-bottom: 1px solid rgba(75,0,130,0.2);
}

.nav-mobile-submenu.open { display: flex; }

.nav-mobile-submenu a {
  font-size: 14px;
  letter-spacing: 1px;
  padding: 0.6rem 0;
  border-bottom: none;
  color: rgba(255,255,255,0.6);
}

.nav-mobile-submenu a:hover { color: var(--color-red); }

/* ============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================ */
@media (max-width: 1024px) {

  /* Hero */
  .hero-section {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    min-height: auto;
    gap: 2rem;
  }

  .hero-inner-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .hero-vertical-divider { display: none; }

  .hero-inner-grid h1 { padding-right: 0; font-size: 40px !important; }

  .hero-text-cta { padding-left: 0; }

  .hero-body { max-width: 100%; }

  /* Services grid */
  .services-grid {
    grid-template-rows: 220px 220px;
  }

  .services-center {
    width: 140px;
    height: 140px;
  }

  .services-center-text { font-size: 24px; }
  .services-center-text span { font-size: 14px; }

  /* Footer */
  .footer-body {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }

  /* About */
  .about-company { grid-template-columns: 1fr; }
  .about-company-img { min-height: 280px; }
  .vmv-grid { grid-template-columns: 1fr; gap: 16px; }
  .whyus-inner { grid-template-columns: 1fr; gap: 2rem; }
  .whyus-right { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Split sections */
  .split-section { grid-template-columns: 1fr; }
  .split-section.reverse { direction: ltr; }
  .split-img { min-height: 250px; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; }

  /* Benefits */
  .benefits-section { grid-template-columns: 1fr; }
  .benefit-card { border-right: none; border-bottom: 1px solid var(--border-light); }
  .benefit-card:last-child { border-bottom: none; }

  /* Stat strip */
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================ */
@media (max-width: 768px) {

  /* Nav — show hamburger, hide desktop links */
  .hamburger { display: flex; }
  .nav-links { display: none; }

  .nav-wrap { padding: 0 1rem; }

  .logo-icon { width: 120px !important; }

  /* Hero */
  .hero-section {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }

  .hero-inner-grid h1 { font-size: 32px !important; }

  /* Logo in hero */
  .hero-content img { width: 200px !important; }

  /* Tagline strip */
  .tagline-strip { padding: 10px 1rem; }
  .tagline-strip p { font-size: 12px; white-space: normal; text-align: center; }
  .tagline-strip-line { display: none; }

  /* Process ribbon */
  .process-section { padding: 1.5rem 0; }
  .chevron-item { min-width: 120px; }
  .chevron-text { font-size: 11px; letter-spacing: 1px; }
  .chevron-text small { font-size: 9px; }

  /* Services */
  .services-section { padding: 1.5rem 0.8rem; }
  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }

  .services-center { display: none; }

  .tile-label span { font-size: 14px; }
  .overlay-desc { font-size: 13px; }

  /* Products */
  .products-section { padding: 2rem 0; }
  .products-header { padding: 0 1rem; }
  .products-track { padding: 1rem 1rem 1.5rem; justify-content: flex-start; }
  .product-card { flex: 0 0 200px; }

  /* Footer */
  .footer-body {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 12px 1rem;
  }

  /* About hero */
  .about-hero { padding: 3rem 1rem; min-height: auto; }
  .about-hero h1 { font-size: 44px; }
  .about-hero-body { font-size: 13px; }

  /* Stat strip */
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 32px; }

  /* About company text */
  .about-company-text { padding: 2rem 1rem; }
  .section-heading { font-size: 26px; }

  /* VMV */
  .vmv-section { padding: 2rem 1rem; }
  .vmv-grid { grid-template-columns: 1fr; }

  /* Values */
  .values-section { padding: 2rem 1rem; }
  .values-track { flex-direction: column; }
  .value-item { border-right: none; border-bottom: 1px solid var(--border-light); }

  /* Team */
  .team-section { padding: 2rem 1rem; }
  .team-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }

  /* Why us */
  .whyus-section { padding: 2rem 1rem; }
  .whyus-left h2 { font-size: 30px; }
  .whyus-right { grid-template-columns: 1fr; gap: 12px; }

  /* CTA banner */
  .cta-banner { padding: 2rem 1rem; }
  .cta-banner h2 { font-size: 30px; }
  .cta-btns { flex-direction: column; align-items: center; }

  /* SBOT hero */
  .sbot-hero {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 1.5rem 1rem;
  }

  .sbot-hero-box { max-width: 100%; }
  .sbot-hero-box h1 { font-size: 28px; }

  /* Feature banner */
  .feature-banner-rotator { height: 90px; }
  .feature-banner h2 { font-size: 22px; }

  /* Split sections */
  .split-content { padding: 2rem 1rem; }
  .split-content h2 { font-size: 22px; }

  /* FAQ */
  .faq-section { padding: 2rem 1rem; }
  .faq-grid { grid-template-columns: 1fr; }

  /* Benefits */
  .benefit-card { padding: 1.5rem 1rem; }

  /* Contact page */
  .contact-content { grid-template-columns: 1fr; min-height: auto; }
  .contact-left { padding: 2rem 1rem; border-right: none; border-bottom: 1px solid var(--border-light); }
  .contact-right { padding: 2rem 1rem; }
  .contact-heading { font-size: 38px; }
  .form-row { grid-template-columns: 1fr; }

  /* TekButler coming soon */
  .cs-logo-name { font-size: 48px; }
  .cs-features { grid-template-columns: 1fr; }
  .cs-notify { flex-direction: column; }
  .cs-notify input { border-right: 1px solid rgba(75,0,130,0.5); border-radius: 2px; }
  .cs-notify button { border-radius: 2px; }
  .cs-countdown { gap: 12px; }
  .cs-count-num { font-size: 28px; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================ */
@media (max-width: 480px) {

  .about-hero h1 { font-size: 34px; }
  .hero-inner-grid h1 { font-size: 26px !important; }
  .hero-content img { width: 160px !important; }

  .services-grid { grid-template-rows: repeat(4, 180px); }

  .product-card { flex: 0 0 180px; }

  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 28px; }

  .footer-body { padding: 1.2rem 0.8rem; }
}
