:root {
  /* ---------- COLORS (Dark Neon Theme) ---------- */

  --bg: #09090b; /* deep dark background */
  --surface: #121214;
  --card: #18181b;

  --primary: #c084fc; /* neon purple */
  --primary-dark: #a855f7;

  --accent: #2dd4bf; /* neon teal */

  --text: #fafafa;
  --text-muted: #a1a1aa;
  --text-faint: #52525b;

  --border: #27272a;

  /* ---------- RADII ---------- */

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* ---------- SPACING ---------- */

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 80px;
  --space-2xl: 120px;

  /* ---------- TYPOGRAPHY ---------- */

  --font-body: "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-heading: "Trebuchet MS", "Lucida Sans Unicode", sans-serif;

  /* ---------- MOTION ---------- */

  --ease: cubic-bezier(0.175, 0.885, 0.32, 1.275); /* bouncy ease */
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* =====================================================
   TYPOGRAPHY — TECH & NEON
===================================================== */

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 var(--space-md);
  color: var(--text);
}

h1 {
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.1;
  /* Neon text gradient */
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 4px 20px rgba(192, 132, 252, 0.2);
}

h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.2;
}

h3 {
  font-size: 22px;
  color: var(--accent);
}

p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 var(--space-md);
  letter-spacing: 0.02em;
}

strong {
  color: var(--text);
  font-weight: 700;
}

.mt-5 {
  margin-top: 30px;
}

/* =====================================================
   LINKS
===================================================== */

a {
  color: var(--accent);
  text-decoration: none !important;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}

a:hover {
  color: var(--primary);
  text-shadow: 0 0 8px rgba(192, 132, 252, 0.5);
}

.text-white {
  color: #ffffff !important;
}

/* =====================================================
   DIVIDERS
===================================================== */

.hr {
  width: 100%;
  height: 2px;
  /* Glowing line effect */
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-dark),
    transparent
  );
  margin: var(--space-xl) 0;
  border: none;
  opacity: 0.5;
}

/* =====================================================
   BUTTONS — GLOWING & BOUNCY
===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 14px 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  border-radius: var(--radius-xs); /* Sharp tech edges */
  border: 2px solid transparent;

  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(192, 132, 252, 0.1);
}

.btn-primary:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(192, 132, 252, 0.6);
  transform: scale(1.05);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 15px rgba(45, 212, 191, 0.3);
  transform: scale(1.05);
}

/* =====================================================
   SURFACES
===================================================== */

.surface {
  background: var(--surface);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--primary-dark);
  box-shadow: 0 15px 40px rgba(192, 132, 252, 0.15);
  transform: translateY(-4px);
}

/* =====================================================
   FORMS — DARK GLASS
===================================================== */

input,
textarea,
select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 16px 20px;
  font-size: 15px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  transition: all 0.3s ease;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-faint);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.3);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.2);
}

/* =====================================================
   UTILITIES
===================================================== */

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.w-100 {
  width: 100%;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .section {
    padding: var(--space-xl) 0;
  }

  p {
    font-size: 15px;
  }
}

/* =====================================================
   PAGE HEADER — DARK NEON
===================================================== */

.page-header-dark {
  /* Deep void gradient replacing the solid corporate blue */
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}

/* Glowing neon line at the bottom of the header */
.page-header-dark::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.5;
}

.page-header-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* BREADCRUMB */

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.breadcrumb a:hover {
  color: var(--accent); /* Neon teal on hover */
  text-shadow: 0 0 8px rgba(45, 212, 191, 0.6);
}

.breadcrumb span {
  color: var(--primary); /* Neon purple for separators or current page */
}

/* TITLE */

.page-header-dark h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 16px;
  /* Ensuring the gradient pops against the dark background */
  background: linear-gradient(135deg, #ffffff, var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 4px 20px rgba(192, 132, 252, 0.3);
}

/* SUBTEXT */

.page-header-dark p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 680px; /* Tightened up for a better reading line-length */
  margin: 0 auto;
}

/* =====================================================
   TOP BAR — CYBERPUNK NEON
===================================================== */

.topbar-soft {
  background: #000000; /* Pure black to sit above the deep background */
  border-bottom: 1px solid rgba(192, 132, 252, 0.2); /* Subtle glowing purple line */
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0; /* Slightly taller for better breathing room */
}

/* LEFT SIDE */

.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-msg {
  font-weight: 500;
}

.topbar-msg strong {
  font-weight: 700;
  color: var(--text);
  text-shadow: 0 0 8px rgba(250, 250, 250, 0.3); /* Subtle bright glow */
}

/* BADGE */

.topbar-badge {
  background: rgba(45, 212, 191, 0.1); /* Translucent neon teal */
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: var(
    --radius-xs
  ); /* Sharp, futuristic edges instead of a pill */
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.3); /* Teal glow */
}

/* RIGHT SIDE */

.topbar-right {
  font-weight: 500;
}

.topbar-help strong {
  font-weight: 700;
  color: var(--primary); /* Neon purple */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.4);
}

/* =====================================================
   HEADER — DARK NEON HUD
===================================================== */

.header-soft {
  background: rgba(9, 9, 11, 0.85); /* Dark translucent glass */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 212, 191, 0.2); /* Subtle teal glow line */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.8),
    inset 0 -1px 10px rgba(45, 212, 191, 0.05);
}

.header-soft-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 0;
}

.container.header-soft-inner {
  max-width: 1520px;
}

/* =====================================================
   NAVIGATION
===================================================== */

.nav-soft {
  display: flex;
  gap: 34px;
}

.nav-soft a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 8px;
  transition: all 0.3s var(--ease);
}

.nav-soft a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent); /* Neon teal underline */
  box-shadow: 0 0 10px var(--accent); /* Glow effect */
  transition: width 0.3s var(--ease);
}

.nav-soft a:hover,
.nav-soft a.active {
  color: var(--text);
  text-shadow: 0 0 8px rgba(250, 250, 250, 0.4);
}

.nav-soft a:hover::after,
.nav-soft a.active::after {
  width: 100%;
}

/* =====================================================
   LOGO
===================================================== */

.logo-soft img {
  display: block;
  margin-left: 18px;
  /* Optional: If your logo is dark, you might want to uncomment the line below */
  /* filter: invert(1) drop-shadow(0 0 8px rgba(192, 132, 252, 0.5)); */
}

/* =====================================================
   HEADER ACTIONS
===================================================== */

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  margin-right: 10px;
}

/* =====================================================
   SEARCH — TECH BAR
===================================================== */

.search-soft {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs); /* Sharp tech edges instead of 348px */
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s var(--ease);
}

.search-soft:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(192, 132, 252, 0.2);
  background: rgba(0, 0, 0, 0.4);
}

.search-soft i {
  font-size: 14px;
  color: var(--primary); /* Neon icon */
  margin-left: 20px;
}

.search-soft input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  width: 160px;
  color: var(--text);
  padding: 10px 0; /* Adjusted for alignment since border-radius changed */
}

.search-soft input::placeholder {
  color: var(--text-faint);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* =====================================================
   ICON BUTTONS
===================================================== */

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-xs); /* Sharp edges */
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  position: relative;
  transition: all 0.3s var(--ease);
}

.icon-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(45, 212, 191, 0.1);
  box-shadow: 0 0 15px rgba(45, 212, 191, 0.2);
  transform: translateY(-2px);
}

/* CART BADGE */

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary); /* Neon purple */
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: var(--radius-xs); /* Sharp tech edges */
  box-shadow: 0 0 10px rgba(192, 132, 252, 0.6); /* Neon glow */
}

/* =====================================================
   MOBILE TOGGLE
===================================================== */

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 10px rgba(192, 132, 252, 0.3);
}

/* =====================================================
   MOBILE MENU — FULLSCREEN TERMINAL
===================================================== */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg); /* Deepest dark */
  z-index: 2000;
  padding: 32px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  border-left: 2px solid var(--primary-dark);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(192, 132, 252, 0.2);
  padding-bottom: 20px;
}

.mobile-menu-header img {
  height: 46px;
}

.mobile-menu-header button {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-header button:hover {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.3);
}

/* =====================================================
   MOBILE NAV
===================================================== */

.mobile-nav a {
  display: block;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--text);
  padding-left: 10px; /* Slight indent on hover */
  text-shadow: 0 0 10px rgba(250, 250, 250, 0.5);
  border-left: 4px solid var(--primary);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .nav-soft,
  .search-soft {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-soft-inner {
    grid-template-columns: auto 1fr auto;
  }
}

@media (max-width: 600px) {
  .topbar-soft {
    display: none;
  }
  .icon-btn {
    display: none;
  }
}

/* Banner Section Starts */
/* =====================================================
   HERO BANNER — CYBERPUNK HUD
===================================================== */

.nb-banner-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-body, "Segoe UI", system-ui, sans-serif);
}

/* Main Wrapper */
.nb-banner-wrapper {
  width: 100%;
  height: 680px;
  background-color: #09090b; /* Deep dark void */
  position: relative;
  overflow: hidden;
  display: flex;
  border-bottom: 1px solid rgba(192, 132, 252, 0.2);
}

/* Background Shape - Converted from soft curve to a sharp tech polygon */
.nb-bg-curve {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(192, 132, 252, 0.1),
    rgba(45, 212, 191, 0.05)
  );
  clip-path: polygon(
    15% 0,
    100% 0,
    100% 100%,
    0% 100%
  ); /* Sharp angled slash */
  border-left: 2px solid rgba(45, 212, 191, 0.3); /* Glowing edge */
  z-index: 1;
  transition: all 0.3s ease;
}

/* Slider Track */
.nb-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Snappy tech transition */
  z-index: 2;
}

/* Individual Slide */
.nb-slide-item {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 100px;
}

/* Left Column Content */
.nb-content-left {
  flex: 1.1;
  padding-right: 40px;
  z-index: 3;
}

/* Tech Badge */
.nb-badge-pill {
  display: inline-flex;
  align-items: center;
  background-color: rgba(45, 212, 191, 0.1);
  color: #2dd4bf; /* Neon teal */
  border: 1px solid #2dd4bf;
  padding: 6px 16px;
  border-radius: 4px; /* Sharp corners */
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.2);
}

.nb-badge-pill i {
  margin-right: 10px;
  font-size: 1rem;
}

/* Heavy Tech Typography */
.nb-title-dark {
  color: #fafafa;
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

/* Neon Gradient Title */
.nb-title-blue {
  background: linear-gradient(135deg, #c084fc, #2dd4bf); /* Purple to Teal */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: -1px;
  text-shadow: 0 0 15px rgba(192, 132, 252, 0.3);
}

.nb-desc-text {
  color: #a1a1aa;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 85%;
  letter-spacing: 0.03em;
}

/* Features Grid */
.nb-features-row {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.nb-feature-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nb-feature-block i {
  color: #c084fc; /* Neon purple */
  font-size: 1.5rem;
  text-shadow: 0 0 8px rgba(192, 132, 252, 0.5);
}

.nb-feature-block span {
  color: #e4e4e7;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Buttons */
.nb-btn-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nb-btn-solid {
  background-color: transparent;
  color: #c084fc;
  border: 2px solid #c084fc;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 10px rgba(192, 132, 252, 0.2);
}

.nb-btn-solid:hover {
  background-color: #c084fc;
  color: #000;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 20px rgba(192, 132, 252, 0.6);
}

.nb-btn-outline {
  background-color: rgba(255, 255, 255, 0.03);
  color: #fafafa;
  border: 1px solid #27272a;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.nb-btn-outline:hover {
  background-color: rgba(45, 212, 191, 0.1);
  border-color: #2dd4bf;
  color: #2dd4bf;
  box-shadow: 0 0 15px rgba(45, 212, 191, 0.3);
}

/* Right Column Content */
.nb-content-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 3;
}

/* Image Container */
.nb-image-container {
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  /* Replaced multiply with a glowing tech shadow for dark mode */
  filter: drop-shadow(0 0 30px rgba(45, 212, 191, 0.15));
}

.nb-image-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Bottom Trust Panel - Dark Glassmorphism */
.nb-trust-panel {
  background-color: rgba(24, 24, 27, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px; /* Sharper */
  padding: 22px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.nb-trust-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #2dd4bf; /* Neon teal accent line */
  box-shadow: 0 0 10px #2dd4bf;
}

.nb-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nb-trust-item i {
  color: #2dd4bf;
  font-size: 1.4rem;
  text-shadow: 0 0 8px rgba(45, 212, 191, 0.4);
}

.nb-trust-text h4 {
  color: #fafafa;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.nb-trust-text p {
  color: #a1a1aa;
  font-size: 0.75rem;
}

/* Navigation Arrows - Glowing Tech Nodes */
.nb-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background-color: rgba(9, 9, 11, 0.8);
  border: 1px solid rgba(192, 132, 252, 0.3);
  backdrop-filter: blur(5px);
  border-radius: 4px; /* Squarish */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c084fc;
  font-size: 1.2rem;
  z-index: 10;
  transition: all 0.3s;
}

.nb-nav-arrow:hover {
  background-color: rgba(192, 132, 252, 0.1);
  color: #fff;
  border-color: #c084fc;
  box-shadow: 0 0 20px rgba(192, 132, 252, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.nb-arrow-prev {
  left: 25px;
}
.nb-arrow-next {
  right: 25px;
}

/* Pagination Dots - Terminal Dashes */
.nb-pagination-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.nb-dot {
  width: 16px;
  height: 4px; /* Dash instead of circle */
  background-color: #27272a;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.nb-dot.active {
  background-color: #2dd4bf; /* Neon teal */
  width: 32px;
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.6);
}

/* =========================================
           RESPONSIVE MEDIA QUERIES
           ========================================= */

@media (max-width: 1200px) {
  .nb-title-dark,
  .nb-title-blue {
    font-size: 3.5rem;
  }
  .nb-slide-item {
    padding: 0 70px;
  }
  .nb-content-left {
    padding-right: 20px;
  }
  .nb-image-container {
    height: 300px;
  }
  .nb-trust-panel {
    padding: 15px;
    flex-wrap: wrap;
    gap: 15px;
  }
  .nb-trust-item {
    width: calc(50% - 15px);
  }
}

@media (max-width: 992px) {
  .nb-banner-wrapper {
    height: auto;
    min-height: 680px;
  }
  .nb-slide-item {
    flex-direction: column;
    padding: 60px 40px 80px 40px;
    text-align: center;
  }
  .nb-bg-curve {
    width: 100%;
    height: 55%;
    top: auto;
    bottom: 0;
    clip-path: polygon(
      0 20%,
      100% 0,
      100% 100%,
      0% 100%
    ); /* Adjusted for mobile */
    border-left: none;
    border-top: 2px solid rgba(45, 212, 191, 0.3);
  }
  .nb-content-left {
    padding-right: 0;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nb-desc-text {
    max-width: 100%;
  }
  .nb-features-row {
    justify-content: center;
  }
  .nb-btn-group {
    justify-content: center;
  }
  .nb-image-container {
    height: 280px;
  }
  .nb-nav-arrow {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  .nb-arrow-prev {
    left: 15px;
  }
  .nb-arrow-next {
    right: 15px;
  }
}

@media (max-width: 576px) {
  .nb-title-dark,
  .nb-title-blue {
    font-size: 2.5rem;
  }
  .nb-slide-item {
    padding: 50px 20px 80px 20px;
  }
  .nb-features-row {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .nb-btn-group {
    flex-direction: column;
    width: 100%;
  }
  .nb-btn-solid,
  .nb-btn-outline {
    width: 100%;
    justify-content: center;
  }
  .nb-image-container {
    height: 220px;
  }
  .nb-trust-item {
    width: 100%;
    justify-content: center;
    text-align: left;
  }
  .nb-nav-arrow {
    display: none;
  }
}

/* Features Section Starts */
/* =====================================================
   FEATURES SECTION — CYBERPUNK HUD
===================================================== */

.nfs-features-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-body, "Segoe UI", system-ui, sans-serif);
}

/* Main Wrapper */
.nfs-features-section {
  background-color: #09090b; /* Deep dark void */
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid rgba(45, 212, 191, 0.2);
}

/* Decorative Background Elements - Tech Nodes & Lasers */
.nfs-decor-dots {
  position: absolute;
  top: 40px;
  right: 5%;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(
    rgba(45, 212, 191, 0.4) 2px,
    transparent 2px
  );
  background-size: 20px 20px;
  opacity: 0.3;
  filter: drop-shadow(0 0 5px rgba(45, 212, 191, 0.5));
}

.nfs-decor-plane {
  position: absolute;
  top: 60px;
  left: 5%;
  color: #c084fc; /* Neon purple */
  font-size: 2rem;
  transform: rotate(-15deg);
  opacity: 0.8;
  text-shadow: 0 0 15px rgba(192, 132, 252, 0.8);
}

/* Converted from dotted path to a glowing laser trail */
.nfs-plane-path {
  position: absolute;
  top: 100px;
  left: -20px;
  width: 150px;
  height: 50px;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, #c084fc, transparent) 1;
  border-radius: 50%; /* Won't apply with border-image, creates a sharp slash instead */
  transform: rotate(15deg);
  opacity: 0.6;
  filter: drop-shadow(0 -5px 10px rgba(192, 132, 252, 0.5));
}

/* Header Area */
.nfs-header {
  text-align: center;
  margin-bottom: 90px; /* Extra space for floating icons */
  position: relative;
  z-index: 2;
}

/* Tech Badge */
.nfs-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(45, 212, 191, 0.1);
  color: #2dd4bf; /* Neon teal */
  border: 1px solid #2dd4bf;
  padding: 6px 16px;
  border-radius: 4px; /* Sharp corners */
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.2);
}

.nfs-badge i {
  margin-right: 10px;
  font-size: 1rem;
}

/* Heavy Tech Typography */
.nfs-title {
  color: #fafafa;
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 15px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.nfs-subtitle {
  color: #a1a1aa;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  max-width: 600px;
  margin: 0 auto;
}

/* Cards Grid */
.nfs-cards-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  max-width: 1400px;
  width: 100%;
  z-index: 2;
}

/* Individual Card - Dark Glass Panel */
.nfs-card {
  background-color: rgba(24, 24, 27, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px; /* Sharp tech edges */
  padding: 65px 20px 25px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nfs-card:hover {
  transform: translateY(-8px);
  border-color: rgba(45, 212, 191, 0.5); /* Teal glow on hover */
  box-shadow: 0 15px 40px rgba(45, 212, 191, 0.15);
}

/* Floating Icon Wrapper - Cyber Node */
.nfs-icon-wrapper {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  background: #09090b; /* Match deep bg to look hollowed out */
  border-radius: 8px; /* Square nodes instead of circles */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 20px rgba(0, 0, 0, 0.8),
    inset 0 0 10px rgba(192, 132, 252, 0.2);
  border: 1px solid rgba(192, 132, 252, 0.3);
  transition: all 0.3s ease;
}

.nfs-card:hover .nfs-icon-wrapper {
  border-color: #c084fc;
  box-shadow:
    0 0 20px rgba(192, 132, 252, 0.4),
    inset 0 0 15px rgba(192, 132, 252, 0.4);
}

/* Decorative Tech Ring - Converted to targeting reticle style */
.nfs-icon-ring {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 4px;
  border: 1px solid transparent;
  /* Using CSS vars if you have them, defaulting to neon purple */
  border-top-color: var(--ring-color, #c084fc);
  border-bottom-color: var(--ring-color, #c084fc);
  transform: rotate(0deg);
  opacity: 0.5;
  transition: transform 0.5s ease;
}

.nfs-card:hover .nfs-icon-ring {
  transform: rotate(90deg); /* Animates like a locking reticle */
  opacity: 1;
  box-shadow: 0 0 15px var(--ring-color, #c084fc);
}

/* Inner 3D Icon Stand-in */
.nfs-icon-inner {
  font-size: 2.2rem;
  color: var(--ring-color, #2dd4bf); /* Default to teal */
  z-index: 2;
  text-shadow: 0 0 15px var(--ring-color, #2dd4bf);
}

.nfs-card-title {
  color: #fafafa;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.nfs-card-text {
  color: #a1a1aa;
  font-size: 0.85rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Arrow Button - Glowing Terminal Node */
.nfs-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 4px; /* Square */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--ring-color, #2dd4bf);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.nfs-arrow-btn:hover {
  background-color: var(--ring-color, #2dd4bf);
  color: #000;
  box-shadow: 0 0 15px var(--ring-color, #2dd4bf);
  transform: scale(1.1);
}

/* Bottom Trust Bar - Data Stream Panel */
.nfs-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(24, 24, 27, 0.8);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: 4px;
  padding: 20px 40px;
  margin-top: 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  flex-wrap: wrap;
  gap: 25px;
  max-width: 1200px;
  width: 100%;
  z-index: 2;
  position: relative;
}

/* Neon Top accent line */
.nfs-trust-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2dd4bf, transparent);
  opacity: 0.7;
}

.nfs-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e4e4e7;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nfs-trust-item i {
  color: #c084fc;
  font-size: 1.2rem;
  text-shadow: 0 0 8px rgba(192, 132, 252, 0.5);
}

.nfs-trust-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* =========================================
           RESPONSIVE MEDIA QUERIES
           ========================================= */

@media (max-width: 1200px) {
  .nfs-cards-container {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 70px;
  }
  .nfs-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 900px) {
  .nfs-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .nfs-trust-divider {
    display: none;
  }
  .nfs-trust-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
  }
  .nfs-trust-item {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .nfs-cards-container {
    grid-template-columns: 1fr;
    row-gap: 80px; /* More space for the giant floating nodes on mobile */
  }
  .nfs-title {
    font-size: 2rem;
  }
  .nfs-subtitle {
    font-size: 0.95rem;
  }
  .nfs-features-section {
    padding: 60px 15px;
  }
  .nfs-decor-plane,
  .nfs-plane-path {
    display: none;
  }
}

/* Category Section Starts */
/* =====================================================
   DARK GRID SECTION — CYBERPUNK TERMINAL
===================================================== */

.nc-dark-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-body, "Segoe UI", system-ui, sans-serif);
}

/* Full Width Wrapper - Deep void with a faint laser grid */
.nc-dark-section {
  background-color: #09090b;
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid rgba(192, 132, 252, 0.2);
  position: relative;
}

/* Header Area */
.nc-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 90px;
  position: relative;
  z-index: 2;
}

/* Overline - Neon Target Tracking */
.nc-overline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #2dd4bf; /* Neon teal */
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.4);
}

.nc-line {
  height: 2px;
  width: 40px;
  background: linear-gradient(90deg, transparent, #2dd4bf, transparent);
  box-shadow: 0 0 8px #2dd4bf;
}

/* Main Titles */
.nc-title {
  color: #fafafa;
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 3.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 15px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.nc-title-blue {
  background: linear-gradient(135deg, #c084fc, #2dd4bf); /* Purple to Teal */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(192, 132, 252, 0.3);
}

.nc-subtitle {
  color: #a1a1aa;
  font-size: 1.05rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* Grid Layout for Cards */
.nc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
  max-width: 1400px;
  margin-bottom: 60px;
  z-index: 2;
}

/* Individual Card - Dark Tech Panel */
.nc-card {
  background: rgba(18, 18, 20, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px; /* Sharp tech corners */
  padding: 55px 30px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: all 0.3s ease;
}

.nc-card:hover {
  border-color: rgba(192, 132, 252, 0.3);
  transform: translateY(-8px);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(192, 132, 252, 0.1) inset;
}

.nc-card:hover::before {
  background: linear-gradient(90deg, transparent, #c084fc, transparent);
  box-shadow: 0 0 10px #c084fc;
}

/* Floating Top Icon - Cyber Node */
.nc-icon-wrapper {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background-color: #09090b; /* Cutout look */
  border-radius: 4px; /* Squarish tech node */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c084fc; /* Neon outline */
  color: #c084fc;
  font-size: 1.2rem;
  box-shadow:
    0 0 0 4px #09090b,
    /* Creates the gap between border and card */ 0 0 15px
      rgba(192, 132, 252, 0.4);
  transition: all 0.3s ease;
}

.nc-card:hover .nc-icon-wrapper {
  background-color: rgba(192, 132, 252, 0.1);
  color: #fff;
  box-shadow:
    0 0 0 4px #09090b,
    0 0 20px rgba(192, 132, 252, 0.6);
  transform: translateX(-50%) scale(1.1);
}

/* Card Image Container - Hologram Effect */
.nc-card-img-container {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  filter: drop-shadow(0 10px 20px rgba(45, 212, 191, 0.15));
  transition: all 0.3s ease;
}

.nc-card:hover .nc-card-img-container {
  filter: drop-shadow(0 10px 25px rgba(192, 132, 252, 0.25));
  transform: translateY(-5px);
}

.nc-card-img-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Card Text Content */
.nc-card-title {
  color: #fafafa;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.nc-card-desc {
  color: #a1a1aa;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Shop Now Link - Terminal Prompt */
.nc-shop-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #2dd4bf;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.nc-shop-link:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.8);
}

.nc-link-circle {
  width: 32px;
  height: 32px;
  background-color: rgba(45, 212, 191, 0.1);
  border: 1px solid #2dd4bf;
  border-radius: 4px; /* Square */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2dd4bf;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.nc-shop-link:hover .nc-link-circle {
  background-color: #2dd4bf;
  color: #000;
  box-shadow: 0 0 15px rgba(45, 212, 191, 0.6);
  transform: translateX(4px);
}

/* Bottom "View All" Button - Glowing Outlined Box */
.nc-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.03);
  color: #fafafa;
  border: 1px solid #c084fc;
  padding: 14px 36px;
  border-radius: 4px; /* Sharp */
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 10px rgba(192, 132, 252, 0.1);
  z-index: 2;
}

.nc-view-all-btn i.bi-grid-1x2 {
  color: #c084fc;
  font-size: 1.1rem;
}

.nc-view-all-btn i.bi-arrow-right {
  color: #c084fc;
  transition: transform 0.3s;
}

.nc-view-all-btn:hover {
  background-color: rgba(192, 132, 252, 0.1);
  border-color: #c084fc;
  color: #fff;
  box-shadow: 0 0 25px rgba(192, 132, 252, 0.4);
  transform: translateY(-2px);
}

.nc-view-all-btn:hover i.bi-arrow-right {
  transform: translateX(6px);
  color: #fff;
}

/* =========================================
           RESPONSIVE MEDIA QUERIES
           ========================================= */

@media (max-width: 1200px) {
  .nc-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px; /* Adjusted for icon spacing */
  }
  .nc-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .nc-dark-section {
    padding: 80px 20px;
  }
  .nc-grid {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }
  .nc-title {
    font-size: 2.2rem;
  }
  .nc-subtitle {
    font-size: 0.95rem;
  }
  .nc-card {
    padding: 50px 25px 25px;
  }
}

/* =====================================================
   PRODUCTS — CYBERPUNK ARMORY / MARKETPLACE
===================================================== */

.products-modern {
  background: #09090b; /* Deep void background */
  padding: 100px 0;
  border-top: 1px solid rgba(45, 212, 191, 0.1);
}

/* ================= HEADER ================= */

.products-modern-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
  position: relative;
}

/* eyebrow - Target lock style */
.products-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2dd4bf; /* Neon teal */
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.4);
}

/* heading */
.products-modern-head h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 14px;
  color: #fafafa;
  line-height: 1.2;
  position: relative;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

/* underline accent - Glowing Laser Line */
.products-modern-head h2::after {
  content: "";
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c084fc, transparent);
  display: block;
  margin: 20px auto 0;
  border-radius: 0; /* Sharp */
  box-shadow: 0 0 10px #c084fc;
}

/* paragraph */
.products-modern-head p {
  font-size: 16px;
  line-height: 1.7;
  color: #a1a1aa;
  max-width: 560px;
  margin: 20px auto 0;
  letter-spacing: 0.02em;
}

/* ================= TABS ================= */

.products-modern-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.products-modern-tabs .tab-btn {
  padding: 12px 24px;
  border-radius: 4px; /* Sharp tech edges */
  border: 1px solid #27272a;
  background: rgba(255, 255, 255, 0.02);
  color: #a1a1aa;
  font-family: var(--font-heading, sans-serif);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.products-modern-tabs .tab-btn:hover {
  border-color: #2dd4bf;
  color: #2dd4bf;
  box-shadow: 0 0 15px rgba(45, 212, 191, 0.2);
}

.products-modern-tabs .tab-btn.active {
  background: rgba(45, 212, 191, 0.1);
  color: #2dd4bf;
  border-color: #2dd4bf;
  box-shadow: 0 0 15px rgba(45, 212, 191, 0.4);
}

/* ================= GRID ================= */

.products-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */

.product-modern-card {
  background: rgba(24, 24, 27, 0.6); /* Dark Glass */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px; /* Sharp tech corners */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-modern-card:hover {
  transform: translateY(-8px);
  border-color: #c084fc; /* Neon purple border on hover */
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.8),
    inset 0 0 20px rgba(192, 132, 252, 0.15);
}

/* ================= IMAGE ================= */

.product-modern-image {
  position: relative;
  padding: 40px 30px;
  background: rgba(0, 0, 0, 0.3); /* Deep interior */
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-modern-image img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(45, 212, 191, 0.15));
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.product-modern-card:hover .product-modern-image img {
  transform: scale(1.08);
  filter: drop-shadow(0 10px 25px rgba(192, 132, 252, 0.3));
}

/* Badge - Cyber Node */
.product-modern-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(192, 132, 252, 0.1);
  color: #c084fc;
  border: 1px solid #c084fc;
  font-family: var(--font-heading, sans-serif);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 10px;
  border-radius: 2px; /* Sharp */
  box-shadow: 0 0 10px rgba(192, 132, 252, 0.3);
  z-index: 2;
}

/* Rating - HUD Element */
.product-modern-rating {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(9, 9, 11, 0.8);
  border: 1px solid #27272a;
  color: #fafafa;
  backdrop-filter: blur(5px);
  border-radius: 2px; /* Sharp */
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  gap: 6px;
  align-items: center;
  z-index: 2;
}

.product-modern-rating i {
  color: #2dd4bf; /* Neon teal star */
  text-shadow: 0 0 8px rgba(45, 212, 191, 0.6);
}

/* ================= BODY ================= */

.product-modern-body {
  padding: 24px;
  flex-grow: 1;
  background-color: transparent;
}

.product-modern-category {
  font-size: 11px;
  font-weight: 700;
  color: #2dd4bf;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: block;
}

.product-modern-body h3 {
  font-family: var(--font-heading, sans-serif);
  font-size: 18px;
  font-weight: 800;
  color: #fafafa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
  transition: color 0.3s ease;
}

.product-modern-card:hover .product-modern-body h3 {
  color: #c084fc;
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.3);
}

.product-modern-desc {
  font-size: 14px;
  color: #a1a1aa;
  line-height: 1.6;
}

/* ================= FOOTER ================= */

.product-modern-footer {
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.product-modern-card:hover .product-modern-footer {
  border-top-color: rgba(192, 132, 252, 0.3);
  background-color: rgba(192, 132, 252, 0.05);
}

.product-modern-footer strong {
  font-size: 20px;
  font-weight: 800;
  color: #fafafa;
  font-family: var(--font-heading, sans-serif);
}

.product-modern-cta {
  font-family: var(--font-heading, sans-serif);
  font-size: 12px;
  font-weight: 800;
  color: #2dd4bf;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.product-modern-card:hover .product-modern-cta {
  color: #c084fc;
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.6);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .products-modern-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-modern-head h2 {
    font-size: 28px;
  }
  .products-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-modern-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ABOUT — CYBERPUNK MAINFRAME
===================================================== */

.about-modern {
  background-color: #09090b; /* Deep void */
  background-image: radial-gradient(
    circle at 0% 50%,
    rgba(192, 132, 252, 0.05) 0%,
    transparent 50%
  ); /* Subtle purple glow from the left */
  padding: 120px 0;
  position: relative;
  border-top: 1px solid rgba(45, 212, 191, 0.1);
  border-bottom: 1px solid rgba(192, 132, 252, 0.1);
}

/* container layout */

.about-modern .container {
  max-width: 1500px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* =====================================================
   LEFT CONTENT — DATA READOUT
===================================================== */

.about-modern-eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2dd4bf; /* Neon teal */
  margin-bottom: 16px;
  display: inline-block;
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.4);
  position: relative;
}

/* Tech line next to eyebrow */
.about-modern-eyebrow::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 2px;
  background: #2dd4bf;
  margin-right: 12px;
  box-shadow: 0 0 8px #2dd4bf;
}

.about-modern-content h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: #fafafa;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.about-modern-lead {
  font-size: 18px;
  font-weight: 600;
  color: #e4e4e7;
  margin-bottom: 20px;
  line-height: 1.7;
  max-width: 620px;
  letter-spacing: 0.02em;
  border-left: 3px solid #c084fc; /* Purple accent line */
  padding-left: 16px;
}

.about-modern-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #a1a1aa;
  margin-bottom: 16px;
  max-width: 640px;
  letter-spacing: 0.03em;
}

/* actions */

.about-modern-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
}

/* =====================================================
   RIGHT FEATURE CARDS — GLOWING TERMINALS
===================================================== */

.about-modern-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  position: relative;
}

/* card - Dark Glass Panel */

.about-card {
  background: rgba(24, 24, 27, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 8px; /* Sharp tech edges */
  padding: 35px 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Glowing Top Accent on Cards */
.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: all 0.3s ease;
}

/* hover */

.about-card:hover {
  transform: translateY(-8px);
  border-color: rgba(45, 212, 191, 0.3); /* Teal border hover */
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.8),
    inset 0 0 20px rgba(45, 212, 191, 0.1);
}

.about-card:hover::before {
  background: linear-gradient(90deg, transparent, #2dd4bf, transparent);
  box-shadow: 0 0 10px #2dd4bf;
}

/* number - Data Metric */

.about-card strong {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 38px;
  font-weight: 800;
  color: #c084fc; /* Neon purple */
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 0 15px rgba(192, 132, 252, 0.5);
}

/* title - Metric Label */

.about-card span {
  font-size: 13px;
  font-weight: 800;
  color: #fafafa;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* text */

.about-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #a1a1aa;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .about-modern .container {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

@media (max-width: 600px) {
  .about-modern {
    padding: 80px 0;
  }

  .about-modern-content h2 {
    font-size: 32px;
  }

  .about-modern-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-modern-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-modern-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =====================================================
   WHY CHOOSE — CYBERPUNK DIAGNOSTICS / CORE FEATURES
===================================================== */

.why-modern {
  background: #09090b; /* Deep terminal void */
  padding: 120px 0;
  border-top: 1px solid rgba(192, 132, 252, 0.1);
  position: relative;
}

/* Optional subtle background grid effect */
.why-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(45, 212, 191, 0.05) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  pointer-events: none;
}

/* =====================================================
   HEADER — HUD STYLE
===================================================== */

.why-modern-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.why-modern-head h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 14px;
  color: #fafafa;
  line-height: 1.2;
  position: relative;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

/* underline accent - Glowing Laser */
.why-modern-head h2::after {
  content: "";
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #2dd4bf,
    transparent
  ); /* Neon teal */
  display: block;
  margin: 20px auto 0;
  border-radius: 0; /* Sharp tech edges */
  box-shadow: 0 0 10px #2dd4bf;
}

.why-modern-head p {
  font-size: 16px;
  line-height: 1.7;
  color: #a1a1aa;
  max-width: 560px;
  margin: 20px auto 0;
  letter-spacing: 0.03em;
}

/* =====================================================
   GRID
===================================================== */

.why-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* =====================================================
   CARD — DATA NODE
===================================================== */

.why-modern-card {
  background: rgba(24, 24, 27, 0.6); /* Dark Glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 8px; /* Sharp corners */
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Hover Accent Line */
.why-modern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: all 0.3s ease;
}

.why-modern-card:hover {
  transform: translateY(-8px);
  border-color: rgba(45, 212, 191, 0.3);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.8),
    inset 0 0 20px rgba(45, 212, 191, 0.1);
}

.why-modern-card:hover::before {
  background: linear-gradient(90deg, transparent, #2dd4bf, transparent);
  box-shadow: 0 0 15px #2dd4bf;
}

/* icon - Terminal Interface */

.why-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px; /* Sharp square nodes */
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid #2dd4bf;
  color: #2dd4bf;
  font-size: 22px;
  margin-bottom: 24px;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.2);
}

/* Light up the icon when the card is hovered */
.why-modern-card:hover .why-icon {
  background: #2dd4bf;
  color: #000;
  box-shadow: 0 0 20px rgba(45, 212, 191, 0.6);
  transform: scale(1.1) rotate(5deg);
}

/* title */

.why-modern-card h3 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #fafafa;
  transition: color 0.3s ease;
}

.why-modern-card:hover h3 {
  color: #2dd4bf; /* Text glows on hover */
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.4);
}

/* text */

.why-modern-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #a1a1aa;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .why-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-modern {
    padding: 80px 0;
  }

  .why-modern-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-modern-head h2 {
    font-size: 28px;
  }
}

/* =====================================================
   TESTIMONIALS — CYBERPUNK TRANSMISSION LOGS
===================================================== */

.testimonials-modern {
  background: #09090b; /* Deep terminal void */
  padding: 120px 0;
  border-top: 1px solid rgba(192, 132, 252, 0.1);
  position: relative;
}

/* =====================================================
   HEADER — HUD STYLE
===================================================== */

.testimonials-modern-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.testimonials-modern-head h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 14px;
  color: #fafafa;
  line-height: 1.2;
  position: relative;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

/* underline accent - Glowing Purple Laser */
.testimonials-modern-head h2::after {
  content: "";
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c084fc, transparent);
  display: block;
  margin: 20px auto 0;
  border-radius: 0; /* Sharp edges */
  box-shadow: 0 0 10px #c084fc;
}

.testimonials-modern-head p {
  font-size: 16px;
  line-height: 1.7;
  color: #a1a1aa;
  max-width: 560px;
  margin: 20px auto 0;
  letter-spacing: 0.03em;
}

/* =====================================================
   GRID
===================================================== */

.testimonials-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* =====================================================
   CARD — DATA LOG
===================================================== */

.testimonial-modern-card {
  background: rgba(24, 24, 27, 0.6); /* Dark Glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 8px; /* Sharp corners */
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

/* Hover Accent Line */
.testimonial-modern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: all 0.3s ease;
}

.testimonial-modern-card:hover {
  transform: translateY(-8px);
  border-color: rgba(192, 132, 252, 0.3); /* Purple border hover */
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.8),
    inset 0 0 20px rgba(192, 132, 252, 0.1);
}

.testimonial-modern-card:hover::before {
  background: linear-gradient(90deg, transparent, #c084fc, transparent);
  box-shadow: 0 0 15px #c084fc;
}

/* stars - Cyber Indicators */

.testimonial-stars {
  font-size: 14px;
  letter-spacing: 4px;
  color: #2dd4bf; /* Neon teal instead of standard orange */
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(45, 212, 191, 0.6); /* Glowing stars */
}

/* quote - User Transmission */

.testimonial-modern-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #e4e4e7;
  margin-bottom: 30px;
  font-style: italic;
  flex-grow: 1;
  border-left: 2px solid rgba(45, 212, 191, 0.3);
  padding-left: 16px;
}

/* user */

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

/* avatar - Tech Node */

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 4px; /* Square node instead of circle */
  background: rgba(192, 132, 252, 0.1);
  border: 1px solid #c084fc;
  color: #c084fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading, sans-serif);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 0 10px rgba(192, 132, 252, 0.2);
  transition: all 0.3s ease;
}

.testimonial-modern-card:hover .testimonial-avatar {
  background: #c084fc;
  color: #000;
  box-shadow: 0 0 15px rgba(192, 132, 252, 0.6);
  transform: scale(1.1);
}

.testimonial-user strong {
  display: block;
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 800;
  color: #fafafa;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.testimonial-user span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #2dd4bf;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .testimonials-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-modern {
    padding: 80px 0;
  }

  .testimonials-modern-head h2 {
    font-size: 28px;
  }

  .testimonials-modern-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* =====================================================
   RECENTLY VIEWED — CYBERPUNK MEMORY CACHE
===================================================== */

.recent-modern {
  background: #09090b; /* Deep void */
  padding: 100px 0;
  border-top: 1px solid rgba(192, 132, 252, 0.1); /* Subtle purple top boundary */
  position: relative;
}

/* ================= HEADER ================= */

.recent-modern-head {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.recent-modern-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c084fc; /* Neon purple */
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.4);
}

.recent-modern-head h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fafafa;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.recent-modern-head p {
  font-size: 15px;
  line-height: 1.7;
  color: #a1a1aa;
  max-width: 560px;
  margin: 0 auto;
  letter-spacing: 0.03em;
}

/* ================= GRID ================= */

.recent-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* ================= CARD (DATA NODE) ================= */

.recent-item {
  background: transparent;
  /* Tech divider line */
  border-top: 2px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.recent-item:hover {
  transform: translateY(-5px);
  border-top-color: #2dd4bf; /* Lights up teal on hover */
  box-shadow: 0 -10px 20px -10px rgba(45, 212, 191, 0.3); /* Top glow */
}

/* IMAGE */

.recent-item-image {
  background: rgba(24, 24, 27, 0.4); /* Very dark glass */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px; /* Sharp corners */
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.recent-item:hover .recent-item-image {
  border-color: rgba(45, 212, 191, 0.3);
  background: rgba(45, 212, 191, 0.05);
  box-shadow: inset 0 0 15px rgba(45, 212, 191, 0.1);
}

.recent-item-image img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(45, 212, 191, 0.1));
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.recent-item:hover .recent-item-image img {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 20px rgba(45, 212, 191, 0.25));
}

/* INFO */

.recent-item h3 {
  font-family: var(--font-heading, sans-serif);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  color: #fafafa;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.recent-item:hover h3 {
  color: #2dd4bf;
  text-shadow: 0 0 8px rgba(45, 212, 191, 0.4);
}

.recent-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #a1a1aa;
  margin-bottom: 16px;
}

/* FOOTER */

.recent-item-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1); /* Dashed data-line */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.3s ease;
}

.recent-item:hover .recent-item-footer {
  border-top-color: rgba(45, 212, 191, 0.3);
}

.recent-item-footer strong {
  font-family: var(--font-heading, sans-serif);
  font-size: 16px;
  font-weight: 800;
  color: #e4e4e7;
}

.recent-item-footer span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c084fc; /* Purple action text */
  position: relative;
  transition: color 0.3s ease;
}

.recent-item:hover .recent-item-footer span {
  text-shadow: 0 0 8px rgba(192, 132, 252, 0.5);
}

.recent-item-footer span::after {
  content: "→";
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.recent-item:hover .recent-item-footer span::after {
  transform: translateX(6px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .recent-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .recent-modern {
    padding: 80px 0;
  }

  .recent-modern-head h2 {
    font-size: 26px;
  }

  .recent-modern-grid {
    grid-template-columns: 1fr;
    gap: 40px; /* Give more breathing room when stacked */
  }

  .recent-item-image img {
    height: 160px; /* Slightly larger on mobile for visibility */
  }
}

/* =====================================================
   RECENTLY VIEWED — CYBERPUNK NEURAL RECALL (.recent-soft)
===================================================== */

.recent-soft {
  background: #09090b; /* Deep void */
  padding: 100px 0;
  border-top: 1px solid rgba(45, 212, 191, 0.1);
  position: relative;
}

/* Optional: Faint laser grid background for the section */
.recent-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 132, 252, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 132, 252, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* ================= HEADER ================= */

.recent-soft-head {
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
  border-left: 3px solid #c084fc; /* Neon purple data line */
  padding-left: 20px;
}

.recent-soft-head h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: #fafafa;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.recent-soft-head p {
  font-size: 15px;
  line-height: 1.7;
  color: #a1a1aa;
  max-width: 460px;
  letter-spacing: 0.02em;
}

/* ================= GRID ================= */

.recent-soft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  position: relative;
  z-index: 2;
}

/* ================= TILE (DATA FRAGMENT) ================= */

.recent-card {
  background: transparent;
  border-top: 2px solid rgba(255, 255, 255, 0.05); /* Tech scanner line */
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.recent-card:hover {
  transform: translateY(-8px);
  border-top-color: #2dd4bf; /* Lights up neon teal */
  box-shadow: 0 -15px 30px -15px rgba(45, 212, 191, 0.3); /* Top scanning glow */
}

/* ================= IMAGE ================= */

.recent-card-img {
  background: rgba(24, 24, 27, 0.6); /* Dark Glass */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px; /* Sharp tech edges */
  padding: 22px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.recent-card:hover .recent-card-img {
  border-color: rgba(45, 212, 191, 0.3);
  background: rgba(45, 212, 191, 0.05);
  box-shadow: inset 0 0 20px rgba(45, 212, 191, 0.1);
}

.recent-card-img img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.6));
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.recent-card:hover .recent-card-img img {
  transform: scale(1.08);
  filter: drop-shadow(
    0 10px 25px rgba(45, 212, 191, 0.3)
  ); /* Hologram shadow */
}

/* ================= NAME ================= */

.recent-card h3 {
  font-family: var(--font-heading, sans-serif);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  line-height: 1.35;
  color: #fafafa;
  transition: color 0.3s ease;
}

.recent-card:hover h3 {
  color: #2dd4bf;
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.4);
}

/* ================= RATING ================= */

.recent-card-rating {
  font-size: 12px;
  letter-spacing: 4px; /* Spaced out data points */
  color: #c084fc; /* Neon purple stars */
  margin-bottom: 16px;
  text-shadow: 0 0 8px rgba(192, 132, 252, 0.6);
}

/* ================= FOOTER ================= */

.recent-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1); /* Dashed terminal line */
  transition: border-color 0.3s ease;
}

.recent-card:hover .recent-card-footer {
  border-top-color: rgba(45, 212, 191, 0.3);
}

.recent-card-footer strong {
  font-family: var(--font-heading, sans-serif);
  font-size: 16px;
  font-weight: 800;
  color: #e4e4e7;
}

.recent-view-btn {
  font-family: var(--font-heading, sans-serif);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c084fc; /* Purple action link */
  position: relative;
  transition: all 0.3s ease;
}

.recent-card:hover .recent-view-btn {
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.6);
  color: #fff;
}

.recent-view-btn::after {
  content: "→";
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.recent-card:hover .recent-view-btn::after {
  transform: translateX(6px);
  color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .recent-soft-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .recent-soft {
    padding: 80px 0;
  }

  .recent-soft-head {
    border-left: none;
    border-top: 3px solid #c084fc;
    padding-left: 0;
    padding-top: 16px;
  }

  .recent-soft-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .recent-card-img img {
    height: 160px; /* Slightly taller for mobile visibility */
  }
}

/* =====================================================
   FOOTER — CYBERPUNK MAINFRAME TERMINAL
===================================================== */

.footer-blue {
  background: #000000; /* Pure black for the absolute bottom */
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  color: #fafafa;
  padding-top: 80px;
  border-top: 2px solid rgba(45, 212, 191, 0.3); /* Neon teal top boundary */
  position: relative;
  overflow: hidden;
}

/* Subtle glowing light from the bottom */
.footer-blue::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 200px;
  background: radial-gradient(
    ellipse at bottom,
    rgba(192, 132, 252, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

/* =====================================================
   TOP GRID
===================================================== */

.footer-blue-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* =====================================================
   BRAND
===================================================== */

.footer-brand img {
  width: 180px;
  margin-bottom: 20px;
  /* Optional: If logo is dark, this makes it pop/glow */
  filter: drop-shadow(0 0 10px rgba(192, 132, 252, 0.3));
}

.footer-brand p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #a1a1aa;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

/* contact */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact strong {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c084fc; /* Neon purple */
  display: block;
}

.footer-contact a {
  color: #e4e4e7;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: #2dd4bf;
  text-shadow: 0 0 8px rgba(45, 212, 191, 0.6);
}

/* =====================================================
   LINKS
===================================================== */

.footer-links h4 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #fafafa;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.footer-links a {
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
  color: #a1a1aa;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-links a:hover {
  color: #c084fc; /* Purple hover */
  text-decoration: none;
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.5);
  transform: translateX(6px); /* Slide right like a terminal selection */
}

/* =====================================================
   NEWSLETTER
===================================================== */

.footer-newsletter h4 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #2dd4bf; /* Teal accent */
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.4);
}

.footer-newsletter p {
  font-size: 14px;
  line-height: 1.6;
  color: #a1a1aa;
  margin-bottom: 20px;
}

/* form */

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05); /* Dark glass input */
  border: 1px solid #27272a;
  color: #fafafa;
  border-radius: 4px; /* Sharp corners */
  font-size: 14px;
  font-family: monospace; /* Terminal feel for input */
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.5);
  border-color: #2dd4bf;
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.3);
}

.newsletter-form input::placeholder {
  color: #52525b;
}

.newsletter-form button {
  background: transparent;
  color: #2dd4bf;
  border: 1px solid #2dd4bf;
  padding: 12px 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px; /* Sharp corners */
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.newsletter-form button:hover {
  background: #2dd4bf;
  color: #000;
  box-shadow: 0 0 15px rgba(45, 212, 191, 0.6);
  transform: translateY(-2px);
}

.newsletter-note {
  font-size: 11px;
  color: #52525b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =====================================================
   DIVIDER
===================================================== */

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(192, 132, 252, 0.5),
    transparent
  ); /* Glowing data line */
  margin: 60px 0 30px;
  border: none;
  position: relative;
  z-index: 2;
}

/* =====================================================
   BOTTOM
===================================================== */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}

.footer-company strong {
  display: block;
  font-family: var(--font-heading, sans-serif);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fafafa;
  text-transform: uppercase;
}

.footer-company span {
  font-size: 12px;
  color: #a1a1aa;
  letter-spacing: 0.5px;
}

.footer-copy {
  font-family: monospace; /* Tech data printout style */
  font-size: 12px;
  color: #52525b;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {
  .footer-blue-top {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .footer-blue-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}

/* =====================================================
   ABOUT PAGE — CYBERPUNK SYSTEM INTRO
===================================================== */

.about-intro {
  background: #09090b; /* Deep void background */
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(45, 212, 191, 0.1);
}

/* Subtle background node network glow */
.about-intro::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(192, 132, 252, 0.03) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* ================= LAYOUT ================= */

.about-intro-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  /* Add a subtle terminal panel backing */
  background: rgba(24, 24, 27, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px; /* Sharp tech edges */
  padding: 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

/* Glowing top accent line for the panel */
.about-intro-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2dd4bf, transparent);
  box-shadow: 0 0 15px #2dd4bf;
}

/* ================= CONTENT ================= */

.about-intro-text h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 30px;
  color: #fafafa;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  position: relative;
}

/* Glowing Purple Laser Underline */
.about-intro-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c084fc;
  margin-top: 24px;
  box-shadow: 0 0 10px rgba(192, 132, 252, 0.6);
}

/* Lead text - System Prompt Style */
.about-intro-lead {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  color: #2dd4bf; /* Neon teal */
  margin-bottom: 24px;
  max-width: 760px;
  letter-spacing: 0.02em;
  text-shadow: 0 0 8px rgba(45, 212, 191, 0.3);
}

/* Terminal chevron before the lead text */
.about-intro-lead::before {
  content: "> ";
  color: #c084fc;
  font-weight: 900;
  text-shadow: 0 0 10px #c084fc;
  margin-right: 8px;
}

.about-intro-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #a1a1aa;
  margin-bottom: 20px;
  max-width: 740px;
  letter-spacing: 0.03em;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .about-intro-inner {
    padding: 40px 30px;
  }
}

@media (max-width: 600px) {
  .about-intro {
    padding: 80px 15px; /* Adjusting padding for small mobile screens */
  }

  .about-intro-inner {
    padding: 30px 20px;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .about-intro-inner::before {
    display: none; /* Hide the panel glow line on mobile to keep it clean */
  }

  .about-intro-text h2 {
    font-size: 32px;
  }

  .about-intro-lead {
    font-size: 16px;
  }
}

/* =====================================================
   CONTACT PAGE — SECURE COMMS CHANNEL
===================================================== */

.contact-page {
  background: #09090b; /* Deep terminal void */
  padding: 120px 0;
  position: relative;
  border-top: 1px solid rgba(192, 132, 252, 0.1);
}

/* Subtle data grid background */
.contact-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* ================= LAYOUT ================= */

.contact-page-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* ================= LEFT CONTENT ================= */

.contact-info h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: #fafafa;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

/* Glowing Accent under title */
.contact-info h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c084fc; /* Neon purple */
  margin-top: 20px;
  box-shadow: 0 0 10px rgba(192, 132, 252, 0.6);
}

.contact-lead {
  font-size: 17.5px;
  line-height: 1.85;
  color: #2dd4bf; /* Neon teal for emphasis */
  margin-bottom: 28px;
  max-width: 520px;
  text-shadow: 0 0 8px rgba(45, 212, 191, 0.3);
}

.contact-points {
  margin-bottom: 40px;
  padding-left: 0;
  list-style: none;
}

.contact-points li {
  font-size: 15.5px;
  line-height: 1.8;
  color: #a1a1aa;
  margin-bottom: 16px;
  position: relative;
  padding-left: 24px;
}

/* Custom terminal bullet points */
.contact-points li::before {
  content: "[+]";
  position: absolute;
  left: 0;
  color: #c084fc;
  font-family: monospace;
  font-weight: 800;
  text-shadow: 0 0 8px rgba(192, 132, 252, 0.5);
}

/* ================= DETAILS ================= */

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1); /* Dashed data line */
  padding-top: 32px;
}

.contact-details strong {
  display: block;
  font-family: var(--font-heading, sans-serif);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c084fc;
  margin-bottom: 8px;
}

.contact-details span {
  font-size: 14px;
  color: #e4e4e7;
  font-family: monospace; /* Tech printout feel */
}

/* ================= FORM (DATA UPLINK) ================= */

.contact-form-card {
  background: rgba(24, 24, 27, 0.6); /* Dark Glass Panel */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px; /* Sharp corners */
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

/* Top Neon Scanner Line */
.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2dd4bf, transparent);
  box-shadow: 0 0 15px #2dd4bf;
}

.contact-form-card h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #fafafa;
}

.contact-desc {
  font-size: 14.5px;
  color: #a1a1aa;
  margin-bottom: 32px;
  max-width: 420px;
  border-left: 2px solid rgba(45, 212, 191, 0.3); /* Indicator line */
  padding-left: 12px;
}

/* INPUTS */

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 4px; /* Sharp tech inputs */
  border: 1px solid #27272a;
  font-size: 14px;
  font-family: monospace; /* Terminal typing feel */
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.4);
  color: #fafafa;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #52525b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.6);
  border-color: #2dd4bf;
  box-shadow:
    0 0 15px rgba(45, 212, 191, 0.2),
    inset 0 0 10px rgba(45, 212, 191, 0.1);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ROW */

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; /* Slightly wider gap to accommodate sharp borders */
}

/* ================= SUCCESS (SYSTEM VERIFIED) ================= */

.contact-success {
  background: rgba(45, 212, 191, 0.05); /* Tinted success box */
  border: 1px solid #2dd4bf;
  padding: 50px;
  border-radius: 8px; /* Sharp */
  text-align: center;
  box-shadow: 0 0 30px rgba(45, 212, 191, 0.15);
  position: relative;
  overflow: hidden;
}

/* Success scanning line animation */
.contact-success::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 2px;
  background: #2dd4bf;
  box-shadow: 0 0 10px #2dd4bf;
  animation: scanline 3s infinite linear;
}

@keyframes scanline {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

.contact-success h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: #2dd4bf;
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.4);
}

.contact-success p {
  font-family: monospace;
  font-size: 15px;
  color: #a1a1aa;
  max-width: 420px;
  margin: 0 auto;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .contact-page-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 0; /* Reset gap since inputs have bottom margin */
  }

  .contact-info {
    text-align: center;
  }

  .contact-info h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-lead {
    margin-inline: auto;
  }

  .contact-points li {
    text-align: left; /* Keep bullets readable */
    display: inline-block;
  }

  .contact-details {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .contact-page {
    padding: 80px 0;
  }

  .contact-form-card {
    padding: 30px 20px;
  }
}

/* =====================================================
   FAQ PAGE — CYBERPUNK KNOWLEDGE DATABASE
===================================================== */

.faq-page {
  background: #09090b; /* Deep terminal void */
  padding: 120px 0;
  position: relative;
  border-top: 1px solid rgba(45, 212, 191, 0.1);
}

/* Subtle data grid pattern */
.faq-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 132, 252, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 132, 252, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.faq-inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ================= GROUP ================= */

.faq-group {
  margin-bottom: 70px;
}

.faq-group h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: #2dd4bf; /* Neon teal */
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.4);
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Tech line next to group header */
.faq-group h2::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(45, 212, 191, 0.3), transparent);
}

/* ================= ITEM (DATA LOG) ================= */

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.05); /* Tech scanner line */
  padding: 0;
  transition: background 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.01);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ================= QUESTION (TERMINAL PROMPT) ================= */

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 20px;
  font-family: var(--font-heading, sans-serif);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #fafafa;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #c084fc; /* Neon purple hover */
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.4);
  padding-left: 26px; /* Indent slightly like a selected menu item */
}

/* The Plus/Minus Icon - Cyber Node */
.faq-question span {
  font-size: 18px;
  color: #2dd4bf;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 212, 191, 0.05);
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: 4px; /* Sharp edges */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-question:hover span {
  background: rgba(192, 132, 252, 0.1);
  border-color: #c084fc;
  color: #c084fc;
  box-shadow: 0 0 10px rgba(192, 132, 252, 0.3);
}

/* ================= ANSWER (DECRYPTED DATA) ================= */

.faq-answer {
  display: none;
  padding: 0 20px 30px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: #a1a1aa;
  max-width: 760px;
  margin: 0;
  border-left: 2px solid rgba(192, 132, 252, 0.3); /* Purple data stream line */
  padding-left: 20px;
}

/* ================= ACTIVE STATE ================= */

.faq-item.active {
  background: rgba(45, 212, 191, 0.02);
  border-top-color: rgba(45, 212, 191, 0.2);
}

.faq-item.active .faq-answer {
  display: block;
  animation: decryptFadeIn 0.4s ease forwards;
}

@keyframes decryptFadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Active Question */
.faq-item.active .faq-question {
  color: #2dd4bf;
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.4);
}

/* Active Node Icon */
.faq-item.active .faq-question span {
  transform: rotate(45deg);
  background: #2dd4bf;
  color: #000;
  border-color: #2dd4bf;
  box-shadow: 0 0 15px rgba(45, 212, 191, 0.6);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 600px) {
  .faq-page {
    padding: 80px 15px;
  }

  .faq-question {
    font-size: 15px;
    padding: 22px 10px;
  }

  .faq-question:hover {
    padding-left: 14px;
  }

  .faq-answer {
    padding: 0 10px 26px;
  }

  .faq-answer p {
    font-size: 14px;
    padding-left: 14px;
  }
}

/* =====================================================
   AUTH HERO — SECURE MAINFRAME ACCESS
===================================================== */

.auth-x-hero {
  background: #09090b; /* Deep terminal void */
  padding: 120px 0 80px;
  border-bottom: 1px solid rgba(45, 212, 191, 0.15); /* Teal scanner line */
  position: relative;
}

/* Subtle data grid overlay */
.auth-x-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 132, 252, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 132, 252, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.auth-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* EYEBROW - Terminal Status */

.auth-x-eyebrow {
  font-family: monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #2dd4bf; /* Neon teal */
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.5);
}

.auth-x-eyebrow::before {
  content: "[";
  margin-right: 8px;
  color: #c084fc;
}
.auth-x-eyebrow::after {
  content: "]";
  margin-left: 8px;
  color: #c084fc;
}

/* LEFT CONTENT */

.auth-x-hero-left h1 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: #fafafa;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.auth-x-hero-left h1 span {
  color: #c084fc; /* Neon purple highlight */
  text-shadow: 0 0 15px rgba(192, 132, 252, 0.4);
}

.auth-x-hero-left p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.8;
  color: #a1a1aa;
  border-left: 2px solid rgba(45, 212, 191, 0.3);
  padding-left: 16px;
}

/* RIGHT PANEL — SYSTEM CONTEXT */

.auth-x-hero-panel {
  background: transparent;
  border-left: 1px dashed rgba(255, 255, 255, 0.1); /* Dashed data stream */
  padding-left: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.auth-x-panel-item {
  background: rgba(24, 24, 27, 0.6); /* Dark Glass */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px; /* Sharp tech edges */
  padding: 22px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover laser on context panels */
.auth-x-panel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #2dd4bf;
  box-shadow: 0 0 10px #2dd4bf;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.auth-x-panel-item:hover {
  border-color: rgba(45, 212, 191, 0.2);
  background: rgba(45, 212, 191, 0.02);
}

.auth-x-panel-item:hover::before {
  opacity: 1;
}

.auth-x-panel-item strong {
  display: block;
  font-family: var(--font-heading, sans-serif);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: #fafafa;
}

.auth-x-panel-item span {
  font-family: monospace;
  font-size: 13px;
  color: #a1a1aa;
}

/* =====================================================
   AUTH BODY — UPLINK TERMINAL
===================================================== */

.auth-x {
  background: #09090b;
  padding: 80px 0 120px;
}

.auth-x-body {
  display: flex;
  justify-content: center;
}

/* CARD - SECURE MODULE */

.auth-x-card {
  background: rgba(18, 18, 20, 0.8);
  backdrop-filter: blur(16px);
  width: 100%;
  max-width: 420px;
  border-radius: 8px; /* Sharp */
  padding: 50px 42px;
  border: 1px solid rgba(192, 132, 252, 0.3); /* Purple terminal border */
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.8),
    inset 0 0 20px rgba(192, 132, 252, 0.05);
  position: relative;
}

/* Top Scanner Line on Auth Card */
.auth-x-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c084fc, transparent);
  box-shadow: 0 0 15px #c084fc;
}

/* HEADINGS */

.auth-x-card h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-align: center;
  color: #fafafa;
}

.auth-x-desc {
  font-family: monospace;
  font-size: 13px;
  color: #a1a1aa;
  margin-bottom: 35px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =====================================================
   AUTH FORM — DATA INPUT
===================================================== */

.auth-x-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.auth-x-field label {
  display: block;
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #2dd4bf; /* Teal labels */
}

.auth-x-field input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 4px; /* Sharp corners */
  border: 1px solid #27272a;
  font-size: 14px;
  font-family: monospace; /* Typewriter/terminal feel */
  background: rgba(0, 0, 0, 0.5);
  color: #fafafa;
  transition: all 0.3s ease;
}

.auth-x-field input:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.8);
  border-color: #c084fc; /* Purple focus */
  box-shadow: 0 0 15px rgba(192, 132, 252, 0.2);
}

/* =====================================================
   AUTH BUTTONS
===================================================== */

.auth-x-submit {
  margin-top: 10px;
  background: transparent;
  color: #c084fc;
  padding: 16px;
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px; /* Sharp */
  border: 1px solid #c084fc;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 10px rgba(192, 132, 252, 0.1);
}

.auth-x-submit:hover {
  background: #c084fc;
  color: #000;
  border-color: #c084fc;
  box-shadow: 0 0 20px rgba(192, 132, 252, 0.5);
  transform: translateY(-2px);
}

/* =====================================================
   AUTH META (Forgot Password, etc)
===================================================== */

.auth-x-meta {
  margin-top: 18px;
  text-align: right;
}

.auth-x-meta a {
  font-family: monospace;
  font-size: 12px;
  color: #a1a1aa;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.auth-x-meta a:hover {
  color: #2dd4bf;
  text-shadow: 0 0 8px rgba(45, 212, 191, 0.6);
}

/* DIVIDER */

.auth-x-divider {
  margin: 36px 0;
  text-align: center;
  position: relative;
}

.auth-x-divider span {
  background: rgba(18, 18, 20, 1); /* Matches card bg to look like cutout */
  padding: 0 16px;
  font-family: monospace;
  font-size: 12px;
  color: #52525b;
  position: relative;
  z-index: 1;
}

.auth-x-divider::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* REGISTER CTA */

.auth-x-secondary {
  text-align: center;
}

.auth-x-secondary p {
  font-family: monospace;
  font-size: 13px;
  margin-bottom: 16px;
  color: #a1a1aa;
}

.auth-x-outline-btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 4px;
  border: 1px solid #27272a;
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-heading, sans-serif);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  color: #fafafa;
  text-decoration: none;
  transition: all 0.3s ease;
}

.auth-x-outline-btn:hover {
  background: rgba(45, 212, 191, 0.1);
  border-color: #2dd4bf;
  color: #2dd4bf;
  box-shadow: 0 0 15px rgba(45, 212, 191, 0.2);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .auth-x-hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .auth-x-hero-panel {
    border-left: none;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-top: 40px;
  }

  .auth-x-hero-left h1 {
    font-size: 34px;
  }

  .auth-x-body {
    padding: 60px 20px 100px;
  }
}

/* =====================================================
   SIGNUP HERO — NEW USER PROTOCOL
===================================================== */

.signup-x-hero {
  background: #09090b; /* Deep terminal void */
  padding: 120px 0 80px;
  border-bottom: 1px solid rgba(45, 212, 191, 0.15); /* Teal scanner line */
  position: relative;
  overflow: hidden;
}

/* Data grid overlay */
.signup-x-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.signup-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* EYEBROW - System Status */

.signup-x-eyebrow {
  font-family: monospace;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c084fc; /* Neon purple */
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.4);
}

.signup-x-eyebrow::before {
  content: ">_";
  margin-right: 8px;
  color: #2dd4bf;
  font-weight: 900;
}

/* LEFT CONTENT */

.signup-x-hero-left h1 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: #fafafa;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.signup-x-hero-left h1 span {
  color: #2dd4bf; /* Neon teal highlight */
  text-shadow: 0 0 15px rgba(45, 212, 191, 0.4);
}

.signup-x-hero-left p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.8;
  color: #a1a1aa;
  border-left: 2px solid rgba(192, 132, 252, 0.3); /* Purple accent line */
  padding-left: 16px;
}

/* RIGHT PANEL — VALUE CONTEXT / SPECS */

.signup-x-hero-panel {
  background: transparent;
  border-left: 1px dashed rgba(255, 255, 255, 0.1); /* Dashed data line */
  padding-left: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.signup-x-panel-item {
  background: rgba(24, 24, 27, 0.6); /* Dark Glass */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px; /* Sharp tech edges */
  padding: 22px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover laser on panels */
.signup-x-panel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #c084fc;
  box-shadow: 0 0 10px #c084fc;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.signup-x-panel-item:hover {
  border-color: rgba(192, 132, 252, 0.2);
  background: rgba(192, 132, 252, 0.02);
}

.signup-x-panel-item:hover::before {
  opacity: 1;
}

.signup-x-panel-item strong {
  display: block;
  font-family: var(--font-heading, sans-serif);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: #fafafa;
}

.signup-x-panel-item span {
  font-family: monospace;
  font-size: 13px;
  color: #a1a1aa;
}

/* =====================================================
   SIGNUP BODY — CREATION TERMINAL
===================================================== */

.signup-x {
  background: #09090b;
  padding: 80px 0 120px;
}

.signup-x-body {
  display: flex;
  justify-content: center;
}

/* CARD - SECURE MODULE */

.signup-x-card {
  background: rgba(18, 18, 20, 0.8);
  backdrop-filter: blur(16px);
  width: 100%;
  max-width: 440px;
  border-radius: 8px; /* Sharp */
  padding: 50px 42px;
  border: 1px solid rgba(45, 212, 191, 0.3); /* Teal terminal border */
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.8),
    inset 0 0 20px rgba(45, 212, 191, 0.05);
  position: relative;
}

/* Top Scanner Line on Signup Card */
.signup-x-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2dd4bf, transparent);
  box-shadow: 0 0 15px #2dd4bf;
}

/* HEADINGS */

.signup-x-card h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-align: center;
  color: #fafafa;
}

.signup-x-desc {
  font-family: monospace;
  font-size: 13px;
  color: #a1a1aa;
  margin-bottom: 35px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =====================================================
   SIGNUP FORM — DATA INPUT
===================================================== */

.signup-x-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.signup-x-field label {
  display: block;
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #c084fc; /* Purple labels for contrast */
}

.signup-x-field input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 4px; /* Sharp corners */
  border: 1px solid #27272a;
  font-size: 14px;
  font-family: monospace; /* Typewriter/terminal feel */
  background: rgba(0, 0, 0, 0.5);
  color: #fafafa;
  transition: all 0.3s ease;
}

.signup-x-field input::placeholder {
  color: #52525b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.signup-x-field input:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.8);
  border-color: #2dd4bf; /* Teal focus */
  box-shadow: 0 0 15px rgba(45, 212, 191, 0.2);
}

/* =====================================================
   SIGNUP BUTTON
===================================================== */

.signup-x-submit {
  margin-top: 10px;
  background: transparent;
  color: #2dd4bf;
  padding: 16px;
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px; /* Sharp */
  border: 1px solid #2dd4bf;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.1);
}

.signup-x-submit:hover {
  background: #2dd4bf;
  color: #000;
  border-color: #2dd4bf;
  box-shadow: 0 0 20px rgba(45, 212, 191, 0.5);
  transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .signup-x-hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .signup-x-hero-panel {
    border-left: none;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-top: 40px;
  }

  .signup-x-hero-left h1 {
    font-size: 34px;
  }

  .signup-x-body {
    padding: 60px 20px 100px;
  }
}

/* =====================================================
   DASHBOARD HERO — MAINFRAME COMMAND CENTER
===================================================== */

.dash-x-hero {
  background: #09090b; /* Deep terminal void */
  padding: 120px 0 80px;
  border-bottom: 1px solid rgba(192, 132, 252, 0.15); /* Purple scanner line */
  position: relative;
  overflow: hidden;
}

/* Subtle data grid overlay */
.dash-x-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 132, 252, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 132, 252, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.dash-x-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* EYEBROW - System Status */

.dash-x-eyebrow {
  font-family: monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c084fc; /* Neon purple */
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.4);
}

.dash-x-eyebrow::before {
  content: "SYS_MSG:";
  margin-right: 8px;
  color: #2dd4bf; /* Neon teal */
}

/* LEFT CONTENT */

.dash-x-hero-left h1 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: clamp(34px, 4.5vw, 50px);
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: #fafafa;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.dash-x-hero-left h1 span {
  color: #2dd4bf; /* Teal highlight */
  text-shadow: 0 0 15px rgba(45, 212, 191, 0.4);
}

.dash-x-hero-left p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.8;
  color: #a1a1aa;
  border-left: 2px solid rgba(45, 212, 191, 0.3); /* Indicator line */
  padding-left: 16px;
}

/* HERO PANEL — SUMMARY DATA */

.dash-x-hero-panel {
  background: transparent;
  border-left: 1px dashed rgba(255, 255, 255, 0.1); /* Dashed data stream */
  padding-left: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.dash-x-panel-item {
  background: rgba(24, 24, 27, 0.6); /* Dark Glass */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px; /* Sharp tech edges */
  padding: 22px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover laser on panels */
.dash-x-panel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #c084fc;
  box-shadow: 0 0 10px #c084fc;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.dash-x-panel-item:hover {
  border-color: rgba(192, 132, 252, 0.2);
  background: rgba(192, 132, 252, 0.02);
}

.dash-x-panel-item:hover::before {
  opacity: 1;
}

.dash-x-panel-item strong {
  display: block;
  font-family: var(--font-heading, sans-serif);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: #fafafa;
}

.dash-x-panel-item span {
  font-family: monospace;
  font-size: 13px;
  color: #a1a1aa;
}

/* =====================================================
   DASHBOARD BODY
===================================================== */

.dash-x {
  background: #09090b;
  padding: 80px 0 120px;
}

.dash-x-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px; /* Slightly wider gap for the tech interface */
}

/* =====================================================
   SIDEBAR — TERMINAL NAVIGATION
===================================================== */

.dash-x-sidebar {
  background: transparent;
  padding: 0;
}

/* USER NODE */

.dash-x-user {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.dash-x-avatar {
  width: 48px;
  height: 48px;
  border-radius: 4px; /* Square tech node */
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid #2dd4bf;
  color: #2dd4bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading, sans-serif);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.2);
}

.dash-x-user-info strong {
  display: block;
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fafafa;
  letter-spacing: 0.5px;
}

.dash-x-user-info span {
  font-family: monospace;
  font-size: 12px;
  color: #c084fc; /* Purple role/ID */
  letter-spacing: 1px;
}

/* NAV */

.dash-x-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-x-nav a {
  padding: 12px 16px;
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
}

.dash-x-nav a:hover,
.dash-x-nav a.active {
  color: #2dd4bf;
  border-left-color: #2dd4bf;
  background: rgba(45, 212, 191, 0.05);
  text-shadow: 0 0 8px rgba(45, 212, 191, 0.4);
}

.dash-x-nav a.danger {
  color: #f43f5e; /* Cyberpunk Red */
}

.dash-x-nav a.danger:hover {
  border-left-color: #f43f5e;
  background: rgba(244, 63, 94, 0.05);
  text-shadow: 0 0 8px rgba(244, 63, 94, 0.4);
}

/* =====================================================
   DASHBOARD MAIN
===================================================== */

.dash-x-main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* CARD — CONTENT BLOCK */

.dash-x-card {
  background: transparent;
  padding: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.05); /* Tech separator */
  padding-top: 32px;
  position: relative;
}

.dash-x-card h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: #fafafa;
}

/* =====================================================
   ACCOUNT INFO (DATA LOGS)
===================================================== */

.dash-x-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  background: rgba(24, 24, 27, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 30px;
}

.dash-x-info-grid span {
  display: block;
  font-family: monospace;
  font-size: 12px;
  color: #c084fc; /* Purple data labels */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.dash-x-info-grid strong {
  font-family: var(--font-heading, sans-serif);
  font-size: 16px;
  font-weight: 800;
  color: #fafafa;
}

/* =====================================================
   QUICK ACTIONS (EXECUTABLE MODULES)
===================================================== */

.dash-x-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.dash-x-action {
  background: rgba(24, 24, 27, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 2px solid rgba(45, 212, 191, 0.2); /* Top tech border */
  border-radius: 4px;
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.dash-x-action strong {
  display: flex;
  align-items: center;
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #fafafa;
  transition: color 0.3s ease;
}

.dash-x-action strong::after {
  content: "→";
  margin-left: auto;
  color: #2dd4bf;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.dash-x-action span {
  font-size: 13px;
  color: #a1a1aa;
}

.dash-x-action:hover {
  transform: translateY(-5px);
  border-top-color: #2dd4bf;
  background: rgba(45, 212, 191, 0.02);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.5),
    0 -5px 15px rgba(45, 212, 191, 0.1);
}

.dash-x-action:hover strong {
  color: #2dd4bf;
  text-shadow: 0 0 8px rgba(45, 212, 191, 0.4);
}

.dash-x-action:hover strong::after {
  opacity: 1;
  transform: translateX(0);
}

/* =====================================================
   NOTICE — SYSTEM ALERT
===================================================== */

.dash-x-notice {
  background: rgba(192, 132, 252, 0.05); /* Tinted alert box */
  border: 1px solid rgba(192, 132, 252, 0.2);
  border-left: 4px solid #c084fc; /* Purple alert line */
  padding: 22px 24px;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(192, 132, 252, 0.1);
  position: relative;
  overflow: hidden;
}

/* Alert scanline animation */
.dash-x-notice::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 2px;
  background: #c084fc;
  box-shadow: 0 0 10px #c084fc;
  animation: scanline 4s infinite linear;
}

.dash-x-notice strong {
  display: block;
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #c084fc;
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.3);
}

.dash-x-notice p {
  font-size: 14px;
  line-height: 1.8;
  color: #e4e4e7;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .dash-x-hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .dash-x-hero-panel {
    border-left: none;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-top: 30px;
  }

  .dash-x-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dash-x-sidebar {
    order: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
  }

  .dash-x-main {
    order: 1;
  }

  .dash-x-info-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   TRACK ORDER — TELEMETRY & PAYLOAD TRACKER
===================================================== */

.trk-x {
  background: #09090b; /* Deep terminal void */
  padding: 120px 0;
  position: relative;
}

/* Radar/Grid background overlay */
.trk-x::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.trk-x-body {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.trk-x-layout {
  display: grid;
  gap: 50px;
}

/* =====================================================
   TRACK ORDER — SECTION (DATA MODULE)
===================================================== */

.trk-x-card {
  background: rgba(24, 24, 27, 0.6); /* Dark Glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px; /* Sharp tech corners */
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Top Neon Scanner Line */
.trk-x-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2dd4bf, transparent);
  box-shadow: 0 0 15px #2dd4bf;
}

.trk-x-card h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #fafafa;
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.3); /* Teal ambient glow */
}

.trk-x-desc {
  font-family: monospace;
  font-size: 14px;
  line-height: 1.8;
  color: #a1a1aa;
  margin-bottom: 32px;
  max-width: 520px;
}

/* =====================================================
   TRACK ORDER — FORM (SYSTEM UPLINK)
===================================================== */

.trk-x-form label {
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
  color: #c084fc; /* Purple target labels */
}

.trk-x-input-row {
  display: flex;
  gap: 16px;
}

.trk-x-input-row input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 4px; /* Sharp corners */
  border: 1px solid #27272a;
  font-size: 14px;
  font-family: monospace;
  background: rgba(0, 0, 0, 0.5);
  color: #fafafa;
  transition: all 0.3s ease;
}

.trk-x-input-row input::placeholder {
  color: #52525b;
  text-transform: uppercase;
}

.trk-x-input-row input:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.8);
  border-color: #2dd4bf;
  box-shadow:
    0 0 15px rgba(45, 212, 191, 0.2),
    inset 0 0 10px rgba(45, 212, 191, 0.1);
}

.trk-x-input-row button {
  padding: 16px 32px;
  border-radius: 4px;
  background: transparent;
  color: #2dd4bf;
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #2dd4bf;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.1);
}

.trk-x-input-row button:hover {
  background: #2dd4bf;
  color: #000;
  box-shadow: 0 0 20px rgba(45, 212, 191, 0.5);
  transform: translateY(-2px);
}

/* =====================================================
   TRACK ORDER — ERROR (SYSTEM ALERT)
===================================================== */

.trk-x-error {
  margin-top: 30px;
  background: rgba(244, 63, 94, 0.05); /* Tinted Cyberpunk Red */
  border: 1px solid rgba(244, 63, 94, 0.2);
  border-left: 4px solid #f43f5e;
  padding: 20px 24px;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.1);
}

.trk-x-error strong {
  display: block;
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #f43f5e;
  text-shadow: 0 0 10px rgba(244, 63, 94, 0.4);
}

.trk-x-error p {
  font-family: monospace;
  font-size: 14px;
  line-height: 1.7;
  color: #e4e4e7;
}

/* =====================================================
   TRACK ORDER — STATUS (TELEMETRY DISPLAY)
===================================================== */

.trk-x-status {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 4px solid #52525b; /* Default neutral offline state */
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.trk-x-status strong {
  display: block;
  font-family: var(--font-heading, sans-serif);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #fafafa;
}

.trk-x-status p {
  font-family: monospace;
  font-size: 14px;
  line-height: 1.8;
  color: #a1a1aa;
}

/* VARIANTS */

.trk-x-status.processing {
  border-left-color: #c084fc; /* Active Neon Purple */
  background: rgba(192, 132, 252, 0.05);
  box-shadow: 0 0 15px rgba(192, 132, 252, 0.1);
}

.trk-x-status.processing strong {
  color: #c084fc;
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.4);
}

.trk-x-status.dispatched {
  border-left-color: #10b981; /* Neon Green for Dispatched/Success */
  background: rgba(16, 185, 129, 0.05);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
}

.trk-x-status.dispatched strong {
  color: #10b981;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

/* =====================================================
   TRACK ORDER — SUMMARY (DATA PRINTOUT)
===================================================== */

.trk-x-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1); /* Dashed terminal line */
  padding-top: 30px;
}

.trk-x-summary span {
  display: block;
  font-family: monospace;
  font-size: 12px;
  color: #c084fc; /* Purple data labels */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.trk-x-summary strong {
  font-family: var(--font-heading, sans-serif);
  font-size: 16px;
  font-weight: 800;
  color: #fafafa;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 600px) {
  .trk-x {
    padding: 80px 15px;
  }

  .trk-x-card {
    padding: 30px 20px;
  }

  .trk-x-input-row {
    flex-direction: column;
    gap: 16px;
  }

  .trk-x-input-row button {
    width: 100%;
  }

  .trk-x-summary {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =====================================================
   RETURN ORDER — REVERSE LOGISTICS PROTOCOL
===================================================== */

.rtn-x {
  background: #09090b; /* Deep terminal void */
  padding: 120px 0;
  position: relative;
}

/* Subtle data grid overlay */
.rtn-x::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 132, 252, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 132, 252, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.rtn-x-body {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* =====================================================
   RETURN ORDER — SECTION (RECALL MODULE)
===================================================== */

.rtn-x-card {
  background: rgba(24, 24, 27, 0.6); /* Dark Glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px; /* Sharp tech edges */
  padding: 40px 50px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Top Neon Scanner Line */
.rtn-x-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c084fc, transparent);
  box-shadow: 0 0 15px #c084fc;
}

.rtn-x-card h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #fafafa;
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.3);
}

.rtn-x-desc {
  font-family: monospace;
  font-size: 14px;
  line-height: 1.8;
  color: #a1a1aa;
  margin-bottom: 36px;
  max-width: 100%;
}

/* =====================================================
   RETURN ORDER — FORM (DATA INPUT)
===================================================== */

.rtn-x-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rtn-x-field label {
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: block;
  color: #2dd4bf; /* Neon teal labels */
}

.rtn-x-field input,
.rtn-x-field select,
.rtn-x-field textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 4px; /* Sharp corners */
  border: 1px solid #27272a;
  font-size: 14px;
  font-family: monospace;
  background: rgba(0, 0, 0, 0.5);
  color: #fafafa;
  transition: all 0.3s ease;
}

/* Select dropdown specific styling for dark mode */
.rtn-x-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232dd4bf' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.rtn-x-field select option {
  background: #09090b;
  color: #fafafa;
}

.rtn-x-field textarea {
  min-height: 140px;
  resize: vertical;
}

.rtn-x-field input:focus,
.rtn-x-field select:focus,
.rtn-x-field textarea:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.8);
  border-color: #2dd4bf;
  box-shadow:
    0 0 15px rgba(45, 212, 191, 0.2),
    inset 0 0 10px rgba(45, 212, 191, 0.1);
}

/* =====================================================
   RETURN ORDER — ERROR (SYSTEM WARNING)
===================================================== */

.rtn-x-error {
  background: rgba(244, 63, 94, 0.05); /* Cyberpunk Red tint */
  border: 1px solid rgba(244, 63, 94, 0.2);
  border-left: 4px solid #f43f5e;
  padding: 20px 24px;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.1);
}

.rtn-x-error strong {
  display: block;
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #f43f5e;
  text-shadow: 0 0 10px rgba(244, 63, 94, 0.4);
}

.rtn-x-error p {
  font-family: monospace;
  font-size: 14px;
  line-height: 1.7;
  color: #e4e4e7;
}

/* =====================================================
   RETURN ORDER — ACTION (EXECUTE)
===================================================== */

.rtn-x-primary-btn {
  display: inline-block;
  margin-top: 10px;
  background: transparent;
  color: #c084fc;
  padding: 16px 32px;
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px; /* Sharp */
  border: 1px solid #c084fc;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 10px rgba(192, 132, 252, 0.1);
}

.rtn-x-primary-btn:hover {
  background: #c084fc;
  color: #000;
  box-shadow: 0 0 20px rgba(192, 132, 252, 0.5);
  transform: translateY(-2px);
}

.rtn-x-note {
  font-family: monospace;
  font-size: 12px;
  line-height: 1.7;
  color: #52525b;
  margin-top: 16px;
  max-width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =====================================================
   RETURN ORDER — SUCCESS (RECALL VERIFIED)
===================================================== */

.rtn-x-success {
  background: transparent;
  border-top: 1px dashed rgba(255, 255, 255, 0.1); /* Dashed data line */
  padding-top: 50px;
  text-align: center;
}

.rtn-x-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 4px; /* Tech node */
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981; /* Neon green */
  color: #10b981;
  font-family: monospace;
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.rtn-x-success h2 {
  font-family: var(--font-heading, sans-serif);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #10b981;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.rtn-x-success p {
  font-family: monospace;
  font-size: 14px;
  line-height: 1.8;
  color: #a1a1aa;
  max-width: 520px;
  margin: 0 auto 32px;
}

/* =====================================================
   RETURN ORDER — SUMMARY
===================================================== */

.rtn-x-summary {
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-bottom: 30px;
}

.rtn-x-summary span {
  display: block;
  font-family: monospace;
  font-size: 12px;
  color: #c084fc;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.rtn-x-summary strong {
  font-family: var(--font-heading, sans-serif);
  font-size: 16px;
  font-weight: 800;
  color: #fafafa;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 600px) {
  .rtn-x {
    padding: 80px 15px;
  }

  .rtn-x-card {
    padding: 30px 20px;
  }
}

/* =====================================================
   CART — SECURE ASSET MANIFEST
===================================================== */

.crt-x {
  background: #09090b; /* Deep terminal void */
  padding: 120px 0;
  position: relative;
}

/* Subtle grid overlay */
.crt-x::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.crt-x-body {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* =====================================================
   CART — EMPTY STATE (NO ASSETS)
===================================================== */

.crt-x-empty {
  background: transparent;
  border-top: 2px solid rgba(45, 212, 191, 0.2); /* Tech scanner line */
  padding-top: 60px;
  text-align: center;
}

.crt-x-empty h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #2dd4bf;
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.4);
}

.crt-x-empty p {
  font-family: monospace;
  font-size: 15px;
  line-height: 1.8;
  color: #a1a1aa;
  max-width: 420px;
  margin: 0 auto 28px;
  text-transform: uppercase;
}

/* =====================================================
   CART — LAYOUT
===================================================== */

.crt-x-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px; /* Slightly wider for the tech panels */
}

.crt-x-items h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
  color: #fafafa;
}

/* =====================================================
   CART — ITEM (DATA ROW)
===================================================== */

.crt-x-item {
  background: transparent;
  border-top: 1px dashed rgba(255, 255, 255, 0.1); /* Dashed terminal line */
  padding: 30px 20px; /* Added horizontal padding for hover effect */
  display: grid;
  grid-template-columns: 90px 1fr auto auto;
  gap: 24px;
  align-items: center;
  transition: all 0.3s ease;
}

.crt-x-item:hover {
  background: rgba(45, 212, 191, 0.02);
  border-top-color: rgba(45, 212, 191, 0.3);
}

/* IMAGE */

.crt-x-item-image img {
  width: 90px;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px; /* Sharp corners */
  padding: 10px;
  background: rgba(0, 0, 0, 0.5); /* Dark housing */
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
  transition: all 0.3s ease;
}

.crt-x-item:hover .crt-x-item-image img {
  border-color: rgba(45, 212, 191, 0.3);
  filter: drop-shadow(0 0 10px rgba(45, 212, 191, 0.2));
}

/* INFO */

.crt-x-item-info strong {
  display: block;
  font-family: var(--font-heading, sans-serif);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: #fafafa;
  transition: color 0.3s ease;
}

.crt-x-item:hover .crt-x-item-info strong {
  color: #2dd4bf;
  text-shadow: 0 0 8px rgba(45, 212, 191, 0.4);
}

.crt-x-item-info span {
  font-family: monospace;
  font-size: 13px;
  color: #a1a1aa;
}

/* =====================================================
   CART — QUANTITY (PARAMETERS)
===================================================== */

.crt-x-item-qty form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.crt-x-item-qty input {
  width: 64px;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #27272a;
  font-size: 14px;
  font-family: monospace;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  color: #2dd4bf; /* Neon teal input text */
  transition: all 0.3s ease;
}

.crt-x-item-qty input:focus {
  outline: none;
  border-color: #2dd4bf;
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.3);
}

.crt-x-item-qty button {
  padding: 10px 14px;
  border-radius: 4px;
  border: 1px solid #27272a;
  background: rgba(255, 255, 255, 0.02);
  color: #a1a1aa;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
}

.crt-x-item-qty button:hover {
  background: rgba(192, 132, 252, 0.1);
  border-color: #c084fc;
  color: #c084fc;
  box-shadow: 0 0 10px rgba(192, 132, 252, 0.3);
}

/* =====================================================
   CART — TOTAL & REMOVE
===================================================== */

.crt-x-item-total {
  text-align: right;
}

.crt-x-item-total strong {
  display: block;
  font-family: monospace;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fafafa;
}

.crt-x-remove {
  background: none;
  border: none;
  color: #f43f5e; /* Cyberpunk Red */
  font-family: monospace;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.crt-x-remove:hover {
  text-decoration: none;
  text-shadow: 0 0 10px rgba(244, 63, 94, 0.6);
}

/* =====================================================
   CART — SUMMARY (SYSTEM READOUT)
===================================================== */

.crt-x-summary {
  background: rgba(24, 24, 27, 0.6); /* Dark Glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px; /* Sharp corners */
  padding: 40px 32px;
  height: fit-content;
  position: sticky;
  top: 120px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Top Neon Scanner Line on Summary */
.crt-x-summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c084fc, transparent);
  box-shadow: 0 0 15px #c084fc;
}

.crt-x-summary h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 26px;
  color: #fafafa;
}

/* ROWS */

.crt-x-summary-row {
  display: flex;
  justify-content: space-between;
  font-family: monospace;
  font-size: 14px;
  margin-bottom: 16px;
  color: #a1a1aa;
  text-transform: uppercase;
}

.crt-x-summary-row strong {
  color: #e4e4e7;
}

.crt-x-summary-row.total {
  font-family: var(--font-heading, sans-serif);
  font-weight: 800;
  font-size: 18px;
  padding-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  color: #2dd4bf; /* Neon teal total */
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.3);
  margin-top: 24px;
}

/* =====================================================
   CART — PRIMARY ACTION (EXECUTE)
===================================================== */

.crt-x-primary-btn {
  display: block;
  margin-top: 32px;
  background: transparent;
  color: #c084fc; /* Neon purple */
  border: 1px solid #c084fc;
  padding: 16px;
  font-family: var(--font-heading, sans-serif);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px; /* Sharp */
  text-align: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 10px rgba(192, 132, 252, 0.1);
  text-decoration: none;
}

.crt-x-primary-btn.checkout:hover {
  background: #c084fc;
  color: #000;
  border-color: #c084fc;
  box-shadow: 0 0 20px rgba(192, 132, 252, 0.5);
  transform: translateY(-2px);
}

/* TRUST TEXT / ENCRYPTION STATUS */

.crt-x-trust {
  font-family: monospace;
  font-size: 12px;
  line-height: 1.7;
  color: #52525b;
  text-align: center;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .crt-x-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .crt-x-summary {
    position: static;
    padding: 30px 20px;
  }

  .crt-x-item {
    grid-template-columns: 80px 1fr;
    grid-template-areas:
      "img info"
      "img qty"
      "img total";
    padding: 24px 10px;
  }

  .crt-x-item-total {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .crt-x {
    padding: 80px 15px;
  }

  .crt-x-item {
    padding: 20px 0;
  }

  .crt-x-items h2 {
    font-size: 22px;
  }
}

/* =====================================================
   CHECKOUT — SECURE ASSET TRANSFER
===================================================== */

.chk-x {
  background: #09090b; /* Deep terminal void */
  padding: 120px 0;
  position: relative;
}

/* Subtle grid overlay */
.chk-x::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.chk-x-body {
  max-width: 1400px; /* Reduced slightly from 1620px for tighter terminal look */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* =====================================================
   CHECKOUT — ERROR (SYSTEM ALERT)
===================================================== */

.chk-x-error {
  background: rgba(244, 63, 94, 0.05); /* Tinted Cyberpunk Red */
  border: 1px solid rgba(244, 63, 94, 0.2);
  border-left: 4px solid #f43f5e;
  padding: 20px 24px;
  border-radius: 4px;
  margin-bottom: 40px;
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.1);
}

.chk-x-error strong {
  display: block;
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #f43f5e;
  text-shadow: 0 0 10px rgba(244, 63, 94, 0.4);
}

.chk-x-error p {
  font-family: monospace;
  font-size: 14px;
  line-height: 1.7;
  color: #e4e4e7;
}

/* =====================================================
   CHECKOUT — LAYOUT
===================================================== */

.chk-x-layout {
  display: grid;
  grid-template-columns: 1fr 480px; /* Narrowed the sidebar slightly */
  gap: 60px;
}

/* =====================================================
   CHECKOUT — SECTIONS (DATA MODULES)
===================================================== */

.chk-x-card {
  background: transparent;
  padding: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.05); /* Tech separator */
  padding-top: 32px;
  margin-bottom: 50px;
}

.chk-x-card h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: #fafafa;
}

/* =====================================================
   CHECKOUT — FORM (DATA INPUT)
===================================================== */

.chk-x-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.chk-x-grid.single {
  grid-template-columns: 1fr;
}

.chk-x-card label {
  display: block;
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  color: #c084fc; /* Purple labels */
}

.chk-x-card input,
.chk-x-card textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 4px; /* Sharp tech edges */
  border: 1px solid #27272a;
  font-size: 14px;
  font-family: monospace;
  background: rgba(0, 0, 0, 0.5);
  color: #fafafa;
  transition: all 0.3s ease;
}

.chk-x-card textarea {
  min-height: 120px;
  resize: vertical;
}

.chk-x-card input:focus,
.chk-x-card textarea:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.8);
  border-color: #c084fc;
  box-shadow:
    0 0 15px rgba(192, 132, 252, 0.2),
    inset 0 0 10px rgba(192, 132, 252, 0.1);
}

/* =====================================================
   CHECKOUT — PAYMENTS (RELAY PROTOCOLS)
===================================================== */

.chk-x-payments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.chk-x-payment {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(24, 24, 27, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chk-x-payment:hover {
  background: rgba(45, 212, 191, 0.05);
  border-color: rgba(45, 212, 191, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.chk-x-payment i {
  font-size: 24px;
  color: #52525b;
  margin-top: 2px;
  transition: color 0.3s ease;
}

.chk-x-payment strong {
  display: block;
  font-family: var(--font-heading, sans-serif);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: #fafafa;
  transition: color 0.3s ease;
}

.chk-x-payment span {
  font-family: monospace;
  font-size: 12px;
  color: #a1a1aa;
}

/* ACTIVE PAYMENT PROTOCOL */

.chk-x-payment.active {
  background: rgba(45, 212, 191, 0.1);
  border-color: #2dd4bf; /* Neon teal */
  box-shadow: 0 0 15px rgba(45, 212, 191, 0.2);
}

.chk-x-payment.active i,
.chk-x-payment.active strong {
  color: #2dd4bf;
  text-shadow: 0 0 8px rgba(45, 212, 191, 0.4);
}

/* =====================================================
   CHECKOUT — SUMMARY (SYSTEM READOUT)
===================================================== */

.chk-x-summary {
  background: rgba(24, 24, 27, 0.6); /* Dark Glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 40px 32px;
  height: fit-content;
  position: sticky;
  top: 120px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Top Neon Scanner Line on Summary */
.chk-x-summary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2dd4bf, transparent);
  box-shadow: 0 0 15px #2dd4bf;
}

.chk-x-summary h3 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 26px;
  color: #fafafa;
}

/* SUMMARY ITEMS (DATA ROWS) */

.chk-x-summary-items {
  margin-bottom: 24px;
}

.chk-x-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: monospace;
  font-size: 13px;
  margin-bottom: 12px;
  color: #a1a1aa;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #27272a; /* Replaced the soft grey border */
  padding: 12px 16px;
  border-radius: 4px; /* Sharp */
}

.chk-x-summary-item strong {
  color: #fafafa;
  border-left: 2px solid rgba(192, 132, 252, 0.4); /* Purple data tick */
  padding-left: 12px;
}

/* TOTAL */

.chk-x-summary-total {
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-bottom: 30px;
}

.chk-x-summary-total div {
  display: flex;
  justify-content: space-between;
  font-family: monospace;
  font-size: 14px;
  color: #a1a1aa;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.chk-x-summary-total .total {
  font-family: var(--font-heading, sans-serif);
  font-weight: 800;
  font-size: 20px;
  color: #2dd4bf; /* Neon teal final output */
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.4);
  margin-top: 20px;
}

/* =====================================================
   CHECKOUT — CTA (EXECUTE TRANSFER)
===================================================== */

.chk-x-primary-btn {
  width: 100%;
  background: transparent;
  color: #c084fc; /* Neon purple */
  border: 1px solid #c084fc;
  padding: 18px;
  font-family: var(--font-heading, sans-serif);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px; /* Sharp */
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 10px rgba(192, 132, 252, 0.1);
}

.chk-x-primary-btn:hover {
  background: #c084fc;
  color: #000;
  box-shadow: 0 0 20px rgba(192, 132, 252, 0.5);
  transform: translateY(-2px);
}

/* ENCRYPTION STATUS */
.chk-x-trust {
  font-family: monospace;
  font-size: 12px;
  line-height: 1.7;
  color: #52525b;
  text-align: center;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1024px) {
  .chk-x-layout {
    grid-template-columns: 1fr 400px; /* Compress sidebar slightly */
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .chk-x-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .chk-x-summary {
    position: static;
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  .chk-x {
    padding: 80px 15px;
  }

  .chk-x-grid {
    grid-template-columns: 1fr; /* Stack form fields */
  }
}

/* =====================================================
   ORDER SUCCESS — SECURE UPLINK CONFIRMATION
===================================================== */

.ordx-success {
  background: #09090b; /* Deep terminal void */
  padding: 120px 0;
  position: relative;
}

/* Subtle grid overlay */
.ordx-success::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.ordx-body {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ordx-layout {
  display: grid;
  grid-template-columns: 1fr 340px; /* Slightly widened sidebar */
  gap: 60px;
}

/* =====================================================
   MAIN AREA
===================================================== */

.ordx-main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.ordx-main h3 {
  color: #a1a1aa;
}

/* =====================================================
   SECTION (DATA MODULE)
===================================================== */

.ordx-card {
  background: transparent;
  padding: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.05); /* Tech separator */
  padding-top: 32px;
  position: relative;
}

.ordx-card h2 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #fafafa;
}

.ordx-card p {
  font-family: monospace;
  font-size: 14px;
  line-height: 1.8;
  color: #a1a1aa;
  max-width: 680px;
}

/* CONFIRMATION ACCENT — VERIFIED STATE */

.ordx-confirm {
  border-top-color: #10b981; /* Neon green */
  background: linear-gradient(
    180deg,
    rgba(16, 185, 129, 0.05) 0%,
    transparent 100%
  );
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 -10px 30px -15px rgba(16, 185, 129, 0.4); /* Top glow */
}

.ordx-confirm h2 {
  color: #10b981;
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

/* =====================================================
   ORDER STATS (TRANSACTION DATA)
===================================================== */

.ordx-stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1); /* Dashed data line */
  padding-top: 32px;
}

.ordx-stats span {
  display: block;
  font-family: monospace;
  font-size: 12px;
  color: #c084fc; /* Purple data labels */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.ordx-stats strong {
  font-family: var(--font-heading, sans-serif);
  font-size: 16px;
  font-weight: 800;
  color: #fafafa;
}

/* =====================================================
   WHAT HAPPENS NEXT (SYSTEM PROTOCOL)
===================================================== */

.ordx-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ordx-steps li {
  padding-left: 36px;
  position: relative;
  font-size: 15px;
  line-height: 1.8;
  color: #e4e4e7;
  margin-bottom: 16px;
}

.ordx-steps li::before {
  content: "[OK]";
  font-family: monospace;
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-weight: 800;
  text-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

/* =====================================================
   ACTIONS (EXECUTE)
===================================================== */

.ordx-actions {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.ordx-btn {
  padding: 16px 26px;
  border-radius: 4px; /* Sharp tech edges */
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  text-decoration: none;
}

/* PRIMARY (GLOWING TEAL) */

.ordx-btn.primary {
  background: transparent;
  border: 1px solid #2dd4bf;
  color: #2dd4bf;
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.1);
}

.ordx-btn.primary:hover {
  background: #2dd4bf;
  color: #000;
  box-shadow: 0 0 20px rgba(45, 212, 191, 0.5);
  transform: translateY(-2px);
}

/* GHOST (OUTLINE) */

.ordx-btn.ghost {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #27272a;
  color: #fafafa;
}

.ordx-btn.ghost:hover {
  background: rgba(192, 132, 252, 0.1);
  border-color: #c084fc;
  color: #fff;
  box-shadow: 0 0 15px rgba(192, 132, 252, 0.3);
  transform: translateY(-2px);
}

/* =====================================================
   RIGHT SIDEBAR
===================================================== */

.ordx-side {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* =====================================================
   STATUS RAIL — DEPLOYMENT TRACKER
===================================================== */

.ordx-rail {
  background: transparent;
  border-top: 2px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
}

.rail-step {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  opacity: 0.4;
  transition: all 0.3s ease;
}

.rail-step span {
  width: 32px;
  height: 32px;
  border-radius: 4px; /* Square nodes */
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #52525b;
  color: #a1a1aa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: 13px;
  font-weight: 800;
}

.rail-step strong {
  font-family: var(--font-heading, sans-serif);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a1a1aa;
}

/* ACTIVE NODE */

.rail-step.active {
  opacity: 1;
}

.rail-step.active span {
  background: rgba(16, 185, 129, 0.1);
  border-color: #10b981; /* Neon green */
  color: #10b981;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.rail-step.active strong {
  color: #10b981;
  text-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
}

/* =====================================================
   HELP BOX — SECURE ASSISTANCE
===================================================== */

.ordx-help {
  background: rgba(24, 24, 27, 0.6); /* Dark Glass */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 3px solid #c084fc; /* Purple accent */
  border-radius: 4px; /* Sharp */
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ordx-help strong {
  display: block;
  font-family: var(--font-heading, sans-serif);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #fafafa;
}

.ordx-help p {
  font-family: monospace;
  font-size: 13px;
  line-height: 1.8;
  color: #a1a1aa;
}

.ordx-help a {
  color: #c084fc;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ordx-help a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(192, 132, 252, 0.6);
}

/* =====================================================
   UTILITIES
===================================================== */

.text-black {
  color: #fafafa !important; /* Forces light text in dark mode */
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .ordx-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ordx-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ordx-actions {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .ordx-success {
    padding: 80px 15px;
  }

  .ordx-confirm {
    padding: 30px 20px;
  }
}

/* Policy Pages */
.policy-page {
  padding: 50px;
}

/* =====================================================
   SHOP PAGE — HARDWARE REQUISITION TERMINAL
===================================================== */

.shop-hard {
  background: #09090b; /* Deep terminal void */
  position: relative;
}

/* Subtle grid overlay to give the catalog a schematic feel */
.shop-hard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.shop-hard-body {
  padding: 100px 0 120px;
  position: relative;
  z-index: 2;
}

/* =====================================================
   EMPTY STATE (NO ASSETS FOUND)
===================================================== */

.shop-hard-empty {
  background: rgba(24, 24, 27, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 2px solid #f43f5e; /* Cyberpunk red warning line */
  padding: 40px;
  text-align: center;
  margin-bottom: 56px;
  border-radius: 4px; /* Sharp corners */
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.1);
}

.shop-hard-empty strong {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
  color: #f43f5e;
  text-shadow: 0 0 10px rgba(244, 63, 94, 0.4);
}

.shop-hard-empty p {
  font-family: monospace;
  font-size: 14px;
  line-height: 1.8;
  color: #a1a1aa;
  max-width: 420px;
  margin: 0 auto;
}

/* =====================================================
   SHOP GRID — CATALOG
===================================================== */

.shop-hard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 40px;
}

/* =====================================================
   SHOP PRODUCT — ASSET DATA TILE
===================================================== */

.shop-product-card {
  background: rgba(24, 24, 27, 0.6); /* Dark Glass */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 2px solid rgba(45, 212, 191, 0.2); /* Tech separator */
  padding: 24px;
  border-radius: 4px; /* Sharp edges */
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.shop-product-card:hover {
  transform: translateY(-6px);
  border-top-color: #2dd4bf; /* Neon teal hover line */
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.6),
    0 -5px 15px rgba(45, 212, 191, 0.15);
}

/* =====================================================
   IMAGE (HOLOGRAPHIC HOUSING)
===================================================== */

.shop-product-image {
  position: relative;
  background: rgba(0, 0, 0, 0.5); /* Deep inset */
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.shop-product-card:hover .shop-product-image {
  border-color: rgba(45, 212, 191, 0.3);
  background: rgba(45, 212, 191, 0.05);
}

.shop-product-image img {
  max-width: 100%;
  height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.8));
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.shop-product-card:hover .shop-product-image img {
  transform: scale(1.1);
  filter: drop-shadow(0 10px 20px rgba(45, 212, 191, 0.3)); /* Hologram glow */
}

/* =====================================================
   STOCK BADGE — SYSTEM INDICATOR
===================================================== */

.shop-stock {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: monospace;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: 2px; /* Sharp tech tags */
  z-index: 2;
}

.shop-stock.in {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981; /* Neon Green */
  border: 1px solid #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.shop-stock.out {
  background: rgba(244, 63, 94, 0.1);
  color: #f43f5e; /* Cyberpunk Red */
  border: 1px solid #f43f5e;
  box-shadow: 0 0 10px rgba(244, 63, 94, 0.2);
}

/* =====================================================
   INFO (DATA READOUT)
===================================================== */

.shop-product-info {
  padding: 24px 0 0;
  flex: 1;
}

.shop-product-info h3 {
  font-family: var(--font-heading, sans-serif);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  line-height: 1.4;
  color: #fafafa;
  transition: color 0.3s ease;
}

.shop-product-card:hover .shop-product-info h3 {
  color: #2dd4bf;
  text-shadow: 0 0 8px rgba(45, 212, 191, 0.4);
}

.shop-product-info p {
  font-family: monospace;
  font-size: 13px;
  line-height: 1.6;
  color: #a1a1aa;
}

/* =====================================================
   FOOTER
===================================================== */

.shop-product-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1); /* Dashed terminal line */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-price {
  font-family: monospace;
  font-size: 16px;
  font-weight: 800;
  color: #c084fc; /* Neon purple pricing */
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.4);
}

/* =====================================================
   ADD TO CART — EXECUTE ACTION
===================================================== */

.shop-add-btn {
  background: transparent;
  color: #2dd4bf;
  border: 1px solid #2dd4bf;
  padding: 8px 16px;
  border-radius: 2px; /* Sharp corners */
  font-family: var(--font-heading, sans-serif);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.shop-add-btn:hover {
  background: #2dd4bf;
  color: #000;
  box-shadow: 0 0 15px rgba(45, 212, 191, 0.5);
  transform: translateY(-2px);
}

/* DISABLED (RESTRICTED ACCESS) */

.shop-disabled-btn {
  background: rgba(255, 255, 255, 0.02);
  color: #52525b;
  border: 1px solid #27272a;
  padding: 8px 16px;
  border-radius: 2px;
  font-family: var(--font-heading, sans-serif);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: not-allowed;
}

/* OUT OF STOCK DIMMING */

.shop-product-card.out {
  opacity: 0.6;
  filter: grayscale(60%);
}

.shop-product-card.out:hover {
  transform: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-top-color: rgba(244, 63, 94, 0.3); /* Red hover line for OOS */
}

/* LINK */

.shop-product-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 600px) {
  .shop-hard-body {
    padding: 80px 15px;
  }

  .shop-product-image img {
    height: 150px;
  }
}

/* =====================================================
   PRODUCT DETAIL — ASSET SCHEMATIC / TERMINAL PDP
===================================================== */

.prd-pro {
  background: #09090b; /* Deep terminal void */
  padding: 120px 0;
  position: relative;
}

/* Subtle schematic grid background */
.prd-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.prd-pro-top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* =====================================================
   IMAGE (HOLOGRAPHIC HOUSING)
===================================================== */

.prd-pro-media {
  background: rgba(24, 24, 27, 0.6); /* Dark Glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 4px; /* Sharp tech edges */
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

/* Top Neon Scanner Line */
.prd-pro-media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2dd4bf, transparent);
  box-shadow: 0 0 15px #2dd4bf;
}

.prd-pro-media img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(45, 212, 191, 0.15));
  transition: all 0.4s ease;
}

.prd-pro-media:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 15px 30px rgba(45, 212, 191, 0.3)); /* Hologram pulse */
}

/* =====================================================
   INFO (DATA READOUT)
===================================================== */

.prd-pro-meta {
  font-family: monospace;
  font-size: 12px;
  color: #c084fc; /* Neon purple tag */
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
  text-shadow: 0 0 8px rgba(192, 132, 252, 0.4);
}

.prd-pro-info h1 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
  color: #fafafa;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.prd-pro-rating {
  font-size: 14px;
  color: #2dd4bf; /* Neon teal stars */
  letter-spacing: 4px;
  margin-bottom: 24px;
  text-shadow: 0 0 8px rgba(45, 212, 191, 0.5);
}

.prd-pro-rating span {
  font-family: monospace;
  color: #a1a1aa;
  margin-left: 8px;
  letter-spacing: 1px;
  text-shadow: none;
}

.prd-pro-price {
  font-family: var(--font-heading, sans-serif);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #c084fc; /* Purple value */
  text-shadow: 0 0 15px rgba(192, 132, 252, 0.3);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.prd-pro-price small {
  display: inline-block;
  font-family: monospace;
  font-size: 13px;
  color: #52525b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prd-pro-desc {
  font-family: monospace;
  font-size: 14px;
  line-height: 1.8;
  color: #a1a1aa;
  margin-bottom: 32px;
  border-left: 2px solid rgba(45, 212, 191, 0.3);
  padding-left: 16px;
}

/* =====================================================
   ACTIONS & TRUST
===================================================== */

.prd-pro-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.prd-pro-trust {
  display: flex;
  gap: 24px;
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a1a1aa;
  border-top: 1px dashed rgba(255, 255, 255, 0.1); /* Dashed data line */
  padding-top: 20px;
}

/* =====================================================
   TABS (INTERFACE NAVIGATION)
===================================================== */

.prd-pro-tabs {
  margin-top: 100px;
  position: relative;
  z-index: 2;
}

.prd-pro-tabs input {
  display: none;
}

.prd-pro-tab-head {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Tech separator */
  margin-bottom: 40px;
}

.prd-pro-tab-head label {
  padding-bottom: 16px;
  font-family: var(--font-heading, sans-serif);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  color: #52525b; /* Dimmed inactive tabs */
  transition: all 0.3s ease;
  position: relative;
}

/* Hover effect */
.prd-pro-tab-head label:hover {
  color: #a1a1aa;
}

/* Active Tab Target */
#tab1:checked ~ .prd-pro-tab-head label[for="tab1"],
#tab2:checked ~ .prd-pro-tab-head label[for="tab2"],
#tab3:checked ~ .prd-pro-tab-head label[for="tab3"],
#tab4:checked ~ .prd-pro-tab-head label[for="tab4"] {
  color: #2dd4bf; /* Active neon teal */
  text-shadow: 0 0 10px rgba(45, 212, 191, 0.4);
}

/* Active Bottom Glowing Line */
#tab1:checked ~ .prd-pro-tab-head label[for="tab1"]::after,
#tab2:checked ~ .prd-pro-tab-head label[for="tab2"]::after,
#tab3:checked ~ .prd-pro-tab-head label[for="tab3"]::after,
#tab4:checked ~ .prd-pro-tab-head label[for="tab4"]::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2dd4bf;
  box-shadow: 0 0 10px #2dd4bf;
}

.prd-pro-tab-body .prd-tab {
  display: none;
  animation: fadeInTerminal 0.4s ease forwards;
}

@keyframes fadeInTerminal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#tab1:checked ~ .prd-pro-tab-body .prd-tab:nth-child(1),
#tab2:checked ~ .prd-pro-tab-body .prd-tab:nth-child(2),
#tab3:checked ~ .prd-pro-tab-body .prd-tab:nth-child(3),
#tab4:checked ~ .prd-pro-tab-body .prd-tab:nth-child(4) {
  display: block;
}

/* =====================================================
   TABLE (RAW SPEC DATA)
===================================================== */

.prd-spec-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(24, 24, 27, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.prd-spec-table th,
.prd-spec-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
}

.prd-spec-table tr:last-child th,
.prd-spec-table tr:last-child td {
  border-bottom: none;
}

.prd-spec-table th {
  width: 260px;
  text-align: left;
  font-family: monospace;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c084fc; /* Purple spec labels */
  background: rgba(0, 0, 0, 0.2);
}

.prd-spec-table td {
  color: #e4e4e7;
  font-family: var(--font-body, sans-serif);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .prd-pro-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .prd-pro-media {
    padding: 30px;
  }

  .prd-pro-media img {
    height: 320px;
  }

  .prd-pro-tab-head {
    gap: 20px;
    overflow-x: auto; /* Allow scrolling for tabs on mobile */
    white-space: nowrap;
    padding-bottom: 2px;
  }
}

/* =====================================================
   CATEGORY LANDING HERO
===================================================== */

.cat-landing {
  width: 100%;
  height: 520px;
  position: relative;
  overflow: hidden;
  background: #000;
}

/* LINK */

.cat-landing-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* IMAGE */

.cat-landing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */

.cat-landing-content {
  max-width: 1200px;
  padding: 0 32px;
  margin: 0 auto;
  color: #ffffff;
}

.cat-landing-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 16px;
}

.cat-landing-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
}

.cat-landing-title span {
  color: var(--primary);
}

.cat-landing-text {
  font-size: 16.5px;
  line-height: 1.75;
  max-width: 520px;
  opacity: 0.95;
  margin-bottom: 26px;
}

.cat-landing-cta {
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .cat-landing {
    height: 460px;
  }

  .cat-landing-content {
    padding: 0 24px;
  }
}

@media (max-width: 600px) {
  .cat-landing {
    height: 380px;
  }

  .cat-landing-title {
    font-size: 30px;
  }

  .cat-landing-text {
    font-size: 15px;
  }
}

/* =====================================================
   CATEGORY GRID — HARDWARE REQUISITION DATABASE
===================================================== */

.category-modern {
  padding: 100px 0;
  background: #09090b; /* Deep terminal void */
  position: relative;
}

/* Schematic grid background overlay */
.category-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.category-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

/* =====================================================
   PRODUCT CARD — ASSET DATABANK
===================================================== */

.category-product-card {
  background: rgba(24, 24, 27, 0.6); /* Dark Glass */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 4px; /* Sharp tech edges */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 2px solid rgba(45, 212, 191, 0.2); /* Tech separator */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.w-100 {
  width: 100%;
}

/* Top Neon Scanner Line */
.category-product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2dd4bf, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.category-product-card:hover {
  transform: translateY(-6px);
  border-top-color: #2dd4bf;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.6),
    0 -5px 15px rgba(45, 212, 191, 0.15);
}

.category-product-card:hover::before {
  opacity: 1;
  box-shadow: 0 0 15px #2dd4bf;
}

.category-product-link {
  text-decoration: none;
  color: inherit;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* =====================================================
   IMAGE — HOLOGRAPHIC HOUSING
===================================================== */

.category-product-image {
  position: relative;
  background: rgba(0, 0, 0, 0.4); /* Deep inset */
  padding: 30px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.category-product-card:hover .category-product-image {
  background: rgba(45, 212, 191, 0.05);
}

.category-product-image img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.8));
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.category-product-card:hover .category-product-image img {
  transform: scale(1.1);
  filter: drop-shadow(0 10px 20px rgba(45, 212, 191, 0.3)); /* Hologram pulse */
}

/* =====================================================
   STOCK — SYSTEM INDICATOR
===================================================== */

.category-stock {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: monospace;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 8px;
  border-radius: 2px; /* Sharp tech tags */
  z-index: 2;
}

.category-stock.in {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981; /* Neon Green */
  border: 1px solid #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.category-stock.out {
  background: rgba(244, 63, 94, 0.1);
  color: #f43f5e; /* Cyberpunk Red */
  border: 1px solid #f43f5e;
  box-shadow: 0 0 10px rgba(244, 63, 94, 0.2);
}

/* =====================================================
   INFO — DATA READOUT
===================================================== */

.category-product-info {
  padding: 24px 22px 10px;
  background-color: transparent;
  flex-grow: 1;
}

.category-product-info h3 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  line-height: 1.35;
  color: #fafafa;
  transition: color 0.3s ease;
}

.category-product-card:hover .category-product-info h3 {
  color: #2dd4bf;
  text-shadow: 0 0 8px rgba(45, 212, 191, 0.4);
}

.category-product-info p {
  font-family: monospace;
  font-size: 13px;
  line-height: 1.6;
  color: #a1a1aa;
  margin-bottom: 16px;
}

.category-price {
  font-family: monospace;
  font-size: 18px;
  font-weight: 800;
  color: #c084fc; /* Neon purple */
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.4);
}

/* =====================================================
   ACTION — TERMINAL EXECUTE
===================================================== */

.category-cart-form,
.btn-disabled {
  margin: 16px 22px 22px;
}

/* Add generic button style inside the form just in case */
.category-cart-form button {
  width: 100%;
  background: transparent;
  color: #2dd4bf;
  border: 1px solid #2dd4bf;
  padding: 12px;
  border-radius: 2px;
  font-family: var(--font-heading, sans-serif);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-cart-form button:hover {
  background: #2dd4bf;
  color: #000;
  box-shadow: 0 0 15px rgba(45, 212, 191, 0.5);
  transform: translateY(-2px);
}

.btn-disabled {
  width: calc(100% - 44px);
  padding: 12px;
  border-radius: 2px; /* Sharp corners */
  border: 1px solid #27272a;
  background: rgba(255, 255, 255, 0.02);
  color: #52525b;
  font-family: var(--font-heading, sans-serif);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: not-allowed;
  text-align: center;
}

/* =====================================================
   EMPTY STATE — DATABASE QUERY FAILED
===================================================== */

.category-empty-modern {
  background: rgba(24, 24, 27, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 2px solid #f43f5e; /* Red warning line */
  text-align: center;
  padding: 100px 20px;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.1);
  position: relative;
  z-index: 2;
}

.category-empty-modern h3 {
  font-family: var(--font-heading, "Trebuchet MS", sans-serif);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #f43f5e;
  text-shadow: 0 0 10px rgba(244, 63, 94, 0.4);
}

.category-empty-modern p {
  font-family: monospace;
  font-size: 14px;
  color: #a1a1aa;
  margin-bottom: 20px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1200px) {
  .category-grid-modern {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .category-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .category-modern {
    padding: 80px 15px;
  }

  .category-grid-modern {
    grid-template-columns: 1fr;
  }

  .category-product-image img {
    height: 220px; /* Make image larger for single column */
  }
}
