/* ==========================================================================
   JARJ INFOTECH SOLUTIONS — MASTER DESIGN SYSTEM & COMPLETE STYLESHEET
   Deep Pitch Black OLED Theme (#000000) with Cyber Teal (#00f0b5), Azure (#38bdf8), and Mint (#4ade80)
   Typography: Space Grotesk (Headings), Inter (Body), IBM Plex Mono (Data & Badges)
   ========================================================================== */

/* ---------- CSS RESET & GLOBAL SETUP ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background-color: #000000;
  max-width: 100vw;
  overflow-x: clip;
}

body {
  background-color: #000000;
  color: #ffffff;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden !important;
}

/* Modern Minimalist Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #04070b;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  border: 2px solid #04070b;
  transition: background 0.2s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--teal);
}

/* Selection */
::selection {
  background: rgba(0, 240, 181, 0.3);
  color: #ffffff;
}

/* ---------- DESIGN TOKENS (:root) ---------- */
:root {
  --navy-950: #000000;  /* Pitch Black */
  --navy-900: #05080d;  /* Ultra-dark slate */
  --navy-800: #0a0e14;  /* Premium dark card surface */
  --navy-700: #111722;  /* Elevated element / button surface */
  --navy-600: #1b2432;  /* Subtle highlight surface */
  --line: rgba(255, 255, 255, 0.12); /* Clean crisp border */

  --teal: #00f0b5;
  --azure: #38bdf8;
  --mint: #4ade80;
  --amber: #fbbf24;

  --paper: #ffffff;
  --ink: #000000;
  --fog: #cbd5e1;       /* High-contrast readable silver */
  --fog-dim: #94a3b8;   /* Muted label silver */

  --grad-signal: linear-gradient(120deg, #00f0b5, #38bdf8 55%, #4ade80);
  --grad-panel: linear-gradient(180deg, rgba(0, 240, 181, 0.08), rgba(56, 189, 248, 0));

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1240px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-s: 0.3s;
  --dur-m: 0.6s;
}

/* ---------- TYPOGRAPHY & BASE ELEMENTS ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.45em;
  letter-spacing: -0.02em;
  color: #ffffff;
}
h1 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.45rem, 2.4vw, 2.1rem); }
h3 { font-size: 1.12rem; font-weight: 600; }
h4 { font-size: 0.95rem; font-weight: 600; }

p {
  margin: 0 0 1em;
  color: var(--fog);
  font-size: 0.94rem;
  line-height: 1.65;
}

.lead {
  font-size: clamp(0.95rem, 1.1vw, 1.06rem);
  color: var(--fog);
  line-height: 1.6;
  max-width: 54ch;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-s) var(--ease);
}

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

svg {
  max-width: 100%;
}

.mono {
  font-family: "IBM Plex Mono", monospace;
}

.lead {
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  color: var(--fog);
  line-height: 1.6;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- LAYOUT UTILITIES ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

section {
  position: relative;
}

.section-pad {
  padding: clamp(64px, 8vw, 110px) 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.section-head p {
  max-width: 52ch;
  margin: 0;
  font-size: 1rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}

.crumb {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  color: var(--fog-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.crumb a {
  color: var(--teal);
}
.crumb a:hover {
  text-decoration: underline;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.1em;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  text-decoration: none;
  transition: all var(--dur-s) var(--ease);
}
.btn-primary {
  background: var(--grad-signal);
  color: #000000;
  font-weight: 700;
  box-shadow: 0 8px 24px -6px rgba(0, 240, 181, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -6px rgba(0, 240, 181, 0.75);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: #ffffff;
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0, 240, 181, 0.08);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 0.6em 1.2em;
  font-size: 0.82rem;
}
.btn-wa {
  background: #1fae63;
  color: #ffffff;
  box-shadow: 0 8px 22px -8px rgba(31, 174, 99, 0.7);
}
.btn-wa:hover {
  transform: translateY(-2px);
  background: #199554;
}

/* Tags */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--fog);
  font-size: 0.74rem;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ---------- SITE HEADER & NAVIGATION (UNIFORM FIXED HEIGHT) ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(3, 6, 10, 0.88);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--dur-s) var(--ease);
}
.site-header .wrap {
  width: 100%;
  max-width: 1360px;
  padding: 0 clamp(16px, 3vw, 40px);
}
.site-header.is-scrolled {
  height: 56px;
  background: rgba(2, 4, 8, 0.98);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.85), 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

/* Logo flush left corner */
.brand {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  flex-shrink: 0;
}
.brand-logo {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 2px 8px rgba(0, 240, 181, 0.3));
  flex-shrink: 0;
  transition: transform var(--dur-s) var(--ease), filter var(--dur-s) var(--ease);
}
.brand:hover .brand-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 14px rgba(0, 240, 181, 0.55));
}
.brand small {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  color: var(--fog-dim);
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links > li {
  position: relative;
}
.nav-links a.top-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fog);
  border-radius: 8px;
  transition: color var(--dur-s) var(--ease), background var(--dur-s) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a.top-link:hover, .nav-links li.active > a.top-link {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.nav-links li.active > a.top-link {
  color: var(--teal);
  font-weight: 600;
}

/* Hide mobile-specific action buttons on desktop */
.mobile-menu-actions {
  display: none !important;
}

.caret {
  width: 9px;
  height: 9px;
  opacity: 0.75;
  transition: transform var(--dur-s) var(--ease);
  flex-shrink: 0;
}
.has-drop:hover .caret {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 240px;
  background: rgba(8, 12, 18, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--dur-s) var(--ease);
  box-shadow: 0 20px 45px -8px rgba(0, 0, 0, 0.95), 0 0 25px rgba(0, 240, 181, 0.08);
  z-index: 1050;
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.has-drop:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 500;
  color: #cbd5e1;
  transition: all var(--dur-s) var(--ease);
  text-decoration: none;
}
.dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--teal);
  transform: translateX(4px);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Burger button hidden on desktop */
.burger {
  display: none !important;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 14, 22, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1060;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: all 0.25s var(--ease);
}
.burger:hover, .burger:focus-visible {
  border-color: var(--teal);
  box-shadow: 0 0 16px rgba(0, 240, 181, 0.35);
  background: rgba(14, 24, 36, 0.95);
}
.burger span, .burger span::before, .burger span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  position: relative;
  transition: all 0.25s var(--ease);
  border-radius: 2px;
}
.burger span::before { position: absolute; top: -7px; left: 0; }
.burger span::after { position: absolute; top: 7px; left: 0; }

body.nav-open .burger {
  border-color: var(--teal);
  background: rgba(0, 240, 181, 0.15);
  box-shadow: 0 0 18px rgba(0, 240, 181, 0.4);
}
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { transform: rotate(45deg); top: 0; background: var(--teal); }
body.nav-open .burger span::after { transform: rotate(-45deg); top: 0; background: var(--teal); }

/* MOBILE & TABLET RESPONSIVE BREAKPOINT (< 1040px) */
@media (max-width: 1040px) {
  .brand {
    font-size: 0.95rem;
  }
  .brand small {
    display: none;
  }
  .burger {
    display: flex !important;
  }
  .nav-cta .btn-ghost {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 12px;
    right: 12px;
    bottom: auto;
    flex-direction: column;
    align-items: stretch;
    background: rgba(4, 7, 12, 0.98);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 16px;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95), 0 0 30px rgba(0, 240, 181, 0.12);
    transition: transform 0.35s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
    z-index: 1040;
  }
  body.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links > li {
    width: 100%;
    margin-bottom: 2px;
  }
  .nav-links a.top-link {
    padding: 13px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
  }
  .nav-links a.top-link:hover, .has-drop.open > a.top-link {
    background: rgba(0, 240, 181, 0.08);
    color: var(--teal);
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin: 6px 0 10px 10px;
    padding: 8px 12px;
    box-shadow: none;
    border-left: 2px solid var(--teal);
    border-top: none;
    border-right: none;
    border-bottom: none;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 12px 12px 0;
  }
  .has-drop.open .dropdown {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .dropdown a {
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--fog);
    border-radius: 8px;
  }
  .dropdown a:hover, .dropdown a.active {
    background: rgba(0, 240, 181, 0.1);
    color: var(--teal);
    transform: translateX(4px);
  }

  /* Show mobile-specific action buttons inside drawer ONLY on mobile */
  .mobile-menu-actions {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .mobile-menu-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85em 1.2em;
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .nav-cta .btn-primary {
    display: none;
  }
  .brand-logo {
    height: 30px;
  }
  .brand {
    font-size: 0.88rem;
  }
}

/* ---------- MASTER MENU TABLE DESIGN SYSTEM ---------- */
.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(5, 8, 14, 0.96);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.table-wrap::-webkit-scrollbar {
  height: 6px;
}
.table-wrap::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.4);
}
.table-wrap::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 3px;
}

table, .menu-table, .jabra-comparison-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
  color: var(--fog);
}
table th, .menu-table th, .jabra-comparison-table th {
  padding: 16px 20px;
  background: rgba(10, 16, 26, 0.95);
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(0, 240, 181, 0.4);
  white-space: nowrap;
}
table td, .menu-table td, .jabra-comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--dur-s) var(--ease);
}
table tr:last-child td, .menu-table tr:last-child td, .jabra-comparison-table tr:last-child td {
  border-bottom: none;
}
table tr:hover td, .menu-table tr:hover td, .jabra-comparison-table tr:hover td {
  background: rgba(0, 240, 181, 0.05);
  color: #ffffff;
}

@media (max-width: 640px) {
  table, .menu-table, .jabra-comparison-table {
    min-width: 480px;
  }
  table th, table td, .menu-table th, .menu-table td, .jabra-comparison-table th, .jabra-comparison-table td {
    padding: 12px 14px;
    font-size: 0.84rem;
  }
}

/* ---------- FLOATING WHATSAPP BUTTON & PULSE ANIMATION ---------- */
.wa-float, .floating-wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.wa-float:hover, .floating-wa-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.65);
  background: #20bd5a;
}
.wa-float svg, .floating-wa-btn svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}
.wa-float span:not(.wa-ring), .floating-wa-btn span:not(.floating-wa-pulse) {
  display: none !important;
}
.wa-ring, .floating-wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPulseRing 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}
@keyframes waPulseRing {
  0% { transform: scale(0.95); opacity: 0.9; }
  50% { transform: scale(1.35); opacity: 0.35; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* ---------- AUTHORISED PARTNERS HERO BADGE CARDS ---------- */
.hero-partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-partner-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.partner-badges-stage {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 640px) {
  .partner-badges-stage {
    flex-direction: column;
    gap: 16px;
  }
}

.partner-badge-card {
  position: relative;
  flex: 1;
  max-width: 240px;
  width: 100%;
  background: rgba(8, 14, 22, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 240, 181, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

/* Glowing rotating outline animation around partner badges */
.partner-badge-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(0, 240, 181, 0.8), rgba(56, 189, 248, 0.3), rgba(239, 179, 0, 0.8));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
  transition: opacity 0.4s ease;
  animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.partner-badge-card:hover {
  transform: translateY(-8px) scale(1.04);
  border-color: var(--teal);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(0, 240, 181, 0.4);
}
.partner-badge-card:hover::before {
  opacity: 1;
}

.partner-badge-img {
  height: 64px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 14px rgba(255, 255, 255, 0.2));
  transition: transform 0.3s var(--ease);
}
.partner-badge-card:hover .partner-badge-img {
  transform: scale(1.08);
}

.partner-badge-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 240, 181, 0.08);
  border: 1px solid rgba(0, 240, 181, 0.25);
  padding: 5px 10px;
  border-radius: 6px;
  margin-top: 8px;
}

/* ---------- HERO SECTION ---------- */
.hero {
  padding: clamp(120px, 14vw, 170px) 0 clamp(64px, 8vw, 90px);
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 65% 55% at 50% 20%, rgba(0, 240, 181, 0.06) 0%, rgba(0, 0, 0, 0) 70%), #000000;
}
.page-hero {
  padding: clamp(110px, 12vw, 150px) 0 clamp(48px, 6vw, 70px);
  position: relative;
  background: radial-gradient(ellipse 65% 55% at 50% 20%, rgba(0, 240, 181, 0.05) 0%, rgba(0, 0, 0, 0) 70%), #000000;
  border-bottom: 1px solid var(--line);
}

.circuit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  pointer-events: none;
}
.circuit-svg circle {
  fill: var(--teal);
  opacity: 0.95;
  filter: drop-shadow(0 0 6px rgba(0, 240, 181, 0.8));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
}

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

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stat-row > div b {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-row > div span {
  font-size: 0.76rem;
  color: var(--fog-dim);
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* 3D Tilt Card (Hero Right with Ambient Cyber Glow) */
.tilt-stage {
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tilt-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #080c14;
  border: 1px solid rgba(0, 240, 181, 0.35);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.95), 0 0 45px rgba(0, 240, 181, 0.22), 0 0 20px rgba(56, 189, 248, 0.18);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
}
.tilt-card:hover {
  border-color: var(--teal);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.98), 0 0 60px rgba(0, 240, 181, 0.38), 0 0 25px rgba(56, 189, 248, 0.25);
}
.tilt-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) contrast(1.05);
}
.tilt-card .glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 30px rgba(0, 240, 181, 0.25), inset 0 0 15px rgba(56, 189, 248, 0.2);
  pointer-events: none;
  z-index: 2;
}
.tilt-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(6, 10, 16, 0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(0, 240, 181, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 240, 181, 0.15);
  padding: 10px 16px;
  border-radius: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal), 0 0 4px #ffffff;
  flex-shrink: 0;
  animation: pulse-glow 2s infinite ease-in-out;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 10px var(--teal), 0 0 4px #ffffff; }
  50% { transform: scale(1.25); opacity: 0.85; box-shadow: 0 0 16px var(--teal), 0 0 8px var(--teal); }
}

/* ---------- GRIDS & SERVICE CARDS ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: #080c12;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-s) var(--ease), border-color var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease), background var(--dur-s) var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 181, 0.4);
  background: #0d121a;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 25px rgba(0, 240, 181, 0.08);
}
a.card-as-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
a.card-as-link:hover {
  text-decoration: none;
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: rgba(0, 240, 181, 0.08);
  border: 1px solid rgba(0, 240, 181, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
}
.card h3 {
  color: #ffffff;
  margin-bottom: 8px;
}
.card p {
  font-size: 0.92rem;
  color: var(--fog);
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--teal);
}
.card-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal);
  transition: transform var(--dur-s) var(--ease);
  flex-shrink: 0;
}
.card:hover .card-link svg {
  transform: translateX(5px);
}

/* Clickable contact card */
a.card.contact-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}
a.card.contact-card-link:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 181, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 240, 181, 0.12);
  background: #0e141e;
}
a.card.contact-card-link:hover .card-link {
  color: #ffffff;
}

/* ---------- PARTNER BADGES & CARDS ---------- */
.partner-band {
  background: linear-gradient(180deg, rgba(0, 240, 181, 0.03) 0%, rgba(6, 10, 16, 0.6) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partner-card {
  background: #080c12;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-s) var(--ease), border-color var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease);
}
.partner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 181, 0.4);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.9), 0 0 25px rgba(0, 240, 181, 0.08);
}
.pmark {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  max-width: 52px !important;
  border-radius: 12px;
  background: rgba(0, 240, 181, 0.08);
  border: 1px solid rgba(0, 240, 181, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pmark svg {
  width: 26px !important;
  height: 26px !important;
  max-width: 26px !important;
  max-height: 26px !important;
  stroke: var(--teal) !important;
  fill: none !important;
  stroke-width: 1.8 !important;
  display: block;
}
.authorised-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(0, 240, 181, 0.1);
  border: 1px solid rgba(0, 240, 181, 0.28);
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 600;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.authorised-pill svg {
  width: 13px !important;
  height: 13px !important;
  max-width: 13px !important;
  max-height: 13px !important;
  stroke: var(--teal) !important;
  display: inline-block;
}

/* ---------- LAPTOP RENTAL FILTER UI ---------- */
.filter-shell {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .filter-shell { grid-template-columns: 1fr; gap: 24px; }
}
.filter-panel {
  background: #080c12;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: sticky;
  top: 84px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.filter-group {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.filter-group:first-child { padding-top: 0; }
.filter-group:last-child { border-bottom: none; padding-bottom: 0; }
.filter-group h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fog);
  margin-bottom: 10px;
}

.chip-set {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip-set input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.chip-set label {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--fog);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--dur-s) var(--ease);
  user-select: none;
}
.chip-set label:hover {
  border-color: rgba(0, 240, 181, 0.4);
  color: #ffffff;
}
.chip-set input:checked + label {
  background: rgba(0, 240, 181, 0.12);
  border-color: var(--teal);
  color: var(--teal);
  font-weight: 600;
}

.results-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  gap: 14px;
  flex-wrap: wrap;
}
.results-count {
  font-size: 0.88rem;
  color: var(--fog);
  font-family: "IBM Plex Mono", monospace;
}

.rental-card {
  background: #080c12;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: border-color var(--dur-s) var(--ease), transform var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease);
}
.rental-card:hover {
  border-color: rgba(0, 240, 181, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
  background: #0d121a;
}
.rental-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}
.rental-top h3 {
  font-size: 1.08rem;
  margin-bottom: 2px;
  color: #ffffff;
}
.rental-brand {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.rental-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0;
}

/* ---------- QUOTE & CONTACT FORM PANEL ---------- */
.quote-panel {
  background: #080c12;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: visible; /* Allows select dropdowns to float smoothly */
  z-index: 10;
}
.quote-panel::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--grad-signal);
  filter: blur(100px);
  opacity: 0.08;
  top: -60px;
  right: -40px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.field.full {
  grid-column: 1 / -1;
  position: relative;
  z-index: 20;
}
.field:has(.custom-select-wrapper.is-open) {
  z-index: 9999 !important;
  position: relative !important;
}

.field label {
  font-size: 0.78rem;
  color: var(--fog);
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.04em;
}

.field input, .field textarea {
  background: #05080d;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--dur-s), box-shadow var(--dur-s), background-color var(--dur-s);
}
.field input:focus, .field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 240, 181, 0.18);
  background-color: #080c14;
}

.form-note {
  font-size: 0.8rem;
  color: var(--fog-dim);
  margin-top: 14px;
}
.form-success {
  display: none;
  background: rgba(0, 240, 181, 0.12);
  border: 1px solid var(--teal);
  border-radius: 10px;
  padding: 14px;
  margin-top: 14px;
  color: #ffffff;
  font-weight: 500;
}
.form-success.show {
  display: block;
}

/* ---------- CUSTOM ACCESSIBLE SELECT COMPONENT ---------- */
.custom-select-wrapper {
  position: relative;
  width: 100%;
  user-select: none;
}
.custom-select-wrapper.is-open {
  z-index: 9999 !important;
  position: relative !important;
}
.custom-select-wrapper select {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
}

.custom-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #05080d;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: all 0.25s var(--ease);
}
.custom-select-trigger:hover {
  border-color: rgba(0, 240, 181, 0.45);
  background: #080c14;
}
.custom-select-wrapper.is-open .custom-select-trigger {
  border-color: var(--teal);
  background: #080c14;
  box-shadow: 0 0 0 3px rgba(0, 240, 181, 0.18);
}
.custom-select-trigger .selected-text {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ffffff;
}
.custom-select-trigger .select-caret {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.custom-select-wrapper.is-open .select-caret {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 99999 !important;
  background: #06090e !important; /* 100% Solid Opaque Black */
  border: 1px solid rgba(0, 240, 181, 0.45) !important;
  border-radius: 12px;
  padding: 6px;
  max-height: 280px;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 1), 0 0 35px rgba(0, 240, 181, 0.15) !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s ease;
}
.custom-select-wrapper.is-open .custom-select-options {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
}
.custom-select-options::-webkit-scrollbar {
  width: 5px;
}
.custom-select-options::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.custom-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s ease;
}
.custom-option:hover, .custom-option.is-highlighted {
  background: rgba(0, 240, 181, 0.12) !important;
  color: #ffffff !important;
  transform: translateX(4px);
}
.custom-option.is-selected {
  background: rgba(0, 240, 181, 0.18) !important;
  color: var(--teal) !important;
  font-weight: 600;
}
.custom-option .check-icon {
  width: 15px;
  height: 15px;
  stroke: var(--teal);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.custom-option.is-selected .check-icon {
  opacity: 1;
}

/* ---------- JABRA & APPLE PRODUCT SHOWCASE STYLES ---------- */
.jabra-badge, .apple-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", monospace;
}
.jabra-badge {
  background: linear-gradient(135deg, rgba(239, 179, 0, 0.18), rgba(239, 179, 0, 0.07));
  border: 1px solid rgba(239, 179, 0, 0.35);
  color: #efb300;
}
.jabra-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #efb300;
  box-shadow: 0 0 8px #efb300;
}
.apple-badge {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.apple-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}
.apple-notice {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.apple-notice p { margin: 0; font-size: 0.9rem; color: var(--fog); line-height: 1.6; }
.apple-notice strong { color: #ffffff; }

.why-jabra-grid, .apple-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.why-card, .apple-why-card {
  background: #080c12;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--dur-s) var(--ease), transform var(--dur-s) var(--ease);
}
.why-card:hover, .apple-why-card:hover {
  border-color: rgba(0, 240, 181, 0.3);
  transform: translateY(-3px);
}
.why-card .icon, .apple-why-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.why-card h4, .apple-why-card h4 { font-size: 1rem; color: #ffffff; margin: 0 0 6px; }
.why-card p, .apple-why-card p { font-size: 0.84rem; color: var(--fog); line-height: 1.55; margin: 0; }

.jabra-product-grid, .apple-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.jabra-card, .apple-card {
  background: #080c12;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.jabra-card:hover, .apple-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 240, 181, 0.1);
  border-color: rgba(0, 240, 181, 0.35);
}
.jabra-card-visual {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.8rem;
  overflow: hidden;
  background: linear-gradient(135deg, #121212 0%, #1e1a0e 100%);
  border-bottom: 1px solid rgba(239, 179, 0, 0.15);
}
.jabra-series-label, .apple-cat-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", monospace;
}
.jabra-series-label { background: rgba(239, 179, 0, 0.92); color: #000000; }
.apple-cat-label { background: rgba(0, 0, 0, 0.8); color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.2); }

.jabra-card-body, .apple-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.jabra-model-id, .apple-model-id {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.jabra-model-id { color: #efb300; }
.apple-model-id { color: rgba(255, 255, 255, 0.5); }
.jabra-card-body h3, .apple-card-body h3 { font-size: 1.1rem; color: #ffffff; margin: 0 0 8px; line-height: 1.3; }
.jabra-card-body p, .apple-card-body p { font-size: 0.88rem; color: var(--fog); line-height: 1.55; margin: 0 0 16px; flex: 1; }

.jabra-specs, .apple-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.jabra-specs .tag { font-size: 0.68rem; background: rgba(239, 179, 0, 0.1); color: #efb300; border-color: rgba(239, 179, 0, 0.25); }
.apple-specs .tag { font-size: 0.68rem; background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.7); border-color: rgba(255, 255, 255, 0.12); }

.jabra-cert { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.jabra-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  font-family: "IBM Plex Mono", monospace;
  background: rgba(0, 120, 212, 0.12);
  border: 1px solid rgba(0, 120, 212, 0.3);
  color: #60a5fa;
}
.jabra-cert-zoom {
  background: rgba(37, 99, 235, 0.12) !important;
  border-color: rgba(37, 99, 235, 0.3) !important;
  color: #93c5fd !important;
}
.jabra-card-cta, .apple-card-cta { display: flex; gap: 10px; margin-top: auto; }
.jabra-card-cta .btn, .apple-card-cta .btn { flex: 1; text-align: center; font-size: 0.82rem; }

.jabra-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}
.jabra-comparison-table th {
  background: rgba(239, 179, 0, 0.12);
  color: #efb300;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(239, 179, 0, 0.2);
}
.jabra-comparison-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--fog);
  vertical-align: middle;
}
.jabra-comparison-table td:first-child { color: #ffffff; font-weight: 500; }
.jabra-comparison-table tr:last-child td { border-bottom: none; }
.jabra-comparison-table tr:hover td { background: rgba(239, 179, 0, 0.04); }

.jabra-cta-banner, .apple-cta-banner {
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
}
.jabra-cta-banner {
  background: linear-gradient(135deg, rgba(239, 179, 0, 0.1) 0%, rgba(0, 240, 181, 0.08) 100%);
  border: 1px solid rgba(239, 179, 0, 0.25);
}
.apple-cta-banner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 240, 181, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.sh, .ash { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: #ffffff; margin: 0 0 8px; }
.sh span { color: #efb300; }

/* ---------- FOOTER & FLOATING WHATSAPP ---------- */
.site-footer {
  background: #020407;
  border-top: 1px solid var(--line);
  padding: 64px 0 28px;
  position: relative;
  z-index: 10;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .foot-grid { grid-template-columns: 1fr; }
}
.foot-grid h4 {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: "Space Grotesk", sans-serif;
}
.foot-grid ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-grid ul li a {
  color: var(--fog);
  font-size: 0.88rem;
  transition: color var(--dur-s);
}
.foot-grid ul li a:hover {
  color: var(--teal);
}

.social-row {
  display: flex;
  gap: 10px;
}
.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fog);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--dur-s) var(--ease);
}
.social-row a:hover {
  background: rgba(0, 240, 181, 0.15);
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: var(--fog-dim);
  flex-wrap: wrap;
  gap: 12px;
}

/* WhatsApp Floating Button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-s) var(--ease), box-shadow var(--dur-s) var(--ease);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.65);
}
.wa-float svg {
  width: 32px;
  height: 32px;
}
.wa-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.55;
  animation: waring 2.2s infinite;
}
@keyframes waring {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- SCROLL REVEAL (Safe with fallback) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}


/* ---------- INFINITE BRAND MARQUEE TICKER (Neat with Green Dots) ---------- */
.marquee-strip {
  overflow: hidden;
  background: #04060a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  position: relative;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: marquee-anim 28s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cbd5e1;
  white-space: nowrap;
  transition: all 0.25s ease;
  cursor: default;
}
.marquee-item:hover {
  background: rgba(0, 240, 181, 0.1);
  border-color: rgba(0, 240, 181, 0.35);
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 240, 181, 0.15);
}
.marquee-item .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  flex-shrink: 0;
}
@keyframes marquee-anim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ---------- LIST CHECKS & BULLETS ---------- */
.list-check {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0;
  list-style: none;
  padding: 0;
}
.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--fog);
  font-size: 0.95rem;
  line-height: 1.55;
}
.list-check li svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---------- STEP WORKFLOW CARDS ---------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.step-row {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: #080c12;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  transition: transform var(--dur-s) var(--ease), border-color var(--dur-s) var(--ease);
}
.step-row:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 240, 181, 0.4);
}
.step-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
  line-height: 1;
}

/* ---------- TABLES & SORT INPUTS ---------- */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin: 24px 0;
}
.sort-select {
  background: #080c12;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 14px;
  color: #ffffff;
  font-size: 0.85rem;
  font-family: "IBM Plex Mono", monospace;
  outline: none;
  cursor: pointer;
  transition: border-color var(--dur-s);
}
.sort-select:hover {
  border-color: rgba(0, 240, 181, 0.4);
}
.filter-reset {
  width: 100%;
  margin-top: 14px;
}

/* ---------- STAGGER ANIMATIONS ---------- */
.stagger > .reveal:nth-child(1) { transition-delay: 0.04s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.10s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.22s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.28s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.34s; }


/* ---------- HERO & GENERAL UTILITIES ---------- */
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-stats > div b {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero-stats > div span {
  display: block;
  font-size: 0.76rem;
  color: var(--fog-dim);
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.icon-inline {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: -2px;
  margin-right: 4px;
  flex-shrink: 0;
}
.rental-price {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
}
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.apple-hero, .jabra-hero {
  padding: clamp(100px, 12vw, 140px) 0 clamp(48px, 6vw, 70px);
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 70%), #000000;
  border-bottom: 1px solid var(--line);
}
.apple-card-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: #11151c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


/* ---------- FULLY CLICKABLE CARD LINKS ---------- */
a.card.card-as-link, a.partner-card.card-as-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}
a.card.card-as-link:hover, a.partner-card.card-as-link:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 181, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 240, 181, 0.12);
  background: #0e141e;
}
a.card.card-as-link:hover .card-link {
  color: #ffffff;
}
a.card.card-as-link:hover .card-link svg {
  transform: translateX(6px);
}
a.partner-card.card-as-link:hover .btn-ghost {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0, 240, 181, 0.1);
}

/* ---------- HERO DELIVERY BADGE ---------- */
.hero-delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(0, 240, 181, 0.08);
  border: 1px solid rgba(0, 240, 181, 0.3);
  box-shadow: 0 6px 20px rgba(0, 240, 181, 0.1);
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hero-delivery-badge svg {
  flex-shrink: 0;
}


/* ---------- PREMIUM TABLE STYLING ---------- */
.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(0, 240, 181, 0.25);
  background: #080c12;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 240, 181, 0.08);
}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  text-align: left;
}
.table-wrap th {
  background: rgba(0, 240, 181, 0.1);
  color: var(--teal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 240, 181, 0.2);
}
.table-wrap td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--fog);
  font-weight: 500;
  vertical-align: middle;
}
.table-wrap td:first-child {
  color: #ffffff;
  font-weight: 600;
}
.table-wrap tr:last-child td {
  border-bottom: none;
}
.table-wrap tr:hover td {
  background: rgba(0, 240, 181, 0.05);
}


/* ---------- RESPONSIVE PRODUCT CARD IMAGES ---------- */
.product-card-visual {
  width: 100%;
  height: 210px;
  position: relative;
  overflow: hidden;
  background: #080c14;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the product card fully */
  object-position: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.card:hover .product-card-img,
.apple-card:hover .product-card-img,
.jabra-card:hover .product-card-img,
.rental-card:hover .product-card-img {
  transform: scale(1.07);
}

/* ---------- REFURBISHED PROMO BANNER ---------- */
.refurbished-promo-banner {
  background: linear-gradient(135deg, rgba(0, 240, 181, 0.12) 0%, rgba(56, 189, 248, 0.08) 50%, rgba(6, 10, 16, 0.95) 100%);
  border: 1px solid rgba(0, 240, 181, 0.4);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  margin: 32px 0 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 240, 181, 0.15);
}
.promo-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 204, 0, 0.18);
  border: 1px solid rgba(255, 204, 0, 0.4);
  color: #ffcc00;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.refurbished-promo-banner h2 {
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  color: #ffffff;
  margin-bottom: 12px;
}
.refurbished-promo-banner p {
  color: var(--fog);
  max-width: 68ch;
  font-size: 0.98rem;
  line-height: 1.6;
}
.promo-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin: 24px 0 28px;
}
.pf-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 12px;
}
.pf-item span {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.pf-item strong {
  color: #ffffff;
  font-size: 0.9rem;
}
.pf-desc {
  font-size: 0.78rem;
  color: var(--fog-dim);
  margin-top: 2px;
}
.promo-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}


/* ---------- PRODUCT THUMBNAIL IMAGES (REPLACING ICONS) ---------- */
.partner-thumb, .card-thumb {
  width: 56px;
  height: 56px;
  min-width: 56px;
  max-width: 56px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(0, 240, 181, 0.3);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
  background: #080c14;
}
.partner-card:hover .partner-thumb, .card:hover .card-thumb {
  transform: scale(1.08);
  border-color: var(--teal);
}


/* ---------- STRICT APPLE CARD PRODUCT IMAGE FIX ---------- */
.apple-card .product-card-visual {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  background: #06090e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.apple-card .product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
}
.apple-card:hover .product-card-img {
  transform: scale(1.06);
}


/* ---------- FIXED BOTTOM REFURBISHED BANNER ---------- */
.fixed-refurb-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(4, 8, 14, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(0, 240, 181, 0.4);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.9), 0 0 25px rgba(0, 240, 181, 0.18);
  padding: 10px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.fixed-refurb-banner.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.banner-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.banner-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 280px;
}
.fire-badge {
  background: rgba(255, 204, 0, 0.18);
  border: 1px solid rgba(255, 204, 0, 0.4);
  color: #ffcc00;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.banner-text p {
  margin: 0;
  color: var(--fog);
  font-size: 0.88rem;
  line-height: 1.35;
}
.banner-text p strong {
  color: #ffffff;
}
.banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.banner-close {
  background: transparent;
  border: none;
  color: var(--fog);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s ease;
}
.banner-close:hover {
  color: #ffffff;
}
body.has-fixed-banner {
  padding-bottom: 74px;
}
@media (max-width: 768px) {
  .fixed-refurb-banner {
    padding: 10px 0;
  }
  .banner-flex {
    gap: 10px;
  }
  .banner-text p {
    font-size: 0.8rem;
  }
  body.has-fixed-banner {
    padding-bottom: 110px;
  }
}

/* ---------- VIDEO SCROLL SCROLLYTELLING ---------- */
.video-scroll {
  position: relative;
  height: 380vh;
}
.video-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-scroll video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.25);
  pointer-events: none;
  z-index: 0;
}
.video-scroll-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(3, 5, 8, 0.45) 0%, rgba(3, 5, 8, 0.88) 100%);
  z-index: 1;
  pointer-events: none;
}
.vs-canvas {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.vs-step {
  position: absolute;
  top: 50%;
  max-width: 540px;
  width: clamp(320px, 42vw, 540px);
  padding: clamp(26px, 3.5vw, 40px);
  border-radius: 20px;
  background: rgba(6, 10, 16, 0.88);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.92), 0 0 35px rgba(0, 240, 181, 0.08);
  will-change: opacity, transform;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-50%);
  /* NO transition on opacity/transform — JS animates these every rAF frame */
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.vs-step:hover {
  border-color: rgba(0, 240, 181, 0.45);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95), 0 0 45px rgba(0, 240, 181, 0.18);
}
.vs-step.align-right {
  right: clamp(20px, 10vw, 130px);
  transform: translateY(-50%);
}
.vs-step.align-left {
  left: clamp(20px, 10vw, 130px);
  transform: translateY(-50%);
}

@media (max-width: 860px) {
  .video-scroll { height: 320vh; }
  .vs-step.align-right, .vs-step.align-left {
    left: 50%;
    right: auto;
    width: calc(100% - 36px);
    max-width: 440px;
    padding: 22px 24px;
    transform: translate(-50%, -50%);
  }
}

.vs-index {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--teal);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  background: rgba(0, 240, 181, 0.1);
  border: 1px solid rgba(0, 240, 181, 0.22);
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.vs-step h2 {
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  line-height: 1.24;
  margin: 0 0 12px;
  color: #ffffff;
  font-weight: 700;
}
.vs-step p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
  margin: 0;
}

.vs-progress-bar {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 10, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
}
.vs-pill {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
  font-weight: 600;
  font-family: "IBM Plex Mono", monospace;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.04em;
}
.vs-pill:hover { color: #ffffff; }
.vs-pill.active {
  background: var(--teal);
  color: #000000;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(0, 240, 181, 0.5);
}


/* ==========================================================================
   COOKIE CONSENT BANNER (GDPR / Indian DPDP Act Compliance)
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 520px;
  background: rgba(10, 14, 20, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 240, 181, 0.3);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  z-index: 99999;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner p {
  color: var(--fog);
  font-size: 0.85rem;
  line-height: 1.45;
  margin: 0;
}
.cookie-banner p a {
  color: var(--teal);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-actions .btn {
  padding: 8px 16px;
  font-size: 0.82rem;
}

/* ==========================================================================
   LEGAL PAGES STYLING (Privacy Policy & Terms and Conditions)
   ========================================================================== */
.legal-page-header {
  padding: 60px 0 40px;
  background: radial-gradient(circle at top center, rgba(0, 240, 181, 0.08), transparent 70%);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.legal-section {
  margin-bottom: 40px;
}
.legal-section h2 {
  font-size: 1.4rem;
  color: #ffffff;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.legal-section p, .legal-section li {
  color: var(--fog);
  font-size: 0.95rem;
  line-height: 1.7;
}
.legal-section ul {
  padding-left: 20px;
  margin: 12px 0;
}
.legal-section li {
  margin-bottom: 8px;
}

