/* ==========================================================================
   مصنع الشعاع — Complete Unified Design System
   Front Page Exact Replica + Full Inner Page Component System + Side Circuits Fix
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&family=IBM+Plex+Mono:wght@400;500;600;700&display=swap');

/* ═══════════════ DESIGN TOKENS ═══════════════ */
:root {
  --font-sans: "Cairo", system-ui, sans-serif;
  --font-mono: "Cairo", system-ui, sans-serif;

  /* Color Palette */
  --royal-blue: #1b38b3;
  --royal-dark: #283891;
  --royal-glow: rgba(27, 56, 179, 0.15);

  --red-spark: #e63946;
  --red-dark: #c92a37;
  --red-glow: rgba(230, 57, 70, 0.18);

  --bg-page: #f5f7fc;
  --bg-white: #ffffff;
  --bg-surface: #eaedf6;
  --bg-surface-2: #f0f3fa;
  --ink-main: #0b132b;
  --text-muted: #5b6b8c;
  --text-faint: #9aa8c4;

  --border-light: rgba(30, 50, 140, 0.09);
  --border-card: rgba(30, 50, 140, 0.12);
  --border-strong: rgba(30, 50, 140, 0.22);

  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2.5rem;
}

[data-bs-theme="dark"] {
  --bg-page: #0a0e1a;
  --bg-white: #131a2e;
  --bg-surface: #1b243d;
  --bg-surface-2: #162036;
  --ink-main: #f0f4ff;
  --text-muted: #8090b4;
  --text-faint: #4d5a80;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.25);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-page);
  color: var(--ink-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--red-spark);
  color: #fff;
}

/* ═══════════════ SIDE CIRCUIT WATERMARKS FIX (CRITICAL) ═══════════════ */
.circuit-side-right,
.circuit-side-left {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 320px;
  max-height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  overflow: hidden;
}

.circuit-side-right {
  right: 0;
}

.circuit-side-left {
  left: 0;
  transform: scaleX(-1);
}

/* ═══════════════ NAVBAR & DROPDOWN ═══════════════ */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

[data-bs-theme="dark"] .site-header {
  background: rgba(10, 14, 26, 0.94);
}

.top-nav-bar {
  background: var(--royal-dark);
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.site-logo-img:hover {
  transform: scale(1.03);
}

.nav-link-main {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 0.5rem 0.9rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  transition: all 0.2s;
  display: inline-block;
}

.nav-link-main:hover,
.nav-link-main.active {
  color: var(--royal-blue);
  background: var(--bg-surface);
}

/* Dropdown Bridge */
.nav-item-dropdown {
  position: relative;
  display: inline-block;
}

.nav-item-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 18px;
  z-index: 1059;
}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 22rem;
  padding-top: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  pointer-events: none;
  z-index: 1060;
}

.nav-item-dropdown:hover .dropdown-menu-custom,
.dropdown-menu-custom:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.dropdown-inner {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 0.65rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.dropdown-child-link {
  display: block;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  transition: background 0.15s;
}

.dropdown-child-link:hover {
  background: var(--bg-surface);
}

.dropdown-child-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-main);
}

.dropdown-child-blurb {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Buttons */
.btn-red-pill,
.btn-spark {
  background: var(--red-spark);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.6rem 1.6rem;
  border: none;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.35);
  transition: all 0.25s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-red-pill:hover,
.btn-spark:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(230, 57, 70, 0.45);
}

.btn-spark.btn-lg {
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
}

.btn-red-pill-outline {
  background: transparent;
  color: var(--red-spark);
  border: 1.8px solid var(--red-spark);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.55rem 1.4rem;
  transition: all 0.25s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-red-pill-outline:hover {
  background: var(--red-spark);
  color: #fff !important;
  transform: translateY(-2px);
}

.btn-white-pill,
.btn-ghost {
  background: #fff;
  color: var(--ink-main) !important;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--border-card);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-white-pill:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.theme-toggle-btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1.5px solid var(--border-card);
  background: var(--bg-surface);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  margin-left: 10px;
}

.theme-toggle-btn:hover {
  border-color: var(--red-spark);
  background: var(--red-glow);
}

main {
  padding-top: 5.5rem;
  display: flex;
  flex-direction: column;
}

/* تأكيد أن hero هو أول قسم للعرض */
main > .hero { order: 0; }
main > #products { order: 1; }
main > #sectors { order: 2; }
main > .journey { order: 3; }
main > #engineering { order: 4; }
main > #capabilities { order: 5; }
main > #factory { order: 6; }
main > #why { order: 7; }
main > #resources { order: 8; }
main > #support { order: 9; }
main > #contact { order: 10; }

/* ═══════════════ COLOR VARIABLES & BUTTON COMPONENTS ═══════════════ */
:root {
  --blue: #2c3890;
  --blue-bright: #3a4bcc;
  --red: #ec1c24;
  --navy: #10153e;
  --ink: #11162f;
  --muted: #697084;
  --soft: #f1f3f7;
  --line: #dce1ea;
  --white: #fff;
}

.button {
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  gap: 26px;
  min-height: 58px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  display: inline-flex;
  transition: background .22s, border .22s, color .22s, transform .22s;
}

.button-red {
  background: var(--red);
  color: var(--white);
}

.button-red:hover {
  background: #c9121a;
  color: #fff;
  transform: translateY(-2px);
}

.button-glass {
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: #fff;
  background: #ffffff14;
  border-color: #ffffff47;
}

.button-glass:hover {
  background: #ffffff26;
  border-color: #ffffffa6;
  color: #fff;
  transform: translateY(-2px);
}

/* ═══════════════ HERO SECTION (CLASSIC HERO HERO-VIDEO) ═══════════════ */
.hero {
  background: var(--navy);
  color: #fff;
  height: max(600px, 90vh);
    min-height: 600px;
  position: relative;
  overflow: hidden;
}

.hero-media,
.hero-media>video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media>video {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  transform: scale(1.015);
}

.hero-overlay {
  background:
    linear-gradient(90deg, #070b274d 0%, #090e3275 36%, #090e32e8 74%, #070b27fa 100%),
    linear-gradient(#0000 56%, #05081ff0 100%),
    linear-gradient(#05081f66, #0000 24%);
}

.hero-overlay:after {
  content: "";
  background-image:
    linear-gradient(#ffffff07 1px, #0000 1px),
    linear-gradient(90deg, #ffffff07 1px, #0000 1px);
  background-size: 64px 64px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(90deg, #0000 18%, #000 82%);
  mask-image: linear-gradient(90deg, #0000 18%, #000 82%);
}

.hero-film-grain {
  mix-blend-mode: soft-light;
  opacity: 0.12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  position: absolute;
  inset: 0;
}

/* Energy Grid & Power Axis */
.hero-energy-grid {
  opacity: 0.66;
  transform-origin: bottom;
  width: 48%;
  height: 160px;
  position: absolute;
  bottom: 122px;
  left: 0;
  transform: perspective(400px) rotateX(60deg);
}

.hero-energy-grid:before,
.hero-energy-grid:after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-energy-grid:before {
  background:
    repeating-linear-gradient(90deg, #0000 0 66px, #ffffff21 67px 68px),
    repeating-linear-gradient(0deg, #0000 0 34px, #ffffff1c 35px 36px);
  -webkit-mask-image: linear-gradient(90deg, #000, #0000 92%);
  mask-image: linear-gradient(90deg, #000, #0000 92%);
}

.hero-energy-grid:after {
  background: linear-gradient(90deg, #0000, #ec1c24d1, #0000);
  height: 2px;
  animation: 4.2s linear infinite hero-grid-scan;
  top: 52%;
  box-shadow: 0 0 32px #ec1c247a;
}

.hero-energy-grid span {
  background: var(--red);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  position: absolute;
  box-shadow: 0 0 24px #ec1c24eb;
}

.hero-energy-grid span:first-child {
  animation: 3.8s linear infinite energy-dot;
  bottom: 26%;
  left: 12%;
}

.hero-energy-grid span:nth-child(2) {
  animation: 4.6s linear .8s infinite energy-dot;
  bottom: 56%;
  left: 34%;
}

.hero-energy-grid span:nth-child(3) {
  animation: 3.2s linear 1.7s infinite energy-dot;
  bottom: 15%;
  left: 58%;
}

@keyframes hero-grid-scan {
  0% {
    transform: translate(-65%);
  }

  to {
    transform: translate(100%);
  }
}

@keyframes energy-dot {

  0%,
  to {
    opacity: 0.15;
    transform: scale(0.55);
  }

  45% {
    opacity: 1;
    transform: scale(1.4);
  }
}

.hero-power-axis {
  width: 1px;
  position: absolute;
  top: 96px;
  bottom: 104px;
  right: 42px;
}

.hero-power-axis:before {
  content: "";
  background: linear-gradient(#0000, #ffffff61, #0000);
  position: absolute;
  inset: 0;
}

.hero-power-axis i {
  background: var(--red);
  border: 4px solid #ec1c242e;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  right: -3px;
  box-shadow: 0 0 20px #ec1c24cc;
}

.hero-power-axis i:first-child {
  animation: 5s linear infinite axis-flow;
}

.hero-power-axis i:nth-child(2) {
  animation: 5s linear 1.65s infinite axis-flow;
}

.hero-power-axis i:nth-child(3) {
  animation: 5s linear 3.3s infinite axis-flow;
}

@keyframes axis-flow {
  0% {
    opacity: 0;
    top: 0;
  }

  12%,
  88% {
    opacity: 1;
  }

  to {
    opacity: 0;
    top: 100%;
  }
}

/* Content Grid Layout */
.hero-content {
  z-index: 3;
  grid-template-columns: minmax(0, 1fr) 286px;
  gap: 76px;
  max-width: 1500px;
  height: 80%;
  margin-inline: auto;
  padding: 0 88px;
  display: grid;
  position: relative;
}

.hero-copy {
  align-self: center;
  max-width: 850px;
  padding-top: 40px;
  animation: .9s cubic-bezier(.22, 1, .36, 1) both reveal-copy;
}

@keyframes reveal-copy {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Eyebrow & Live Tag */
.eyebrow {
  color: var(--blue);
  letter-spacing: .04em;
  text-transform: uppercase;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.eyebrow span {
  background: var(--red);
  width: 36px;
  height: 2px;
  display: inline-block;
}

.eyebrow-light {
  color: #ffffffb8;
}

.hero-live-tag {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #ffffff13;
  border: 1px solid #ffffff24;
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  margin-bottom: 24px;
  padding: 7px 14px;
  font-size: 11px;
  display: inline-flex;
}

.hero-live-tag i {
  background: var(--red);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  animation: 1.5s ease-in-out infinite live-pulse;
  box-shadow: 0 0 16px #ec1c24e6;
}

.hero-live-tag span {
  color: #ffffffe0;
}

.hero-live-tag b {
  color: #ffffff6b;
  letter-spacing: .14em;
  border-right: 1px solid #fff3;
  padding-right: 10px;
  font-size: 9px;
}

@keyframes live-pulse {

  0%,
  to {
    opacity: .45;
    transform: scale(.7);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.hero h1 {
  letter-spacing: -.055em;
  text-wrap: balance;
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 4.8vw, 84px);
  font-weight: 800;
  line-height: 1.03;
}

.hero h1>span {
  color: #0000;
  -webkit-text-stroke: 1.2px #ffffffbd;
  margin-top: 8px;
  font-weight: 500;
  display: block;
}

.hero-body {
  border-right: 2px solid var(--red);
  color: #ffffffc7;
  max-width: 720px;
  margin: 30px 0 34px;
  padding-right: 20px;
  font-size: 18px;
  line-height: 1.88;
}

.hero-actions {
  align-items: center;
  gap: 14px;
  display: flex;
}

/* Proof items */
.hero-proof {
  border-top: 1px solid #ffffff26;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 760px;
  margin-top: 25px;
  padding-top: 15px;
  display: grid;
}

.hero-proof>div {
  border-left: 1px solid #ffffff21;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 3px;
  padding: 0 18px;
  display: grid;
}

.hero-proof>div:first-child {
  padding-right: 0;
}

.hero-proof>div:last-child {
  border-left: 0;
}

.hero-proof strong {
  color: var(--red);
  letter-spacing: .08em;
  font-size: 11px;
}

.hero-proof span {
  color: #ffffffa8;
  font-size: 12px;
  font-weight: 600;
}

/* Hero Industrial Reel Card */
.hero-reel {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: linear-gradient(145deg, #ffffff1f, #ffffff09), #080c2a57;
  border: 1px solid #ffffff30;
  border-radius: 8px;
  align-self: center;
  min-height: 400px;
  padding: 22px 22px 26px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px #0000002e;
}

.hero-reel:before {
  background: var(--red);
  content: "";
  width: 38%;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-reel:after {
  content: "";
  pointer-events: none;
  border: 1px solid #ffffff14;
  border-radius: 6px;
  position: absolute;
  inset: 10px;
}

.hero-reel-head {
  color: #ffffff75;
  letter-spacing: .12em;
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  display: flex;
  position: relative;
}

.hero-reel-head b {
  color: #ffffffbf;
  font-size: 9px;
}

.hero-reel-mark {
  z-index: 1;
  border-bottom: 1px solid #ffffff1f;
  margin-top: 10px;
  padding-bottom: 10px;
  display: grid;
  position: relative;
}

.hero-reel-mark small {
  color: #ffffff8c;
  font-size: 11px;
}

.hero-reel-mark strong {
  color: #fff;
  letter-spacing: -.05em;
  margin: 8px 0 13px;
  font-size: 60px;
  font-weight: 300;
  line-height: .95;
}

.hero-reel-mark span {
  color: #ffffff57;
  letter-spacing: .18em;
  font-size: 8px;
  line-height: 1.6;
}

.hero-reel ol {
  z-index: 1;
  gap: 13px;
  margin: 15px 0;
  padding: 0;
  list-style: none;
  display: grid;
  position: relative;
}

.hero-reel li {
  color: #ffffff91;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  display: grid;
}

.hero-reel li:after {
  content: "";
  background: #ffffff1a;
  height: 1px;
}

.hero-reel li i {
  color: var(--red);
  font-size: 9px;
  font-style: normal;
}

.hero-reel-progress {
  z-index: 2;
  background: #ffffff21;
  height: 2px;
  position: absolute;
  bottom: 24px;
  left: 22px;
  right: 22px;
  overflow: hidden;
}

.hero-reel-progress i {
  background: linear-gradient(90deg, var(--red), #ff8589);
  height: 100%;
  animation: 49s linear infinite reel-progress;
  display: block;
  box-shadow: 0 0 12px #ec1c24b3;
}

@keyframes reel-progress {
  0% {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* Video Controls (Play/Pause & Mute) */
.hero-video-controls {
  z-index: 5;
  align-items: center;
  gap: 8px;
  display: flex;
  position: absolute;
  bottom: 25px;
  left: 120px;
}

.hero-video-controls button {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #ffffffc2;
  cursor: pointer;
  background: #080c2a94;
  border: 1px solid #ffffff2e;
  border-radius: 4px;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 9px 12px;
  font-size: 10px;
  transition: background .18s, border-color .18s, color .18s;
  display: flex;
}

.hero-video-controls button:hover {
  color: #fff;
  background: #ec1c24b8;
  border-color: #ffffff8f;
}

.hero-video-controls i {
  width: 13px;
  height: 13px;
  display: inline-block;
  position: relative;
}

.icon-pause:before,
.icon-pause:after {
  content: "";
  background: currentColor;
  width: 3px;
  height: 12px;
  position: absolute;
  top: 0;
}

.icon-pause:before {
  right: 2px;
}

.icon-pause:after {
  left: 2px;
}

.icon-play {
  border-top: 6px solid #0000;
  border-bottom: 6px solid #0000;
  border-right: 10px solid;
  width: 0 !important;
  height: 0 !important;
}

.icon-muted:before,
.icon-sound:before {
  content: "";
  border-top: 5px solid #0000;
  border-bottom: 5px solid #0000;
  border-left: 7px solid;
  position: absolute;
  top: 1px;
  right: 1px;
}

.icon-muted:after {
  content: "";
  background: currentColor;
  width: 1px;
  height: 15px;
  position: absolute;
  top: -1px;
  left: 5px;
  transform: rotate(45deg);
}

.icon-sound:after {
  content: "";
  border-left: 1px solid;
  border-radius: 50%;
  width: 7px;
  height: 11px;
  position: absolute;
  top: 1px;
  left: 0;
}

/* Scroll indicator */
.hero-scroll {
  color: #ffffff94;
  letter-spacing: .08em;
  z-index: 5;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  text-decoration: none;
  display: flex;
  position: absolute;
  bottom: 38px;
  left: 46px;
}

.hero-scroll i {
  border: 1px solid #ffffff52;
  border-radius: 12px;
  width: 16px;
  height: 27px;
  position: relative;
}

.hero-scroll i:after {
  background: var(--red);
  content: "";
  border-radius: 50%;
  width: 3px;
  height: 3px;
  animation: 1.7s ease-in-out infinite scroll-dot;
  position: absolute;
  top: 5px;
  left: 5px;
}

@keyframes scroll-dot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  35% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* Bottom BOQ Ribbon (Slanted edge) */
.boq-ribbon {
  background: var(--white);
  color: var(--ink);
  z-index: 4;
  align-items: center;
  width: min(850px, 72vw);
  min-height: 70px;
  padding: 12px 56px;
  text-decoration: none;
  transition: background .24s;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  overflow: hidden;
  clip-path: polygon(5% 0, calc(100% - 0px) 0, 100% 100%, 0 100%);
}

.boq-ribbon:before {
  border-bottom: 104px solid var(--white);
  content: "";
  border-right: 42px solid #0000;
  width: 0;
  height: 0;
  transition: border-color .24s;
  position: absolute;
  top: 0;
  right: -42px;
}

.boq-ribbon:hover {
  background: #f4f6fb;
}

.boq-ribbon:hover:before {
  border-bottom-color: #f4f6fb;
}

.boq-ribbon-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.boq-ribbon-track {
  align-items: center;
  gap: 16px;
  width: max-content;
  display: flex;
  animation: boq-marquee 26s linear infinite;
}

.boq-ribbon-track img {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(9, 19, 52, 0.08);
  width: 122px;
  height: 78px;
  object-fit: contain;
  flex: 0 0 auto;
}

@keyframes boq-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Hero Responsive Media Queries */
@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 100px 48px 180px;
  }

  .hero-reel {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 900px;
  }

  .hero-content {
    padding: 100px 20px 222px;
  }

  .hero-copy {
    padding-top: 10px;
  }

  .hero h1 {
    font-size: clamp(38px, 10vw, 54px);
    line-height: 1.08;
  }

  .hero-body {
    margin: 22px 0 28px;
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    margin-top: 28px;
    padding-top: 16px;
  }

  .hero-proof>div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-inline: 10px;
  }

  .hero-proof span {
    font-size: 10px;
    line-height: 1.5;
  }

  .hero-video-controls {
    bottom: 24px;
    left: 20px;
  }

  .hero-video-controls button {
    min-height: 36px;
    padding: 8px 10px;
  }

  .hero-video-controls button span {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .boq-ribbon {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 94%;
    min-height: 94px;
    padding: 14px 20px;
  }

  .boq-ribbon:before,
  .ribbon-icon,
  .boq-ribbon small {
    display: none;
  }

  .boq-ribbon strong {
    font-size: 12px;
  }
}


/* Keep backward compat alias */
.exact-hero-section {
  background: linear-gradient(135deg, #1b38b3 0%, #1532a0 45%, #0d2175 100%);
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 5rem;
  color: #fff;
}


.hero-top-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.exact-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #ffffff;
}

.exact-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
  line-height: 1.8;
}

.btn-hero-red {
  background: var(--red-spark);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 2.2rem;
  border: none;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-hero-red:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(230, 57, 70, 0.55);
}

.btn-hero-blue-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 2rem;
  backdrop-filter: blur(8px);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-hero-blue-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
}

.exact-hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 650px;
  margin-top: 3.5rem;
}

.exact-stat-box {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 1.1rem 0.8rem;
  backdrop-filter: blur(14px);
  transition: transform 0.25s;
}

.exact-stat-box:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
}

.exact-stat-val {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.exact-stat-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.3rem;
  white-space: nowrap;
}

/* ═══════════════ FRONT PAGE SECTIONS & WATERMARKS ═══════════════ */
.sec,
.exact-section-light,
.section-light,
.why,
.resources,
.journey {
  background: linear-gradient(180deg, var(--bg-page) 0%, var(--bg-surface-2) 100%);
  padding: 5rem 0;
  position: relative;
}

.section-white,
.exact-section-white {
  background: var(--bg-white);
  padding: 5rem 0;
  position: relative;
}

.section-dark {
  background: #0a0e1a;
  color: #fff;
  padding: 5.5rem 0;
  position: relative;
}

.why {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-page) 100%);
}

.resources {
  background: linear-gradient(180deg, #06153a 0%, #283891 100%);
  color: var(--ink-main);
}

.journey {
  background: linear-gradient(180deg, var(--bg-page) 0%, var(--bg-white) 100%);
}

.watermark-cables-bg {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.75;
  z-index: 0;
}

.watermark-cad-bg-right {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  opacity: 0.65;
  z-index: 0;
}

.watermark-cad-bg-left {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.65;
  z-index: 0;
}

.exact-sec-tag,
.s-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-spark);
  margin-bottom: 0.75rem;
}

.s-label.light {
  color: rgba(255, 255, 255, 0.85);
}

.s-label::before {
  content: "";
  width: 1.4rem;
  height: 2px;
  background: var(--red-spark);
  border-radius: 2px;
}

.exact-sec-title,
.s-h2,
.why-title h2,
.resources-head h2,
.journey .section-heading h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.why-summary,
.resources-head p,
.resource-main .meta p,
.process-desc,
.support-card-body {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ═══════════════ BENTO GRID SYSTEM & PRODUCT CARDS ═══════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.bento-card,
.exact-prod-card {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 270px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.bento-card.span-4 {
  grid-column: span 4;
}

.bento-card.span-6 {
  grid-column: span 6;
}

.bento-card.span-3 {
  grid-column: span 3;
}

.bento-card.span-12 {
  grid-column: span 12;
}

.bento-card.dark,
.prod-card-dark-blue {
  background: linear-gradient(135deg, #1b38b3 0%, #122880 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 16px 45px rgba(27, 56, 179, 0.3);
}

.bento-card.dark .bc-title,
.prod-card-dark-blue .prod-card-title {
  color: #ffffff;
}

.bento-card.dark .bc-desc,
.prod-card-dark-blue .prod-card-body {
  color: rgba(255, 255, 255, 0.7);
}

.bento-card.dark .bc-link,
.prod-card-dark-blue .prod-card-bottom-lbl {
  color: rgba(255, 255, 255, 0.85);
}

.bento-card.dark .bc-num,
.prod-card-dark-blue .prod-card-bg-num {
  color: rgba(255, 255, 255, 0.06);
}

.prod-card-glass {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-card);
  color: var(--ink-main);
}

.prod-card-glass:hover,
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgb(27 56 179 / 24%), 0 0 0 1px rgba(230, 57, 70, 0.25);
  border-color: transparent;
}

.bento-card.accent,
.prod-card-red {
  background: linear-gradient(135deg, #e63946 0%, #c92a37 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 16px 45px rgba(230, 57, 70, 0.32);
}

.bento-card.accent .bc-title,
.prod-card-red .prod-card-title {
  color: #ffffff;
}

.bento-card.accent .bc-desc,
.prod-card-red .prod-card-body {
  color: rgba(255, 255, 255, 0.8);
}

.bento-card.accent .bc-link,
.prod-card-red .prod-card-bottom-lbl {
  color: rgba(255, 255, 255, 0.9);
}

.bento-card.accent .bc-num,
.prod-card-red .prod-card-bg-num {
  color: rgba(255, 255, 255, 0.08);
}

.bc-icon,
.prod-card-top-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.8rem;
  background: rgba(27, 56, 179, 0.1);
  color: var(--royal-blue);
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.3s;
}

.bento-card:hover .bc-icon {
  background: rgba(230, 57, 70, 0.12);
  color: var(--red-spark);
  transform: scale(1.05);
}

.bc-spec {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--red-spark);
  display: block;
  margin-bottom: 0.5rem;
}

.bc-title,
.prod-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
  color: var(--ink-main);
}

.bc-desc,
.prod-card-body {
  font-size: 0.88rem;
  line-height: 1.68;
  flex: 1;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.bc-link,
.prod-card-bottom-lbl {
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--red-spark);
  transition: gap 0.2s;
}

.bento-card:hover .bc-link,
.exact-prod-card:hover .prod-card-bottom-lbl {
  gap: 0.65rem;
}

.bc-num,
.prod-card-bg-num {
  position: absolute;
  bottom: -1rem;
  left: 1rem;
  font-family: var(--font-mono);
  font-size: 6.5rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
  color: rgba(27, 56, 179, 0.05);
}

/* Feature Pills & Image Badges */
.exact-feature-pill {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-main);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.25s;
}

.exact-feature-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 57, 70, 0.3);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.pill-dot.red {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--red-spark);
  flex-shrink: 0;
}

.exact-img-card-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
}

.exact-rounded-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.exact-img-card-wrap:hover .exact-rounded-img {
  transform: scale(1.04);
}

.exact-floating-glass-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(10, 20, 50, 0.72);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  color: #fff;
}

.exact-floating-glass-badge .badge-val {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red-spark);
  line-height: 1;
}

.exact-floating-glass-badge .badge-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

.exact-factory-stat-card {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.3rem 1rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.25s;
}

.exact-factory-stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(27, 56, 179, 0.3);
}

.exact-factory-stat-card .stat-icon-title {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--royal-blue);
  line-height: 1.1;
}

.exact-factory-stat-card .stat-sub-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.btn-link-red-arrow {
  color: var(--red-spark);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}

.btn-link-red-arrow:hover {
  color: var(--red-dark);
  gap: 0.65rem;
}

/* Process & Sector & Support Cards */
.btn-slider-arrow {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid var(--border-card);
  background: var(--bg-white);
  color: var(--ink-main);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-slider-arrow.active,
.btn-slider-arrow:hover {
  background: var(--red-spark);
  color: #fff;
  border-color: var(--red-spark);
}

.exact-process-card {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: 1.25rem;
  padding: 2.2rem 1.6rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.exact-process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(230, 57, 70, 0.25);
}

.process-icon-circle {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.1);
  color: var(--red-spark);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
}

.process-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
  color: var(--ink-main);
}

.process-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.exact-sector-card {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: 1.25rem;
  padding: 2.4rem 1.6rem;
  position: relative;
  overflow: hidden;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.exact-sector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(27, 56, 179, 0.12);
  border-color: rgba(230, 57, 70, 0.25);
}

.sector-big-num {
  font-family: var(--font-mono);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(230, 57, 70, 0.12);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
}

.sector-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--red-spark);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.sector-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink-main);
  line-height: 1.35;
  margin: 0;
}

.exact-support-card {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: 1.25rem;
  padding: 2.2rem 1.8rem;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.exact-support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(27, 56, 179, 0.12);
  border-color: rgba(230, 57, 70, 0.25);
}

.support-card-icon.red {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.8rem;
  background: rgba(230, 57, 70, 0.1);
  color: var(--red-spark);
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
}

.support-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink-main);
  margin-bottom: 0.6rem;
}

.support-card-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.cta-band,
.exact-cta-section {
  background: linear-gradient(180deg, #06153a 0%, #283891 100%);
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
  color: #fff;
  text-align: center;
}

.cta-band h2,
.exact-cta-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.exact-cta-code-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

/* ═══════════════ FULL INNER PAGE SYSTEM ═══════════════ */

/* Page Hero for Inner Pages */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1b38b3 0%, #122880 100%);
  color: #ffffff;
  padding: 6rem 0 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin-bottom: 1rem;
}

.page-hero .lead-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.page-hero .section-tag,
.page-hero .eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  margin-top: 0.8rem;
}

.hero-circuit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.trace {
  stroke-dasharray: 1400;
  stroke-dashoffset: 0;
}

.surge {
  stroke-dasharray: 60 1400;
  animation: surge 4.5s linear infinite;
}

@keyframes surge {
  0% {
    stroke-dashoffset: 1400;
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  88% {
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -400;
    opacity: 0;
  }
}

.node-pulse {
  animation: np 2.6s ease-in-out infinite;
}

@keyframes np {

  0%,
  100% {
    r: 3.5;
    opacity: 0.5;
  }

  50% {
    r: 6;
    opacity: 1;
  }
}

/* Inner Page Subsections */
.subsection {
  border-bottom: 1px solid var(--border-light);
  padding: 4.5rem 0;
  scroll-margin-top: 6rem;
  position: relative;
}

.subsection:last-child {
  border-bottom: none;
}

.subsection-label {
  position: sticky;
  top: 6.5rem;
  align-self: start;
}

.subsection-index {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--red-spark);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.subsection-title {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink-main);
}

.subsection-bar {
  display: block;
  height: 3px;
  width: 3.5rem;
  background: var(--red-spark);
  border-radius: 2px;
  margin-top: 1rem;
}

.subsection-body {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.subsection-body p {
  margin-bottom: 0;
}

.subsection-body p+p {
  margin-top: 1rem;
}

/* Spec Grid for Technical Specs */
.spec-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.8rem;
}

.spec-cell {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.4rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.spec-cell::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  bottom: 0;
  background: var(--royal-blue);
  opacity: 0;
  transition: opacity 0.25s;
}

.spec-cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(27, 56, 179, 0.08);
  border-color: rgba(27, 56, 179, 0.25);
}

.spec-cell:hover::before {
  opacity: 1;
}

.spec-cell dt {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-spark);
  font-weight: 700;
}

.spec-cell dd {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
  color: var(--ink-main);
  font-weight: 700;
}

/* Bullet Grid for Features List */
.bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin-top: 1.8rem;
  list-style: none;
  padding: 0;
}

.bullet-card {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-main);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.25s ease;
}

.bullet-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(27, 56, 179, 0.08);
  border-color: rgba(230, 57, 70, 0.25);
}

.bullet-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--red-spark);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(230, 57, 70, 0.4);
}

/* Panel & Generic Cards for Inner Pages */
.panel {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.panel.lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27, 56, 179, 0.1);
  border-color: rgba(230, 57, 70, 0.25);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-spark);
  display: block;
}

/* Contact Cards */
.contact-card {
  background: var(--bg-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(27, 56, 179, 0.12);
  border-color: rgba(230, 57, 70, 0.25);
}

.contact-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.7rem;
  background: rgba(230, 57, 70, 0.1);
  color: var(--red-spark);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}

.contact-card-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  font-weight: 700;
}

.contact-card-value {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.4rem;
  display: block;
  color: var(--ink-main);
}

.contact-card-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: block;
}

/* FAQ Accordion Styling */
.faq-list,
.accordion-custom {
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  margin-top: 2rem;
}

.faq-item,
.accordion-custom .accordion-item {
  border-bottom: 1px solid var(--border-card);
  background: none;
  border-radius: 0 !important;
}

.faq-item:last-child,
.accordion-custom .accordion-item:last-child {
  border-bottom: none;
}

.faq-question,
.accordion-custom .accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  width: 100%;
  background: none !important;
  border: none;
  text-align: right;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-main);
  font-family: var(--font-sans);
  transition: color 0.2s;
  box-shadow: none !important;
}

.faq-question:hover,
.accordion-custom .accordion-button:hover {
  color: var(--red-spark);
}

.faq-toggle {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--bg-surface);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--red-spark);
  flex-shrink: 0;
  transition: all 0.3s;
  line-height: 1;
}

.faq-toggle.open {
  transform: rotate(45deg);
  background: var(--red-spark);
  color: #fff;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s, opacity 0.35s;
  opacity: 0;
}

.faq-answer.open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer.open .faq-answer-inner {
  padding-bottom: 1.35rem;
}

.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin: 0;
}

/* Form Field Styling */
.field-label,
.form-label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.55rem;
  font-weight: 700;
}

.field-input,
.form-control-custom,
.form-select-custom {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-strong);
  background: var(--bg-white);
  padding: 0.8rem 1.1rem;
  font-size: 0.92rem;
  color: var(--ink-main);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  font-family: var(--font-sans);
}

.field-input:focus,
.form-control-custom:focus,
.form-select-custom:focus {
  border-color: var(--red-spark);
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.12);
  background: var(--bg-white);
}

/* ═══════════════ FOOTER ═══════════════ */
.exact-footer,
footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 2.5rem;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.footer-category-title {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-spark);
  margin-bottom: 1.2rem;
  display: block;
  font-weight: 700;
}

.exact-footer a,
footer a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.exact-footer a:hover,
footer a:hover {
  color: var(--royal-blue);
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media(max-width: 1199.98px) {
  .dropdown-menu-custom {
    right: auto;
    left: 0;
  }

  .bento-card.span-4 {
    grid-column: span 6;
  }

  .bento-card.span-3 {
    grid-column: span 4;
  }
}

@media(max-width: 991.98px) {
  .exact-hero-section {
    padding: 5rem 0 4rem;
  }

  .exact-hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .exact-rounded-img {
    height: 300px;
  }

  .subsection-label {
    position: static;
    margin-bottom: 1.5rem;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .bullet-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.span-4,
  .bento-card.span-3,
  .bento-card.span-6 {
    grid-column: span 12;
  }
}

@media(max-width: 575.98px) {
  .exact-hero-stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .exact-stat-val {
    font-size: 1.3rem;
  }

  main {
    padding-top: 4.5rem;
  }
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1280px;
    }
}

/* ═══════════════ GLOBAL MOBILE IMPROVEMENTS ═══════════════ */
@media (max-width: 991.98px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    padding-inline: 1rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding: 80px 16px 170px;
  }

  .hero h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-video-controls {
    left: 16px;
    right: auto;
    bottom: 16px;
  }

  .hero-video-controls button {
    min-height: 42px;
    padding: 10px 12px;
  }

  .boq-ribbon {
    width: calc(100% - 32px);
    padding: 14px 16px;
    min-height: 84px;
  }

  .bento {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .bento-card,
  .exact-prod-card {
    padding: 1.6rem 1.2rem;
  }

  .bento-card .bc-title,
  .prod-card-title {
    font-size: 1rem;
  }

  .section-heading {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-heading h2 {
    text-align: center;
  }

  .exact-section-light,
  .exact-section-white,
  .section-dark,
  .why,
  .resources,
  .journey,
  .cta-band,
  .exact-cta-section {
    padding: 4rem 0 2.2rem;
  }

  .support-card-body,
  .why-summary,
  .resources-head p,
  .hero-body {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .cta-band p,
  .exact-cta-section p {
    max-width: 100%;
  }

  .page-hero {
    padding: 4.5rem 1rem 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 60px 14px 140px;
  }

  .hero h1 {
    font-size: clamp(30px, 11vw, 42px);
  }

  .hero-video-controls {
    left: 12px;
    right: auto;
    bottom: 12px;
  }

  .hero-video-controls button {
    width: 100%;
  }

  .boq-ribbon {
    width: calc(100% - 24px);
    padding: 12px 14px;
  }

  .exact-section-light,
  .exact-section-white,
  .section-dark,
  .why,
  .resources,
  .journey,
  .cta-band,
  .exact-cta-section {
    padding: 3rem 0 1.5rem;
  }

  .bento-card,
  .exact-prod-card {
    padding: 1.3rem 1rem;
  }

  .hero-proof {
    padding-top: 0;
  }

  .hero-proof > div {
    padding-inline: 0;
  }

  .page-hero {
    padding: 4rem 1rem 2rem;
  }

  .section-heading {
    gap: 1rem;
  }

  .resources-grid,
  .spec-grid,
  .bullet-grid {
    gap: 0.8rem;
  }

  #support {
    overflow-x: hidden;
  }

  #support .container {
    max-width: 100%;
    padding-inline: 1rem;
  }

  #support .row {
    margin-inline: 0;
  }

  #support .col-md-4 {
    padding-inline: 0.75rem;
    min-width: 0;
  }
}

.text-white-50 {
    --bs-text-opacity: 1;
    color: rgb(255 255 255) !important;
}