/* ==========================================================================
   BLINKBAND — Arabic Enterprise Portal Main Stylesheet
   ========================================================================== */

@import url('./variables.css');

/* --- Reset & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body, button, input, select, textarea,
h1, h2, h3, h4, h5, h6, p, span, div, a, li, th, td, label {
  font-family: 'DIN Next LT Arabic', 'DIN', -apple-system, sans-serif !important;
}

body {
  direction: rtl;
  text-align: right;
  background-color: var(--color-hero-bg);
  color: var(--color-silver);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Latin Numbers & LTR utility - Pure DIN */
.num, [dir="ltr"], .animate-counter, .stadium-counter, .b2c-price-val,
.spec-metric-number, .lab-hud-val, .spec-stat-val, .matrix-spec-val,
.terminal-latency-badge, .sensor-tab-metric, .b2c-qty-num, .spec-stat-num {
  font-family: 'DIN', 'DIN Next LT Arabic', sans-serif !important;
  direction: ltr;
  display: inline-block;
}

/* Custom Selection */
::selection {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* --- Typography System --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-arabic);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.25;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem); /* 40px - 72px */
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-white);
  line-height: 1.18;
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem); /* 32px - 52px */
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: clamp(1.125rem, 1.8vw, 1.25rem); /* 18px - 20px */
  color: var(--color-silver);
  font-weight: 400;
  max-width: 680px;
  line-height: 1.7;
}

/* Sections on White / Light Backgrounds */
.section-light h2,
.section-light h3,
.section-light h4 {
  color: var(--color-midnight);
}

.section-light .section-subtitle,
.section-light p {
  color: #475569;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 10px 26px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  box-shadow: 0 0 25px rgba(8, 120, 209, 0.25);
  transition: all 0.3s ease;
}

.section-tag.dark-tag {
  background: rgba(8, 120, 209, 0.15);
  color: #38bdf8;
  border: 1.5px solid rgba(56, 189, 248, 0.4);
}

.section-tag.light-tag {
  background: rgba(8, 120, 209, 0.1);
  color: var(--color-primary);
  border: 1.5px solid rgba(8, 120, 209, 0.3);
}

.pulse-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #38bdf8;
  box-shadow: 0 0 12px #38bdf8;
  display: inline-block;
  animation: pulseGlow 1.8s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.35); opacity: 1; box-shadow: 0 0 16px #38bdf8; }
}

/* --- Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  font-family: var(--font-arabic);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--button-radius);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition-fast), box-shadow var(--transition-smooth), background-color var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(8, 120, 209, 0.3);
}

.btn-primary:hover {
  background: #0984e3;
  box-shadow: 0 8px 30px rgba(8, 120, 209, 0.5);
}

.btn-secondary-dark {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  border: 1px solid var(--color-border-dark);
  backdrop-filter: blur(12px);
}

.btn-secondary-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-secondary-light {
  background: #FFFFFF;
  color: var(--color-midnight);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-subtle);
}

.btn-secondary-light:hover {
  background: #F8FAFC;
  border-color: rgba(8, 120, 209, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.btn svg {
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(-4px); /* RTL arrow forward */
}

/* --- Navigation Bar --- */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background-color var(--transition-smooth), backdrop-filter var(--transition-smooth), border-color var(--transition-smooth), padding var(--transition-smooth);
}

.navbar-wrapper.scrolled {
  background-color: rgba(5, 8, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
}

.navbar-wrapper.over-light {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: rtl !important;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-brand img {
  height: 48px !important;
  width: auto !important;
  max-height: 48px !important;
  object-fit: contain !important;
  transition: transform var(--transition-fast);
}

.nav-brand img:hover {
  transform: scale(1.05);
}

.nav-brand-text {
  font-family: var(--font-latin);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.navbar-wrapper.over-light .nav-brand-text {
  color: var(--color-midnight);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  direction: rtl !important;
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #94A3B8;
  text-decoration: none;
  position: relative;
  transition: color var(--transition-fast);
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.navbar-wrapper.over-light .nav-link {
  color: #64748B;
}

.navbar-wrapper.over-light .nav-link:hover,
.navbar-wrapper.over-light .nav-link.active {
  color: var(--color-midnight);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  direction: rtl !important;
}

/* Language Switcher */
.lang-switch {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  font-size: 0.875rem;
  font-family: var(--font-latin);
  font-weight: 700;
  color: var(--color-silver);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-switch:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-wrapper.over-light .lang-switch {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  color: #334155;
}

.nav-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 6px;
}

/* ==========================================================================
   SECTION 1: HERO SECTION (#05080B)
   ========================================================================== */
.section-hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--color-hero-bg);
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 640px;
}

.hero-subheadline {
  font-size: clamp(1.125rem, 1.6vw, 1.35rem);
  color: #94A3B8;
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-number {
  font-family: var(--font-latin);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
}

.metric-label {
  font-size: 0.875rem;
  color: #64748B;
  font-weight: 500;
}

/* 3D Visual Center in Hero */
.hero-visual-stage {
  position: relative;
  height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.hero-ambient-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 120, 209, 0.22) 0%, rgba(5, 8, 11, 0) 70%);
  pointer-events: none;
  filter: blur(40px);
  animation: pulseAmbient 6s ease-in-out infinite alternate;
}

@keyframes pulseAmbient {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0.9; }
}

.hero-band-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
}

.hero-band-img {
  max-width: 90%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.85));
  transition: transform 0.15s ease-out;
  user-select: none;
  -webkit-user-drag: none;
  animation: floatBand 5s ease-in-out infinite alternate;
}

@keyframes floatBand {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(1.2deg); }
  100% { transform: translateY(6px) rotate(-0.8deg); }
}

/* Orbiting Capability Badges */
.floating-badge {
  position: absolute;
  padding: 10px 18px;
  background: rgba(17, 24, 32, 0.75);
  border: 1px solid rgba(8, 120, 209, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  z-index: 5;
}

.floating-badge:hover {
  border-color: var(--color-primary);
  transform: scale(1.06);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary);
}

.badge-identity   { top: 12%; right: 5%; animation: badgeBob 4.5s ease-in-out infinite alternate; }
.badge-access     { top: 25%; left: 0%;  animation: badgeBob 5.2s ease-in-out 0.5s infinite alternate; }
.badge-interact   { bottom: 22%; right: 2%; animation: badgeBob 4.8s ease-in-out 1s infinite alternate; }
.badge-biometrics { bottom: 10%; left: 10%; animation: badgeBob 5.5s ease-in-out 1.5s infinite alternate; }

@keyframes badgeBob {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* ==========================================================================
   SECTION 2: BRAND STATEMENT (WHITE #FFFFFF)
   ========================================================================== */
.section-statement {
  background-color: var(--color-white);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.statement-content {
  max-width: 900px;
  margin: 0 auto;
}

.statement-heading {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--color-midnight);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.statement-sub {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  color: #475569;
  font-weight: 500;
  line-height: 1.6;
}

.statement-sub span {
  color: var(--color-primary);
  font-weight: 700;
}

/* ==========================================================================
   SECTION 3: THE WOW INTERACTION ("كل شيء يبدأ من معصمك") (MIDNIGHT #071018)
   ========================================================================== */
.section-hub {
  background-color: var(--color-midnight);
  padding: var(--section-spacing-desktop) 0;
  position: relative;
  overflow: hidden;
}

.hub-header {
  text-align: center;
  margin-bottom: 60px;
}

.hub-interactive-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  min-height: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-center-core {
  position: relative;
  z-index: 10;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-band-display {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.7));
  transition: transform var(--transition-smooth), filter var(--transition-smooth);
}

.hub-pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(8, 120, 209, 0.25);
  pointer-events: none;
  animation: expandRing 4s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.hub-pulse-ring:nth-child(1) { width: 440px; height: 440px; }
.hub-pulse-ring:nth-child(2) { width: 560px; height: 560px; animation-delay: 1.3s; }
.hub-pulse-ring:nth-child(3) { width: 700px; height: 700px; animation-delay: 2.6s; }

@keyframes expandRing {
  0% { transform: scale(0.7); opacity: 0.8; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* 4 Cardinal Nodes */
.hub-node-btn {
  position: absolute;
  z-index: 20;
  background: var(--color-graphite-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-smooth);
  color: var(--color-white);
  min-width: 220px;
}

.hub-node-btn:hover, .hub-node-btn.active {
  background: #192636;
  border-color: var(--color-primary);
  box-shadow: 0 0 30px rgba(8, 120, 209, 0.4);
  transform: scale(1.05);
}

.node-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(8, 120, 209, 0.15);
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.hub-node-btn:hover .node-icon, .hub-node-btn.active .node-icon {
  background: var(--color-primary);
  color: var(--color-white);
}

.node-info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.node-info p {
  font-size: 0.8125rem;
  color: #94A3B8;
  margin: 0;
}

/* Positions around the band */
.node-top       { top: 2%; left: 50%; transform: translateX(-50%); }
.node-top:hover, .node-top.active { transform: translateX(-50%) scale(1.05); }

.node-right     { right: 4%; top: 50%; transform: translateY(-50%); }
.node-right:hover, .node-right.active { transform: translateY(-50%) scale(1.05); }

.node-bottom    { bottom: 2%; left: 50%; transform: translateX(-50%); }
.node-bottom:hover, .node-bottom.active { transform: translateX(-50%) scale(1.05); }

.node-left      { left: 4%; top: 50%; transform: translateY(-50%); }
.node-left:hover, .node-left.active { transform: translateY(-50%) scale(1.05); }

/* Dynamic Capability Preview Bar */
.hub-preview-card {
  margin-top: 40px;
  background: rgba(21, 31, 43, 0.8);
  border: 1px solid rgba(8, 120, 209, 0.3);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  animation: fadeIn 0.4s ease;
}

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

.preview-text h3 {
  font-size: 1.35rem;
  color: var(--color-white);
  margin-bottom: 6px;
}

.preview-text p {
  color: var(--color-silver);
  font-size: 0.95rem;
}

/* ==========================================================================
   SECTION 4: SOLUTIONS ("حلول مصممة لعالمك") (70-80VH MEGA PANELS)
   ========================================================================== */
.section-solutions {
  background-color: #080C10;
  padding-top: var(--section-spacing-desktop);
  padding-bottom: var(--section-spacing-desktop);
}

.solutions-header {
  text-align: center;
  margin-bottom: 70px;
}

.solution-panels-stack {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.solution-panel {
  position: relative;
  min-height: 75vh;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  transition: border-color var(--transition-smooth);
}

.solution-panel:hover {
  border-color: rgba(8, 120, 209, 0.5);
}

.panel-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-panel:hover .panel-bg-image {
  transform: scale(1.03);
}

.panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(5, 8, 11, 0.96) 0%, rgba(5, 8, 11, 0.85) 45%, rgba(5, 8, 11, 0.4) 100%);
  z-index: 2;
}

/* In LTR mode flip gradient */
[dir="ltr"] .panel-overlay {
  background: linear-gradient(270deg, rgba(5, 8, 11, 0.96) 0%, rgba(5, 8, 11, 0.85) 45%, rgba(5, 8, 11, 0.4) 100%);
}

.panel-content {
  position: relative;
  z-index: 3;
  padding: 60px 70px;
  max-width: 680px;
}

.panel-icon-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 1.18rem;
  font-weight: 800;
  color: #38bdf8;
  background: rgba(8, 120, 209, 0.18);
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
  box-shadow: 0 4px 20px rgba(8, 120, 209, 0.25);
}

.sector-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
  animation: pulseDot 1.4s infinite;
  flex-shrink: 0;
}

.sector-svg-badge {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.panel-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--color-white);
  margin-bottom: 14px;
}

.panel-description {
  font-size: 1.15rem;
  color: #CBD5E1;
  margin-bottom: 24px;
  line-height: 1.65;
}

/* Live Sector Telemetry Strip */
.sector-kpi-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.kpi-mini-card {
  background: rgba(11, 18, 28, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.kpi-mini-card:hover {
  border-color: #38bdf8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(8, 120, 209, 0.3);
}

.kpi-mini-card .kpi-label {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.75rem;
  color: #94A3B8;
}

.kpi-mini-card .kpi-val {
  font-family: var(--font-latin) !important;
  font-size: 1.15rem;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.02em;
}

.panel-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 34px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(14, 23, 36, 0.8);
  backdrop-filter: blur(14px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.95rem;
  color: #F1F5F9;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-pill:hover {
  background: rgba(20, 34, 54, 0.95);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 6px 20px rgba(8, 120, 209, 0.25);
  transform: translateX(-3px);
  color: #FFFFFF;
}

.feature-pill svg {
  color: #38bdf8;
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION 5: THE JOURNEY ("من لحظة ارتدائه تبدأ التجربة") (SOFT WHITE #F5F7FA)
   ========================================================================== */
.section-journey {
  background-color: var(--color-soft-white);
  padding: var(--section-spacing-desktop) 0;
  position: relative;
}

.journey-header {
  text-align: center;
  margin-bottom: 70px;
}

.journey-steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
}

.journey-step-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  position: relative;
  display: flex;
  flex-direction: column;
}

.journey-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(8, 120, 209, 0.12);
  border-color: rgba(8, 120, 209, 0.3);
}

.step-number {
  font-family: var(--font-latin);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.85;
}

.step-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-midnight);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.9375rem;
  color: #64748B;
  line-height: 1.55;
  margin-top: auto;
}

/* ==========================================================================
   SECTION 6: INTEGRATED ECOSYSTEM ("سوار واحد. منظومة متكاملة.") (GRAPHITE #111820)
   ========================================================================== */
.section-services {
  background-color: var(--color-graphite);
  padding: var(--section-spacing-desktop) 0;
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.service-card {
  background: var(--color-graphite-card);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(8, 120, 209, 0.4);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(8, 120, 209, 0.12);
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9375rem;
  color: #94A3B8;
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 7: STADIUM WOW MOMENT ("تخيّلها...") (CINEMATIC PITCH BLACK)
   ========================================================================== */
.section-stadium {
  position: relative;
  min-height: 100vh;
  background-color: #030508;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}

.stadium-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.stadium-stage {
  position: relative;
  z-index: 5;
  max-width: 960px;
  margin: 0 auto;
}

/* Larger Grand Tag for لحظة الحماس الكبرى */
.stadium-grand-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 1.35rem;
  font-weight: 800;
  color: #38bdf8;
  background: rgba(8, 120, 209, 0.15);
  border: 1.5px solid rgba(56, 189, 248, 0.45);
  padding: 10px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 30px rgba(8, 120, 209, 0.35);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.stadium-grand-tag .pulse-dot-large {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 14px #38bdf8;
  animation: pulseDot 1.3s infinite;
}

.stadium-reveal-text {
  font-family: 'DIN Next LT Arabic', 'DIN', sans-serif !important;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.stadium-reveal-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.stadium-counter {
  font-family: 'DIN', 'DIN Next LT Arabic', sans-serif !important;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  color: var(--color-primary-light);
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(8, 120, 209, 0.7);
  margin-bottom: 24px;
}

.stadium-subtitle {
  font-family: 'DIN Next LT Arabic', 'DIN', sans-serif !important;
  font-size: 1.5rem;
  color: #CBD5E1;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* Always-Active Stadium Live Synchronized Beacon */
.stadium-live-beacon {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 1.15rem;
  font-weight: 700;
  color: #F8FAFC;
  background: rgba(15, 23, 42, 0.88);
  border: 1.5px solid rgba(56, 189, 248, 0.4);
  padding: 14px 34px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.35);
  backdrop-filter: blur(14px);
  transition: all 0.5s ease;
}

.beacon-pulse-core {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 12px #38bdf8;
  animation: pulseDot 1.2s infinite;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.btn-ignite-stadium {
  display: none;
}

@keyframes pulseClimax {
  0% { text-shadow: 0 0 15px rgba(8, 120, 209, 0.5); }
  100% { text-shadow: 0 0 45px rgba(8, 120, 209, 1); }
}

/* ==========================================================================
   SECTION 8: FAN EXPERIENCE (DUAL STAGE: MILESTONES + COMPANION CONSOLE)
   ========================================================================== */
.section-fans {
  background-color: var(--color-midnight);
  padding: var(--section-spacing-desktop) 0;
  position: relative;
}

/* 4-Tab Navigation Bar */
.fan-vis-nav-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 24px;
}

.fan-vis-tab-btn {
  background: rgba(15, 23, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: right;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fan-vis-tab-btn:hover {
  background: rgba(22, 34, 52, 0.9);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
}

.fan-vis-tab-btn.active {
  background: linear-gradient(135deg, rgba(8, 120, 209, 0.22) 0%, rgba(15, 23, 36, 0.95) 100%);
  border-color: #38bdf8;
  box-shadow: 0 10px 25px rgba(8, 120, 209, 0.25);
}

.vis-tab-num {
  font-family: var(--font-latin) !important;
  font-size: 1.5rem;
  font-weight: 800;
  color: #64748B;
  transition: color 0.3s ease;
  line-height: 1;
}

.fan-vis-tab-btn.active .vis-tab-num {
  color: #38bdf8;
}

.vis-tab-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vis-tab-text strong {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
}

.vis-tab-text span {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.8rem;
  color: #94A3B8;
}

/* Central Cockpit Frame */
.fan-vis-cockpit-frame {
  background: #080D14;
  border: 1.5px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 45px rgba(8, 120, 209, 0.15);
  overflow: hidden;
}

.vis-cockpit-topbar {
  background: rgba(11, 18, 28, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.vis-topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vis-console-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
  animation: pulseDot 1.4s infinite;
}

.vis-console-title {
  font-family: var(--font-latin) !important;
  font-size: 0.78rem;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.04em;
}

.vis-topbar-center {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.95rem;
  font-weight: 700;
  color: #38bdf8;
}

.vis-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vis-telemetry-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.78rem;
  color: #10b981;
}

.vis-telemetry-tag {
  font-family: var(--font-latin) !important;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748B;
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 10px;
  border-radius: 4px;
}

/* Viewport Area */
.vis-cockpit-viewport {
  padding: 36px 32px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(8, 120, 209, 0.08) 0%, transparent 70%);
}

.vis-graphic-stage {
  width: 100%;
  animation: fadeIn 0.4s ease forwards;
}

/* Stage 1: Setup & Wallet Graphic */
.vis-setup-grid {
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  align-items: center;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.vis-pass-card {
  background: rgba(17, 26, 40, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vis-pass-chip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.vis-pass-tag {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.8rem;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.vis-pass-holder {
  margin-bottom: 18px;
}

.vis-holder-label {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.78rem;
  color: #64748B;
  display: block;
}

.vis-holder-name {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 1.15rem;
  color: var(--color-white);
}

.vis-pass-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vis-pass-meta span {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.72rem;
  color: #64748B;
  display: block;
}

.vis-pass-meta strong {
  font-family: var(--font-latin) !important;
  font-size: 0.95rem;
  color: #38bdf8;
}

/* Center Data Streams */
.vis-data-stream-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 120px;
}

.stream-beam-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38bdf8, transparent);
  position: relative;
}

.stream-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
  animation: streamFlow 1.8s infinite linear;
}

.stream-p2 { animation-delay: 0.6s; }
.stream-p3 { animation-delay: 1.2s; }

@keyframes streamFlow {
  0% { left: 0%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.stream-badge {
  font-family: var(--font-latin) !important;
  font-size: 0.68rem;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(8, 120, 209, 0.2);
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: 14px;
}

/* Right Capsule Card */
.vis-band-provision-card {
  background: rgba(17, 26, 40, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.band-capsule-graphic {
  position: relative;
  margin-bottom: 16px;
}

.capsule-pulse-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.3) 0%, transparent 70%);
  animation: pulseGlow 2s infinite ease-in-out;
}

.band-sync-stats {
  margin-bottom: 14px;
}

.sync-pct {
  font-family: var(--font-latin) !important;
  font-size: 1.6rem;
  font-weight: 800;
  color: #38bdf8;
  display: block;
}

.sync-desc {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.82rem;
  color: #94A3B8;
}

.wallet-balance-pill {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.85rem;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wallet-balance-pill strong {
  font-family: var(--font-latin) !important;
  color: #38bdf8;
  font-weight: 800;
}

/* Stage 2: Stadium Wayfinding Vector Map */
.vis-wayfinding-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.stadium-map-card {
  background: rgba(12, 19, 30, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.wayfinding-map-svg {
  width: 100%;
  height: auto;
  display: block;
}

.animated-route-line {
  stroke-dasharray: 8 6;
  animation: routeDash 1.6s linear infinite;
}

@keyframes routeDash {
  to { stroke-dashoffset: -28; }
}

.wayfinding-details-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.turnstile-telemetry-box {
  background: rgba(17, 26, 40, 0.85);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.turnstile-telemetry-box .box-title {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.82rem;
  color: #6ee7b7;
}

.turnstile-telemetry-box .box-val {
  font-family: var(--font-latin) !important;
  font-size: 1.4rem;
  font-weight: 800;
  color: #10b981;
}

.route-steps-box {
  background: rgba(17, 26, 40, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.route-step-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.86rem;
  color: #E2E8F0;
}

.route-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  flex-shrink: 0;
}

/* Stage 3: Live Stadium Light Matrix & Poll */
.vis-match-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.light-matrix-card {
  background: rgba(12, 19, 30, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.light-matrix-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.matrix-grid-36 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
}

.matrix-led-node {
  height: 24px;
  border-radius: 4px;
  background: rgba(8, 120, 209, 0.25);
  border: 1px solid rgba(56, 189, 248, 0.3);
  animation: matrixWave 2s infinite ease-in-out;
}

@keyframes matrixWave {
  0%, 100% { background: rgba(8, 120, 209, 0.2); box-shadow: none; }
  50% { background: #38bdf8; box-shadow: 0 0 14px #38bdf8; border-color: #ffffff; }
}

.match-poll-card {
  background: rgba(17, 26, 40, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.poll-option-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.poll-info-bar {
  display: flex;
  justify-content: space-between;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.88rem;
  color: var(--color-white);
}

.poll-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.poll-fill {
  height: 100%;
  background: linear-gradient(90deg, #0878D1, #38bdf8);
  border-radius: var(--radius-full);
  transition: width 1s ease;
}

.in-seat-delivery-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.84rem;
  color: #E2E8F0;
}

/* Stage 4: 3D Holographic Souvenir Pass */
.vis-souvenir-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.souvenir-pass-wrap {
  perspective: 1000px;
}

.souvenir-pass-card-3d {
  background: linear-gradient(135deg, rgba(25, 38, 58, 0.9) 0%, rgba(9, 14, 22, 0.98) 100%);
  border: 1.5px solid rgba(251, 191, 36, 0.4);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(251, 191, 36, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.souvenir-shimmer-layer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.12) 50%, transparent 65%);
  animation: shimmerPass 3.5s infinite ease-in-out;
  pointer-events: none;
}

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

.souvenir-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.souvenir-title {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-white);
}

.souvenir-tag {
  font-family: var(--font-latin) !important;
  font-size: 0.76rem;
  font-weight: 800;
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.4);
  background: rgba(251, 191, 36, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.souvenir-id-row {
  margin-bottom: 20px;
}

.souvenir-hash {
  font-family: var(--font-latin) !important;
  font-size: 0.85rem;
  color: #94A3B8;
  letter-spacing: 0.08em;
}

.loyalty-vault-widget {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vault-kpi-card {
  background: rgba(17, 26, 40, 0.85);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: var(--radius-lg);
  padding: 22px;
  text-align: center;
}

.vault-kpi-amount {
  font-family: var(--font-latin) !important;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fbbf24;
}

.vault-voucher-card {
  background: rgba(17, 26, 40, 0.85);
  border: 1px dashed rgba(56, 189, 248, 0.4);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Cockpit Footer: 4 Operational Pillars */
.vis-cockpit-footer {
  background: rgba(7, 12, 19, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vis-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.vis-feat-icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 2px;
}

.vis-feat-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vis-feat-text strong {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--color-white);
}

.vis-feat-text span {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.82rem;
  color: #94A3B8;
  line-height: 1.55;
}

/* ==========================================================================
   SECTION 9: REAL-TIME CUSTOMIZER ("هويتك. سوارك. تجربتك.") (WHITE #FFFFFF)
   ========================================================================== */
.section-customizer {
  background-color: var(--color-white);
  padding: var(--section-spacing-desktop) 0;
  color: var(--color-midnight);
}

.customizer-header {
  text-align: center;
  margin-bottom: 60px;
}

.customizer-studio {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  background: #FAFCFF;
  border: 1px solid rgba(8, 120, 209, 0.15);
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: 0 20px 45px rgba(7, 16, 24, 0.06);
}

.customizer-viewport {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #EDF4FA 0%, #E2ECF5 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  overflow: hidden;
}

.customizer-band-img {
  max-width: 85%;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.15));
  transition: transform var(--transition-smooth), opacity 0.25s ease;
}

/* Live Custom Uploaded Logo Overlay on Capsule */
.capsule-logo-layer {
  position: absolute;
  top: 36%;
  left: 50.4%;
  transform: translate(-50%, -50%) rotate(28deg);
  max-width: 48px;
  max-height: 32px;
  pointer-events: none;
  z-index: 10;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.capsule-engrave-text-layer {
  position: absolute;
  top: 36%;
  left: 50.4%;
  transform: translate(-50%, -50%) rotate(28deg);
  font-family: 'DIN', -apple-system, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0,0,0,0.95), 0 0 5px rgba(255,255,255,0.45);
  pointer-events: none;
  z-index: 11;
  display: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.customizer-controls {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.control-group-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-midnight);
  margin-bottom: 14px;
}

.color-swatches {
  display: flex;
  align-items: center;
  gap: 14px;
}

.color-swatch-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.color-swatch-btn:hover {
  transform: scale(1.12);
}

.color-swatch-btn.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 14px rgba(8, 120, 209, 0.4);
  transform: scale(1.15);
}

.swatch-black   { background-color: #111111; }
.swatch-navy    { background-color: #1a365d; }
.swatch-orange  { background-color: #ea580c; }
.swatch-silver  { background-color: #94a3b8; }
.swatch-white   { background-color: #ffffff; border: 1px solid #cbd5e1; }

.logo-upload-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-upload-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 2px dashed rgba(8, 120, 209, 0.4);
  background: rgba(8, 120, 209, 0.04);
  border-radius: var(--button-radius);
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-upload-logo:hover {
  background: rgba(8, 120, 209, 0.08);
  border-color: var(--color-primary);
}

.packaging-toggle-group {
  display: flex;
  gap: 12px;
}

.packaging-btn {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid #CBD5E1;
  background: var(--color-white);
  border-radius: var(--button-radius);
  cursor: pointer;
  font-weight: 600;
  color: #475569;
  transition: all var(--transition-fast);
  text-align: center;
}

.packaging-btn.active {
  border-color: var(--color-primary);
  background: rgba(8, 120, 209, 0.06);
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(8, 120, 209, 0.1);
}

/* ==========================================================================
   SECTION 10: OEM / ODM (LIGHT #F8FAFC)
   ========================================================================== */
.section-oem {
  background-color: #F8FAFC;
  padding: var(--section-spacing-desktop) 0;
  color: var(--color-midnight);
}

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

.oem-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.oem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.oem-card h4 {
  font-size: 1.25rem;
  color: var(--color-midnight);
  margin-bottom: 8px;
}

.oem-card p {
  color: #64748B;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 11: ENTERPRISE SECTORS
   ========================================================================== */
.section-sectors {
  background-color: var(--color-graphite);
  padding: var(--section-spacing-desktop) 0;
}

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

.sector-card {
  background: var(--color-graphite-card);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-smooth);
}

.sector-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

/* ==========================================================================
   SECTION 12: SPONSORS VALUE FLOW
   ========================================================================== */
.section-sponsors {
  background-color: var(--color-midnight);
  padding: var(--section-spacing-desktop) 0;
  text-align: center;
}

.sponsor-flow-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.flow-node {
  background: var(--color-graphite);
  border: 1px solid rgba(8, 120, 209, 0.3);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.flow-arrow {
  color: var(--color-primary);
  font-size: 1.75rem;
  animation: pulseArrow 1.5s infinite;
}

@keyframes pulseArrow {
  0%, 100% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(-6px); opacity: 1; }
}

/* ==========================================================================
   SECTION 13: WHY BLINKBAND CONVERGENCE
   ========================================================================== */
.section-why {
  background-color: #060A0E;
  padding: var(--section-spacing-desktop) 0;
  position: relative;
  overflow: hidden;
}

.convergence-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.legacy-scattered-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legacy-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  color: #94A3B8;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: line-through;
  opacity: 0.7;
}

.convergence-core-card {
  background: radial-gradient(circle, #101F2F 0%, #07121C 100%);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 0 50px rgba(8, 120, 209, 0.25);
  text-align: center;
}

.convergence-pills-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.convergence-pill {
  background: rgba(8, 120, 209, 0.2);
  border: 1px solid var(--color-primary);
  color: var(--color-white);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9375rem;
}

/* ==========================================================================
   SECTION 14: TECHNOLOGY & SECURITY (WHITE #FFFFFF)
   ========================================================================== */
.section-tech {
  background-color: var(--color-white);
  padding: var(--section-spacing-desktop) 0;
  color: var(--color-midnight);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.tech-card {
  background: var(--color-soft-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.security-strip {
  margin-top: 60px;
  background: var(--color-midnight);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.security-items {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.sec-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  font-size: 0.9375rem;
  font-weight: 600;
}

/* ==========================================================================
   SECTION 15: FINAL CTA & ENTERPRISE DEMO FORM (MIDNIGHT #071018)
   ========================================================================== */
.section-final-cta {
  background-color: var(--color-midnight);
  padding: var(--section-spacing-desktop) 0;
  position: relative;
}

.final-cta-container {
  max-width: 920px;
  margin: 0 auto;
  background: var(--color-graphite-card);
  border: 1px solid rgba(8, 120, 209, 0.35);
  border-radius: var(--radius-xl);
  padding: 60px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

.cta-header-center {
  text-align: center;
  margin-bottom: 40px;
}

.cta-headline {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--color-white);
  margin-bottom: 12px;
}

.enterprise-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(5, 8, 11, 0.7);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--button-radius);
  font-family: var(--font-arabic);
  font-size: 1rem;
  color: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 16px rgba(8, 120, 209, 0.35);
}

.form-select option {
  background: var(--color-graphite);
  color: var(--color-white);
}

.form-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.checkbox-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--color-silver);
  transition: all var(--transition-fast);
}

.checkbox-card input {
  accent-color: var(--color-primary);
  width: 16px;
  height: 16px;
}

.checkbox-card:hover {
  background: rgba(8, 120, 209, 0.12);
  border-color: rgba(8, 120, 209, 0.3);
  color: var(--color-white);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.portal-footer {
  background-color: var(--color-hero-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

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

.footer-brand img {
  height: 34px;
  width: auto;
}

.footer-copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.875rem;
  color: #64748B;
}

/* Custom Cursor removed as requested — clean native OS cursor used */
.custom-cursor-dot,
.custom-cursor-ring {
  display: none !important;
}

/* ==========================================================================
   NEW SECTION: PRODUCT & INTERACTIVE SPECS
   ========================================================================== */
.section-product {
  background-color: var(--color-midnight);
  padding: var(--section-spacing-desktop) 0;
  position: relative;
  overflow: hidden;
}

.specs-hub-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}

.specs-viewport {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #101F2F 0%, #071018 75%);
  border: 1px solid rgba(8, 120, 209, 0.25);
  border-radius: var(--radius-xl);
  padding: 30px;
}

.specs-band-img {
  max-width: 85%;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
  transition: transform var(--transition-smooth), filter var(--transition-smooth);
}

.spec-active-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(17, 24, 32, 0.9);
  border: 1px solid var(--color-primary);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.spec-active-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.spec-active-text h4 {
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 3px;
}

.spec-active-text p {
  font-size: 0.875rem;
  color: #CBD5E1;
  line-height: 1.45;
  margin: 0;
}

.specs-buttons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.spec-pill-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-graphite-card);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  cursor: pointer;
  color: var(--color-silver);
  transition: all var(--transition-fast);
  text-align: right;
  font-family: var(--font-arabic);
}

.spec-pill-btn:hover {
  border-color: rgba(8, 120, 209, 0.4);
  background: #192636;
  color: var(--color-white);
  transform: translateY(-2px);
}

.spec-pill-btn.active {
  border-color: var(--color-primary);
  background: rgba(8, 120, 209, 0.15);
  color: var(--color-white);
  box-shadow: 0 0 20px rgba(8, 120, 209, 0.3);
}

.spec-pill-emoji {
  font-size: 1.35rem;
  line-height: 1;
}

.spec-pill-title {
  font-size: 0.9375rem;
  font-weight: 600;
}

/* ==========================================================================
   NEW SECTION: 3 ENTERPRISE MODELS (CORE / ACTIVE / ENTERPRISE)
   ========================================================================== */
.section-models {
  background-color: var(--color-hero-bg);
  padding: var(--section-spacing-desktop) 0;
  position: relative;
}

.models-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.model-tab-btn {
  padding: 14px 32px;
  background: var(--color-graphite);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-full);
  color: #94A3B8;
  font-family: var(--font-arabic);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.model-tab-btn:hover {
  color: var(--color-white);
  border-color: rgba(8, 120, 209, 0.4);
}

.model-tab-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 0 25px rgba(8, 120, 209, 0.5);
}

.model-display-card {
  background: var(--color-graphite-card);
  border: 1px solid rgba(8, 120, 209, 0.3);
  border-radius: var(--radius-xl);
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.model-visual-stage {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #0F1D2C 0%, #071018 80%);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.model-band-img {
  max-width: 85%;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.7));
  transition: transform var(--transition-smooth);
}

/* Simulated Live Vitals HUD for ACTIVE Model */
.vitals-sim-hud {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.vital-badge {
  background: rgba(7, 16, 24, 0.85);
  border: 1px solid rgba(8, 120, 209, 0.5);
  backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-white);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.vital-pulse-heart {
  color: #ef4444;
  animation: heartPulse 1s infinite alternate;
}

@keyframes heartPulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.3); }
}

.vitals-stream-connector {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  background: rgba(8, 120, 209, 0.1);
  border: 1px dashed rgba(8, 120, 209, 0.4);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.75rem;
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.model-info-content h3 {
  font-size: 2.25rem;
  margin-bottom: 8px;
  color: var(--color-white);
}

.model-target-tag {
  font-size: 0.95rem;
  color: var(--color-primary-light);
  font-weight: 600;
  margin-bottom: 18px;
}

.model-desc-text {
  font-size: 1.1rem;
  color: #CBD5E1;
  line-height: 1.65;
  margin-bottom: 28px;
}

.model-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.model-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--color-white);
}

.model-feat-item svg {
  color: var(--color-primary-light);
  flex-shrink: 0;
}

/* ==========================================================================
   NEW SECTION: PRICING & ENTERPRISE COMPARISON MATRIX
   ========================================================================== */
.section-pricing {
  background-color: var(--color-graphite);
  padding: var(--section-spacing-desktop) 0;
  position: relative;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
  margin-bottom: 70px;
}

.pricing-card {
  background: var(--color-graphite-card);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 120, 209, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured {
  border-color: var(--color-primary);
  background: radial-gradient(circle at top, #18283d 0%, #151f2b 100%);
  box-shadow: 0 0 35px rgba(8, 120, 209, 0.25);
}

.pricing-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-card-header {
  margin-bottom: 24px;
}

.pricing-tier-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.pricing-tier-sub {
  font-size: 0.875rem;
  color: #94A3B8;
}

.pricing-price-box {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-status {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-light);
}

.price-note {
  font-size: 0.8125rem;
  color: #64748B;
  margin-top: 4px;
}

.pricing-included-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.pricing-included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-included-list li {
  font-size: 0.9375rem;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-included-list li svg {
  color: var(--color-primary-light);
  flex-shrink: 0;
}

/* Comparison Table */
.matrix-container {
  background: var(--color-graphite-card);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-xl);
  overflow-x: auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: right;
  min-width: 650px;
}

.matrix-table th, .matrix-table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.matrix-table th {
  background: rgba(5, 8, 11, 0.6);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
}

.matrix-table td {
  font-size: 0.9375rem;
  color: #CBD5E1;
}

.matrix-table td:not(:first-child), .matrix-table th:not(:first-child) {
  text-align: center;
}

.matrix-table tr:hover td {
  background: rgba(8, 120, 209, 0.05);
}

.check-yes {
  color: #38bdf8;
  font-weight: 800;
  font-size: 1.2rem;
}

.check-no {
  color: #475569;
  font-weight: 600;
  font-size: 1.2rem;
}

/* ==========================================================================
   UPDATED: BRAND LOGO ENHANCEMENTS & MODERN ENTERPRISE ICON SYSTEM
   ========================================================================== */



/* Enlarge Brand Logo in Footer */
.footer-brand img {
  height: 52px !important;
  width: auto;
  max-height: 52px;
  filter: drop-shadow(0 2px 10px rgba(8, 120, 209, 0.2));
}

/* Modern Vector Icon Styles (No Emojis) */
.spec-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(8, 120, 209, 0.12);
  border: 1px solid rgba(8, 120, 209, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  flex-shrink: 0;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.spec-pill-btn:hover .spec-icon-box,
.spec-pill-btn.active .spec-icon-box {
  background: var(--color-primary);
  border-color: var(--color-primary-light);
  color: var(--color-white);
  box-shadow: 0 0 20px rgba(8, 120, 209, 0.6);
  transform: scale(1.08);
}

.spec-svg-icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}

/* Active Spec Card Icon in Specs Hub */
.spec-active-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(8, 120, 209, 0.2);
  border: 1.5px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
  box-shadow: 0 0 25px rgba(8, 120, 209, 0.4);
}

.spec-active-icon-box svg {
  width: 28px;
  height: 28px;
}

/* Modern Active Vitals HUD Icons */
.vital-badge-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary-light);
  flex-shrink: 0;
}

.vital-pulse-svg {
  color: #38bdf8;
  animation: pulseBeat 1.2s ease-in-out infinite;
}

@keyframes pulseBeat {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 2px #38bdf8); }
  50% { transform: scale(1.2); filter: drop-shadow(0 0 10px #38bdf8); }
}

/* Modern Sector Vector Badges in Solutions */
.sector-svg-badge {
  width: 22px;
  height: 22px;
  color: var(--color-primary-light);
  flex-shrink: 0;
}


/* ==========================================================================
   B2C CONSUMER EXPERIENCE STYLES (NEW FUNNEL)
   ========================================================================== */

/* 1. Hero Dual Pathway Navigation */
.hero-pathways {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.pathway-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #94A3B8;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.pathway-link:hover {
  color: var(--color-primary-light);
}

.pathway-link svg {
  transition: transform var(--transition-fast);
}

.pathway-link:hover svg {
  transform: translateX(-3px);
}

/* 2. Lifestyle Section ("سوارك يفهم يومك") */
.section-lifestyle {
  background-color: var(--color-midnight);
  padding: var(--section-spacing-desktop) 0;
  position: relative;
  overflow: hidden;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.lifestyle-img-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lifestyle-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.lifestyle-img-card:hover img {
  transform: scale(1.03);
}

.lifestyle-badge-float {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(7, 16, 24, 0.85);
  border: 1px solid rgba(8, 120, 209, 0.4);
  backdrop-filter: blur(14px);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* 3. Screenless 6-Feature Grid */
.section-screenless {
  background-color: var(--color-hero-bg);
  padding: var(--section-spacing-desktop) 0;
  text-align: center;
}

.screenless-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  margin-bottom: 40px;
}

.screenless-card {
  background: var(--color-graphite);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: right;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.screenless-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5);
}

.screenless-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(8, 120, 209, 0.12);
  border: 1px solid rgba(8, 120, 209, 0.25);
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.screenless-card h3 {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 8px;
}

.screenless-card p {
  font-size: 0.9375rem;
  color: #94A3B8;
  line-height: 1.6;
}

.screenless-motto {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-light);
  letter-spacing: 0.02em;
  margin-top: 20px;
}

/* 4. App Showcase Section */
.section-app-showcase {
  background-color: var(--color-midnight);
  padding: var(--section-spacing-desktop) 0;
  overflow: hidden;
}

.app-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
}

.app-mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1200px;
  transform-style: preserve-3d;
  width: 100%;
}

.app-mockup-wrap img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  will-change: transform;
}

/* 3D Glass Glare Effect */
.phone-glass-glare {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: overlay;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

/* Dynamic Island Sync Capsule */
.phone-dynamic-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8), 0 0 15px rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  backdrop-filter: blur(12px);
  user-select: none;
  transition: all 0.3s ease;
}

.island-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: pulseLiveDot 2s infinite;
}

@keyframes pulseLiveDot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.island-icon {
  font-size: 0.9rem;
}

.island-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* Interactive App Screen HUD Overlay — Perfectly aligned with phone image and cards */
.app-screen-interactive-overlay {
  position: relative;
  width: 100%;
  margin-top: 14px;
  transform: none;
  box-sizing: border-box;
  background: rgba(7, 16, 24, 0.94);
  border: 1px solid rgba(56, 189, 248, 0.5);
  border-radius: 14px;
  padding: 10px 18px;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(8, 120, 209, 0.25);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  z-index: 8;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.app-screen-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.app-overlay-title {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.82rem;
  font-weight: 700;
  color: #CBD5E1;
}

.app-sim-score-val {
  font-family: var(--font-latin) !important;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Metric Progress Bar */
.app-screen-visual-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.visual-track-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease;
}

.app-overlay-desc {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.78rem;
  color: #CBD5E1;
  line-height: 1.35;
  transition: opacity 0.2s ease;
}

.app-overlay-badges-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.app-mini-badge {
  font-family: 'DIN', 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 2px 8px;
  color: #94A3B8;
  transition: all 0.2s ease;
}

.app-feature-tab {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: rgba(17, 24, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-feature-tab:hover {
  background: rgba(24, 38, 56, 0.85);
  border-color: rgba(8, 120, 209, 0.5);
  transform: translateX(-6px);
}

.app-feature-tab.active {
  background: linear-gradient(90deg, rgba(8, 120, 209, 0.25) 0%, rgba(17, 24, 32, 0.9) 100%);
  border-color: #38bdf8;
  box-shadow: 0 0 25px rgba(8, 120, 209, 0.35);
  transform: translateX(-8px);
}

.app-feature-tab.active .spec-icon-box {
  background: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(8, 120, 209, 0.6);
}

/* 5. Battery & Specs Visual Grid */
.section-consumer-specs {
  background-color: var(--color-hero-bg);
  padding: 100px 0;
}

.consumer-specs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.spec-stat-card {
  background: var(--color-graphite-card);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: 28px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.spec-stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
}

.spec-stat-val {
  font-family: var(--font-latin);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
}

.spec-stat-lbl {
  font-size: 0.875rem;
  color: #94A3B8;
  font-weight: 600;
}

/* 6. Choose Color Showcase */
.section-consumer-colors {
  background-color: var(--color-midnight);
  padding: var(--section-spacing-desktop) 0;
  text-align: center;
}

.color-cards-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 40px;
}

.color-product-card {
  background: var(--color-graphite);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.color-product-card:hover, .color-product-card.active {
  border-color: var(--color-primary);
  background: #182638;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.color-product-card img {
  max-width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 16px;
  transition: transform var(--transition-fast);
}

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

.color-name-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
}

/* 7. Consumer Pricing Tier Cards ($50 / $100 / $150) */
.section-consumer-pricing {
  background-color: var(--color-hero-bg);
  padding: var(--section-spacing-desktop) 0;
}

.consumer-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.b2c-pricing-card {
  background: var(--color-graphite);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-xl);
  padding: 44px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-fast);
}

.b2c-pricing-card:hover {
  border-color: rgba(8, 120, 209, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.b2c-pricing-card.b2c-personal {
  border-color: var(--color-primary);
  background: radial-gradient(circle at top, #192a3e 0%, #111820 100%);
  box-shadow: 0 0 35px rgba(8, 120, 209, 0.3);
}

.b2c-price-val {
  font-family: var(--font-latin);
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.b2c-price-currency {
  font-size: 1.1rem;
  color: var(--color-primary-light);
  font-weight: 600;
  margin-right: 6px;
}

.b2c-sar-approx {
  font-size: 0.875rem;
  color: #64748B;
  margin-top: 4px;
}

.b2c-qty-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 8, 11, 0.6);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: 8px 16px;
  margin-bottom: 20px;
}

.b2c-qty-btn {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 4px 12px;
}

/* 8. Consumer FAQ Accordion */
.section-faq {
  background-color: var(--color-midnight);
  padding: var(--section-spacing-desktop) 0;
}

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--color-graphite-card);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover, .faq-item.open {
  border-color: var(--color-primary);
}

.faq-question {
  padding: 22px 26px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-answer {
  padding: 0 26px 22px;
  font-size: 0.95rem;
  color: #94A3B8;
  line-height: 1.65;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* 9. The B2B Gateway Divider */
.section-b2b-gateway {
  background: linear-gradient(180deg, #05080B 0%, #0c1825 50%, #071018 100%);
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid rgba(8, 120, 209, 0.3);
  border-bottom: 1px solid rgba(8, 120, 209, 0.3);
  position: relative;
}

.gateway-box {
  max-width: 860px;
  margin: 0 auto;
}

.gateway-headline {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 18px;
}

.gateway-sub {
  font-size: 1.25rem;
  color: #CBD5E1;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* Instant Checkout Modal */
.checkout-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.checkout-modal-card {
  background: var(--color-graphite-card);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  position: relative;
  animation: fadeIn 0.3s ease;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  color: #94A3B8;
  cursor: pointer;
  padding: 4px;
}

.modal-close-btn:hover {
  color: var(--color-white);
}


/* ==========================================================================
   JOYFUL & DYNAMIC UI/UX MICRO-INTERACTIONS (ANIMATIONS & VIBRANT TOUCHES)
   ========================================================================== */

/* 1. Global Interactive Element Touch Feedback */
button, .btn, .color-product-card, .screenless-card, .b2c-pricing-card, .spec-stat-card {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

button:active, .btn:active {
  transform: scale(0.97) !important;
}

/* 2. Button Luminous Sheen & Glow Effect */
.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0878D1 0%, #00b4d8 100%) !important;
  box-shadow: 0 4px 20px rgba(8, 120, 209, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3) !important;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: rotate(25deg);
  transition: all 0.75s ease;
  pointer-events: none;
}

.btn-primary:hover::after {
  left: 130%;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 180, 216, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.4) !important;
}

.btn-secondary-dark:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(8, 120, 209, 0.6) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* 3. Screenless Cards: Joyful Multi-tone Glow & Lift */
.screenless-card {
  background: linear-gradient(160deg, rgba(24, 38, 56, 0.5) 0%, rgba(17, 24, 32, 0.8) 100%) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  position: relative;
  overflow: hidden;
}

.screenless-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary-light), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.screenless-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  border-color: rgba(8, 120, 209, 0.5) !important;
  box-shadow: 0 20px 40px -10px rgba(8, 120, 209, 0.25), 0 10px 20px rgba(0, 0, 0, 0.5) !important;
}

.screenless-card:hover::before {
  opacity: 1;
}

.screenless-card:hover .screenless-icon {
  background: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(8, 120, 209, 0.6);
  transform: scale(1.1) rotate(4deg);
}

/* Specific vibrant colors per metric on hover */
.screenless-card:nth-child(1):hover .screenless-icon { background: #ef4444; box-shadow: 0 0 20px rgba(239, 68, 68, 0.6); } /* Heart */
.screenless-card:nth-child(2):hover .screenless-icon { background: #06b6d4; box-shadow: 0 0 20px rgba(6, 182, 212, 0.6); } /* SpO2 */
.screenless-card:nth-child(3):hover .screenless-icon { background: #8b5cf6; box-shadow: 0 0 20px rgba(139, 92, 246, 0.6); } /* Sleep */
.screenless-card:nth-child(4):hover .screenless-icon { background: #f59e0b; box-shadow: 0 0 20px rgba(245, 158, 11, 0.6); } /* Stress */
.screenless-card:nth-child(5):hover .screenless-icon { background: #ec4899; box-shadow: 0 0 20px rgba(236, 72, 153, 0.6); } /* Temp */
.screenless-card:nth-child(6):hover .screenless-icon { background: #10b981; box-shadow: 0 0 20px rgba(16, 185, 129, 0.6); } /* Sport */

/* 4. Spec Stat Cards: Gentle Ambient Floating */
.spec-stat-card {
  background: linear-gradient(145deg, rgba(20, 32, 48, 0.6) 0%, rgba(13, 19, 27, 0.8) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  position: relative;
}

.spec-stat-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(56, 189, 248, 0.6) !important;
  box-shadow: 0 15px 30px -5px rgba(8, 120, 209, 0.3) !important;
}

.spec-stat-card:hover .spec-stat-val {
  color: #38bdf8 !important;
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
}

/* 5. Color Cards: Playful Swatch Selection */
.color-product-card {
  background: linear-gradient(180deg, rgba(24, 38, 56, 0.4) 0%, rgba(17, 24, 32, 0.7) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  position: relative;
}

.color-product-card:hover {
  transform: translateY(-8px) scale(1.03) !important;
  border-color: var(--color-primary-light) !important;
  box-shadow: 0 20px 40px -10px rgba(8, 120, 209, 0.4) !important;
}

.color-product-card.active {
  border-color: #38bdf8 !important;
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.35), inset 0 0 15px rgba(56, 189, 248, 0.1) !important;
  background: linear-gradient(180deg, rgba(24, 48, 72, 0.6) 0%, rgba(17, 24, 32, 0.9) 100%) !important;
}

.color-product-card:hover img {
  transform: scale(1.1) rotate(-2deg);
}

/* 6. Pricing Cards: Vibrant, Joyful B2C Cards */
.b2c-pricing-card {
  background: linear-gradient(170deg, rgba(22, 34, 48, 0.7) 0%, rgba(14, 20, 28, 0.9) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
}

.b2c-pricing-card:hover {
  transform: translateY(-10px) !important;
  border-color: rgba(56, 189, 248, 0.6) !important;
  box-shadow: 0 25px 50px -10px rgba(8, 120, 209, 0.35) !important;
}

.b2c-pricing-card.b2c-personal {
  background: linear-gradient(160deg, rgba(14, 40, 68, 0.8) 0%, rgba(17, 24, 32, 0.95) 100%) !important;
  border: 1.5px solid #38bdf8 !important;
  box-shadow: 0 0 40px rgba(8, 120, 209, 0.4) !important;
}

.b2c-pricing-card.b2c-personal:hover {
  box-shadow: 0 0 60px rgba(56, 189, 248, 0.6) !important;
  transform: translateY(-12px) scale(1.02) !important;
}

/* 7. Floating Hero Badges: Organic Floating Animation */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.floating-badge {
  animation: floatSlow 4s ease-in-out infinite !important;
}

.floating-badge.badge-identity { animation-delay: 0s !important; }
.floating-badge.badge-access { animation-delay: 1s !important; }
.floating-badge.badge-interact { animation-delay: 2s !important; }
.floating-badge.badge-biometrics { animation-delay: 3s !important; }

/* 8. Lifestyle Floating Badge Pulse */
.lifestyle-badge-float {
  animation: floatSlow 3.5s ease-in-out infinite;
  border-color: rgba(56, 189, 248, 0.6) !important;
  box-shadow: 0 10px 30px rgba(8, 120, 209, 0.3) !important;
}

/* 9. Glowing Ambient Orbs for B2C Sections */
.section-lifestyle::before,
.section-screenless::before,
.section-consumer-pricing::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 120, 209, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section-lifestyle::before { top: 10%; right: -100px; }
.section-screenless::before { bottom: 0%; left: -150px; }
.section-consumer-pricing::before { top: 20%; left: 50%; transform: translateX(-50%); }


/* ==========================================================================
   INTERACTIVE & IMMERSIVE SENSOR LAB (CANVAS 60FPS WAVE ENGINE)
   ========================================================================== */
.sensor-lab-stage {
  background: radial-gradient(circle at center, #101c2c 0%, #071018 70%);
  border: 1px solid rgba(8, 120, 209, 0.35);
  border-radius: var(--radius-2xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 50px;
}

.lab-canvas-container {
  position: relative;
  width: 100%;
  height: 380px;
  background: rgba(5, 8, 12, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
}

#sensorLabCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.lab-hud-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(7, 16, 24, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  pointer-events: none;
}

.lab-hud-val {
  font-family: var(--font-latin);
  font-size: 1.75rem;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
}

.lab-hud-status {
  font-size: 0.8125rem;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lab-hud-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  animation: pulseDot 1.2s infinite;
}

.sensor-selectors-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sensor-tab-btn {
  background: rgba(17, 24, 32, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: right;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sensor-tab-btn:hover {
  background: rgba(24, 38, 56, 0.9);
  border-color: rgba(8, 120, 209, 0.5);
  transform: translateX(-6px);
}

.sensor-tab-btn.active {
  background: linear-gradient(90deg, rgba(8, 120, 209, 0.25) 0%, rgba(17, 24, 32, 0.9) 100%);
  border-color: var(--color-primary-light);
  box-shadow: 0 0 25px rgba(8, 120, 209, 0.35);
  transform: translateX(-8px);
}

.sensor-tab-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sensor-tab-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(8, 120, 209, 0.15);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sensor-tab-btn.active .sensor-tab-icon {
  background: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(8, 120, 209, 0.6);
}

.sensor-tab-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 2px;
}

.sensor-tab-sub {
  font-size: 0.8125rem;
  color: #94A3B8;
}

.sensor-tab-metric {
  font-family: var(--font-latin);
  font-size: 1.15rem;
  font-weight: 700;
  color: #38bdf8;
}

/* ==========================================================================
   24-HOUR INTERACTIVE DAY/NIGHT DIAL
   ========================================================================== */
.dial-scrubber-wrap {
  margin-top: 28px;
  background: rgba(17, 24, 32, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
}

.dial-nodes-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 12px;
}

.dial-node-btn {
  font-family: 'DIN Next LT Arabic', 'DIN', sans-serif !important;
  background: none;
  border: none;
  color: #94A3B8;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.dial-node-btn:hover, .dial-node-btn.active {
  color: #38bdf8;
}

.dial-node-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid transparent;
  transition: all 0.25s ease;
}

.dial-node-btn.active .dial-node-dot {
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
  transform: scale(1.3);
}

.dial-track-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  position: relative;
}

.dial-progress-fill {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, #38bdf8, #0878D1);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* ==========================================================================
   CENTERED UBITC CREDENTIAL IN FOOTER
   ========================================================================== */
.footer-ubitc-centered {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin: 40px auto 20px !important;
  text-align: center !important;
  width: 100% !important;
}

.ubitc-label-top {
  display: block !important;
  text-align: center !important;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.95rem !important;
  color: #94A3B8 !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  margin: 0 auto !important;
}

.ubitc-logo-footer {
  display: block !important;
  margin: 0 auto !important;
  height: 38px !important;
  width: auto !important;
  max-height: 38px !important;
  max-width: 150px !important;
  object-fit: contain !important;
  opacity: 0.95 !important;
  transition: opacity var(--transition-fast), transform var(--transition-fast) !important;
}

.ubitc-logo-footer:hover {
  opacity: 1 !important;
  transform: scale(1.05) !important;
}


/* ==========================================================================
   FLAGSHIP HARDWARE SPECS (4 CLEAN CENTERED ARCHITECTURAL CARDS)
   ========================================================================== */
.specs-flagship-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 50px auto 0;
  width: 100%;
}

.flagship-spec-card {
  background: linear-gradient(170deg, rgba(20, 32, 48, 0.6) 0%, rgba(11, 16, 23, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 44px 22px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  min-height: 250px;
}

.flagship-spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38bdf8, transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.flagship-spec-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 25px 50px -10px rgba(8, 120, 209, 0.4);
}

.flagship-spec-card:hover::before {
  opacity: 1;
}

.spec-metric-number {
  font-family: var(--font-latin) !important;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.flagship-spec-card:hover .spec-metric-number {
  transform: scale(1.04);
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.6);
}

.spec-metric-label {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 1.05rem;
  font-weight: 600;
  color: #94A3B8;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.flagship-spec-card:hover .spec-metric-label {
  color: #F1F5F9;
}

/* Secondary Hover Detail Reveal */
.spec-hover-detail {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.85rem;
  font-weight: 500;
  color: #38bdf8;
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  transform: translateY(10px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

.flagship-spec-card:hover .spec-hover-detail {
  opacity: 1;
  max-height: 60px;
  transform: translateY(0);
  margin-top: 4px;
}

/* Background Ambient Glow */
.spec-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 120, 209, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.flagship-spec-card:hover .spec-bg-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.6);
}

/* 1. Card 1 Battery 14-Day Timeline */
.spec-timeline-track {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  margin: 6px 0 2px;
  position: relative;
  z-index: 2;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.timeline-step {
  width: 5px;
  height: 12px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.flagship-spec-card:hover .spec-timeline-track {
  opacity: 1;
}

.flagship-spec-card:hover .timeline-step {
  background: #38bdf8;
  box-shadow: 0 0 6px #38bdf8;
}

.flagship-spec-card:hover .timeline-step:nth-child(n+12) {
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

/* 2. Card 2 195mAh Energy Core Ring */
.spec-energy-ring {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border: 1.5px dashed rgba(56, 189, 248, 0.4);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.flagship-spec-card:hover .spec-energy-ring {
  opacity: 1;
  animation: energyRingRotate 6s linear infinite;
}

@keyframes energyRingRotate {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.12); }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

/* 3. Card 3 BLE 5.3 Concentric Radar Pulses */
.spec-radar-pulse {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 1.5px solid #38bdf8;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.flagship-spec-card:hover .spec-radar-pulse {
  animation: bleRadarExpand 2s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

.spec-radar-pulse.delay-1 {
  animation-delay: 0.6s !important;
}

.spec-radar-pulse.delay-2 {
  animation-delay: 1.2s !important;
}

@keyframes bleRadarExpand {
  0% { transform: translate(-50%, -50%) scale(0.4); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
}

/* 4. Card 4 3ATM Floating Luminous Water Droplets */
.water-droplets-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.droplet {
  position: absolute;
  bottom: 0;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: radial-gradient(circle at 35% 35%, #e0f2fe 0%, #38bdf8 50%, rgba(8, 120, 209, 0.7) 100%);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.9), inset 0 0 4px #ffffff;
  opacity: 0;
}

.droplet.d1 { width: 14px; height: 18px; left: 18%; }
.droplet.d2 { width: 10px; height: 13px; left: 38%; }
.droplet.d3 { width: 16px; height: 20px; left: 52%; }
.droplet.d4 { width: 9px;  height: 12px; left: 70%; }
.droplet.d5 { width: 13px; height: 16px; left: 84%; }

.flagship-spec-card:hover .droplet.d1 {
  animation: dropletFloatUp 2.2s cubic-bezier(0.2, 0.6, 0.3, 1) infinite;
  animation-delay: 0s;
}

.flagship-spec-card:hover .droplet.d2 {
  animation: dropletFloatUp 1.8s cubic-bezier(0.2, 0.6, 0.3, 1) infinite;
  animation-delay: 0.4s;
}

.flagship-spec-card:hover .droplet.d3 {
  animation: dropletFloatUp 2.4s cubic-bezier(0.2, 0.6, 0.3, 1) infinite;
  animation-delay: 0.8s;
}

.flagship-spec-card:hover .droplet.d4 {
  animation: dropletFloatUp 2s cubic-bezier(0.2, 0.6, 0.3, 1) infinite;
  animation-delay: 1.2s;
}

.flagship-spec-card:hover .droplet.d5 {
  animation: dropletFloatUp 2.1s cubic-bezier(0.2, 0.6, 0.3, 1) infinite;
  animation-delay: 1.5s;
}

@keyframes dropletFloatUp {
  0% {
    transform: translateY(20px) scale(0.5);
    opacity: 0;
  }
  25% {
    opacity: 0.95;
    transform: translateY(-40px) scale(1);
  }
  75% {
    opacity: 0.85;
    transform: translateY(-130px) scale(1.08) translateX(6px);
  }
  100% {
    transform: translateY(-210px) scale(0.7) translateX(-4px);
    opacity: 0;
  }
}

.water-wave-ambient {
  position: absolute;
  bottom: -20px;
  left: -25%;
  right: -25%;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.35) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
}

.flagship-spec-card:hover .water-wave-ambient {
  opacity: 1;
  animation: waterWaveSway 3s ease-in-out infinite alternate;
}

@keyframes waterWaveSway {
  0% { transform: scaleY(0.8) translateY(2px); }
  100% { transform: scaleY(1.2) translateY(-4px); }
}

/* ==========================================================================
   ENTERPRISE COCKPIT DASHBOARD & 4 CLASSY PILLARS
   ========================================================================== */
.ecosystem-cockpit-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 36px;
  align-items: stretch;
  margin-top: 50px;
}

/* All 8 Classy Feature Pillars (Right Column) */
.ecosystem-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ecosystem-pillar-card {
  background: rgba(17, 24, 32, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ecosystem-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 3px;
  background: transparent;
  transition: background 0.3s ease;
}

.ecosystem-pillar-card:hover,
.ecosystem-pillar-card.active {
  background: linear-gradient(135deg, rgba(20, 32, 48, 0.9) 0%, rgba(11, 16, 23, 0.98) 100%);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
  transform: translateY(-3px);
}

.ecosystem-pillar-card.active::before {
  background: #38bdf8;
}

.pillar-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.pillar-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ecosystem-pillar-card:hover .pillar-icon-box,
.ecosystem-pillar-card.active .pillar-icon-box {
  background: rgba(8, 120, 209, 0.2);
  border-color: #38bdf8;
  transform: scale(1.08);
}

.pillar-title {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 2px;
  line-height: 1.3;
}

.pillar-metric-tag {
  font-family: var(--font-latin) !important;
  font-size: 0.72rem;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 0.01em;
}

.pillar-desc {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.82rem;
  color: #94A3B8;
  line-height: 1.5;
  margin: 0;
}

/* Left Column: Live Enterprise Cockpit Dashboard */
.ecosystem-dashboard-col {
  display: flex;
}

.cockpit-frame {
  width: 100%;
  background: rgba(11, 16, 23, 0.95);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(8, 120, 209, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.cockpit-topbar {
  background: rgba(7, 16, 24, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cockpit-status-live {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cockpit-beacon {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: syncPulse 1.8s infinite;
}

.cockpit-status-title {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.88rem;
  font-weight: 700;
  color: #F1F5F9;
}

.cockpit-stats-pills {
  display: flex;
  gap: 10px;
}

.cockpit-pill {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.8rem;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.cockpit-pill .num {
  color: #38bdf8;
  font-weight: 700;
}

.cockpit-viewport {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  transition: all 0.3s ease;
}

/* Dynamic View Components Inside Cockpit */
.view-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.view-heading {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
}

.view-badge-live {
  font-family: var(--font-latin) !important;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
}

/* 1. Gate Velocity Bars */
.gate-velocity-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gate-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gate-info-row {
  display: flex;
  justify-content: space-between;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.88rem;
  color: #CBD5E1;
}

.gate-info-row .gate-stat {
  font-family: var(--font-latin) !important;
  color: #38bdf8;
  font-weight: 700;
}

.gate-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.gate-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. Cashless Transaction Bar Chart */
.cashless-chart-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  height: 140px;
  padding: 10px 0;
}

.chart-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  height: 100%;
  justify-content: flex-end;
}

.chart-bar-pill {
  width: 100%;
  max-width: 32px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #38bdf8 0%, #075985 100%);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
  transition: height 0.5s ease;
}

.chart-bar-label {
  font-family: var(--font-latin) !important;
  font-size: 0.72rem;
  color: #64748B;
}

/* 3. Stadium Light Matrix (8x4 grid of LEDs) */
.stadium-matrix-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.matrix-led {
  aspect-ratio: 1;
  border-radius: 50%;
  background: #0878D1;
  box-shadow: 0 0 8px #0878D1;
  transition: all 0.3s ease;
  animation: matrixWave 2.4s ease-in-out infinite alternate;
}

@keyframes matrixWave {
  0% { transform: scale(0.8); opacity: 0.4; filter: drop-shadow(0 0 4px #0878D1); }
  50% { transform: scale(1.15); opacity: 1; filter: drop-shadow(0 0 10px #38bdf8); }
  100% { transform: scale(0.8); opacity: 0.4; filter: drop-shadow(0 0 4px #0878D1); }
}

/* 4. Analytics Telemetry View */
.analytics-telemetry-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 12px 0;
}

.telemetry-kpi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
}

.telemetry-kpi-val {
  font-family: var(--font-latin) !important;
  font-size: 1.45rem;
  font-weight: 800;
  color: #38bdf8;
  margin-bottom: 4px;
}

.telemetry-kpi-label {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.78rem;
  color: #94A3B8;
}

/* View Bottom Insight Bar */
.view-bottom-insight {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.88rem;
  color: #E2E8F0;
}


/* ==========================================================================
   INTERACTIVE FAN JOURNEY STYLES
   ========================================================================== */
.fan-phase-card {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.fan-phase-card:hover,
.fan-phase-card.active {
  transform: translateY(-8px) scale(1.02) !important;
  border-color: #38bdf8 !important;
  box-shadow: 0 20px 45px -10px rgba(8, 120, 209, 0.4) !important;
  background: linear-gradient(160deg, #182a3e 0%, #111820 100%) !important;
}

.fan-step-btn {
  background: none;
  border: none;
  color: #94A3B8;
  font-family: var(--font-arabic) !important;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.fan-step-btn:hover, .fan-step-btn.active {
  color: #38bdf8;
}

.fan-step-btn.active .dial-node-dot {
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
  transform: scale(1.3);
}

/* ==========================================================================
   15. BLINKBAND E-COMMERCE & CUSTOMER SUITE STYLING
   ========================================================================== */

/* Top Pathway Toggle */
.header-pathway-toggle {
  display: flex;
  align-items: center;
  background: rgba(14, 23, 36, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 4px;
}

.pathway-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s ease;
}

.pathway-btn.active {
  background: linear-gradient(135deg, #0878D1 0%, #38bdf8 100%);
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(8, 120, 209, 0.4);
}

/* Nav Action Buttons: Account & Cart */
.nav-account-btn, .nav-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 36, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  color: #FFFFFF;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.nav-account-btn:hover, .nav-cart-btn:hover {
  border-color: #38bdf8;
  background: rgba(22, 34, 52, 0.95);
  box-shadow: 0 0 15px rgba(8, 120, 209, 0.25);
}

.cart-counter-badge {
  background: #38bdf8;
  color: #05080B;
  font-family: var(--font-latin) !important;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px #38bdf8;
}

.cart-counter-badge.pulse-anim {
  animation: badgePulse 0.4s ease;
}

@keyframes badgePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.user-avatar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

/* Slide-over Cart Drawer */
.cart-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex;
  justify-content: flex-end;
}

.cart-drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer-panel {
  width: 480px;
  max-width: 100vw;
  height: 100%;
  background: #080D14;
  border-left: 1.5px solid rgba(56, 189, 248, 0.3);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer-backdrop.active .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 20px 24px;
  background: rgba(11, 18, 28, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-header-title h3 {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 1.25rem;
  color: #FFFFFF;
  margin: 0;
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94A3B8;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-close-btn:hover {
  color: #FFFFFF;
  border-color: #38bdf8;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-empty-view {
  text-align: center;
  padding: 60px 20px;
  margin: auto 0;
}

.empty-cart-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.cart-item-card {
  background: rgba(15, 23, 36, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: all 0.25s ease;
}

.cart-item-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
}

.cart-item-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-thumb img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cart-item-title {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.98rem;
  color: #FFFFFF;
  margin: 0;
}

.cart-item-del-btn {
  background: transparent;
  border: none;
  color: #64748B;
  cursor: pointer;
  font-size: 0.9rem;
}

.cart-item-del-btn:hover {
  color: #ef4444;
}

.cart-item-spec {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.78rem;
  color: #94A3B8;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.laser-engrave-pill {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
}

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.cart-qty-stepper {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cart-qty-stepper button {
  background: transparent;
  border: none;
  color: #FFFFFF;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 1rem;
}

.cart-qty-stepper button:hover {
  background: rgba(56, 189, 248, 0.2);
  color: #38bdf8;
}

.cart-qty-stepper span {
  padding: 0 10px;
  font-size: 0.88rem;
  color: #FFFFFF;
}

.cart-item-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: #38bdf8;
}

.cart-drawer-footer {
  padding: 20px 24px;
  background: rgba(11, 18, 28, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-rewards-quick-bar {
  background: rgba(56, 189, 248, 0.1);
  border: 1px dashed rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-rewards-quick-bar:hover {
  background: rgba(56, 189, 248, 0.18);
  border-color: #38bdf8;
}

.rewards-text {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.8rem;
  color: #E2E8F0;
}

.btn-quick-redeem {
  background: #38bdf8;
  color: #05080B;
  border: none;
  border-radius: 4px;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  cursor: pointer;
}

.cart-coupon-row {
  display: flex;
  gap: 8px;
}

.cart-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.85rem;
  color: #94A3B8;
}

.breakdown-row.total-row {
  font-size: 1.15rem;
  color: #FFFFFF;
  padding-top: 4px;
}

.breakdown-row.total-row strong {
  color: #38bdf8;
}

.btn-checkout-main {
  width: 100%;
  padding: 14px;
  font-size: 1.05rem;
}

.cart-trust-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-badge {
  font-family: var(--font-latin) !important;
  font-size: 0.7rem;
  color: #64748B;
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 8px;
  border-radius: 4px;
}

/* Modals Backdrop (Auth, Dashboard, Tracking, Checkout) */
.ecom-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ecom-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.ecom-modal-card {
  background: #0B121C;
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-xl);
  padding: 32px;
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(8, 120, 209, 0.2);
  max-height: 90vh;
  overflow-y: auto;
}

.auth-modal-card {
  max-width: 480px;
}

.dashboard-modal-card {
  max-width: 780px;
  padding: 0;
  overflow: hidden;
}

/* Auth Tabs */
.auth-tabs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px;
  border-radius: var(--radius-md);
}

.auth-tab-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-tab-btn.active {
  background: #38bdf8;
  color: #05080B;
}

.otp-digit {
  width: 50px;
  height: 55px;
  background: rgba(0, 0, 0, 0.5);
  border: 1.5px solid rgba(56, 189, 248, 0.4);
  border-radius: 8px;
  text-align: center;
  font-family: var(--font-latin) !important;
  font-size: 1.6rem;
  font-weight: 800;
  color: #38bdf8;
}

/* Dashboard Styles */
.dash-top-banner {
  background: linear-gradient(135deg, #101B2B 0%, #080D14 100%);
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.dash-user-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dash-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.dash-user-name {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 1.25rem;
  color: #FFFFFF;
  margin: 0;
}

.dash-user-status {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.8rem;
  color: #10b981;
}

.dash-kpi-capsules {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-capsule {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  text-align: center;
}

.dash-capsule .capsule-label {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.72rem;
  color: #94A3B8;
  display: block;
}

.dash-capsule .capsule-val {
  font-size: 1.15rem;
  color: #38bdf8;
}

.dash-logout-btn {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.82rem;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.dash-navbar {
  display: flex;
  background: rgba(7, 12, 19, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow-x: auto;
}

.dash-nav-btn {
  background: transparent;
  border: none;
  color: #94A3B8;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 20px;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.dash-nav-btn:hover, .dash-nav-btn.active {
  color: #38bdf8;
  border-bottom-color: #38bdf8;
  background: rgba(56, 189, 248, 0.05);
}

.dash-tab-section {
  display: none;
  padding: 24px 28px;
  max-height: 60vh;
  overflow-y: auto;
}

.dash-tab-section.active {
  display: block;
}

.dash-order-card {
  background: rgba(15, 23, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-bottom: 14px;
}

.dash-order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.order-id {
  font-size: 1.1rem;
  font-weight: 800;
  color: #38bdf8;
}

.order-date {
  font-size: 0.82rem;
  color: #64748B;
  margin-right: 8px;
}

.order-status-badge {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.order-status-badge.in-transit {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.order-status-badge.delivered {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.dash-order-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.dash-order-item-row {
  display: flex;
  justify-content: space-between;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.88rem;
  color: #E2E8F0;
}

.dash-order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.82rem;
  color: #94A3B8;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Rewards Hub in Dashboard */
.rewards-hub-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rewards-banner {
  background: linear-gradient(135deg, rgba(8, 120, 209, 0.25) 0%, rgba(15, 23, 36, 0.9) 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rewards-banner h4 {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 1.2rem;
  color: #FFFFFF;
  margin: 0 0 4px;
}

.rewards-banner p {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.85rem;
  color: #94A3B8;
  margin: 0;
}

.rewards-balance-badge {
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.rewards-balance-badge span {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.76rem;
  color: #94A3B8;
  display: block;
}

.rewards-balance-badge strong {
  font-size: 1.5rem;
  color: #fbbf24;
}

.rewards-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.reward-catalog-item {
  background: rgba(15, 23, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.reward-item-icon {
  font-size: 1.5rem;
}

.reward-catalog-item h5 {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.95rem;
  color: #FFFFFF;
  margin: 0;
}

.reward-cost {
  font-size: 0.85rem;
  color: #fbbf24;
  font-weight: 700;
  margin-bottom: 6px;
}

/* My Bands Grid */
.bands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.my-band-card {
  background: rgba(15, 23, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.my-band-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-band-img img {
  max-width: 80%;
  max-height: 80%;
}

.my-band-info h5 {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.95rem;
  color: #FFFFFF;
  margin: 0 0 4px;
}

.band-tag {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.75rem;
  color: #10b981;
}

.band-telemetry-row {
  display: flex;
  gap: 12px;
  font-size: 0.76rem;
  color: #94A3B8;
  margin-top: 6px;
}

/* Referral Hub */
.referral-box-card {
  background: rgba(15, 23, 36, 0.8);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.referral-box-card h4 {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 1.3rem;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.referral-box-card p {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.9rem;
  color: #94A3B8;
  max-width: 480px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.referral-code-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px dashed rgba(251, 191, 36, 0.4);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.code-pill {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fbbf24;
  letter-spacing: 0.08em;
}

.referral-share-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.share-btn {
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: none;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.whatsapp-btn {
  background: #25D366;
  color: #FFFFFF;
}

.copy-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* 5-Stage Delivery Tracking Modal */
.tracking-modal-card {
  max-width: 680px;
}

.track-header-badge {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.8rem;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.track-info-capsules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px;
  margin: 18px 0 28px;
}

.track-info-capsules div {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.82rem;
  color: #94A3B8;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.track-info-capsules strong {
  font-size: 0.95rem;
  color: #FFFFFF;
}

.delivery-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0;
  position: relative;
}

.delivery-step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  text-align: center;
  max-width: 90px;
}

.step-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111A28;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #64748B;
  transition: all 0.3s ease;
}

.delivery-step-node.completed .step-circle {
  background: #10b981;
  border-color: #10b981;
  color: #FFFFFF;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.4);
}

.delivery-step-node.active .step-circle {
  background: #38bdf8;
  border-color: #38bdf8;
  color: #05080B;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.6);
  animation: pulseDot 1.4s infinite;
}

.step-label {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.75rem;
  color: #94A3B8;
  line-height: 1.3;
}

.delivery-step-node.active .step-label {
  color: #38bdf8;
  font-weight: 700;
}

.delivery-step-line {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  margin: -24px 6px 0;
  z-index: 1;
}

.delivery-step-line.completed {
  background: #10b981;
}

.delivery-step-line.active {
  background: linear-gradient(90deg, #10b981, #38bdf8);
}

.tracking-footer-alert {
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.85rem;
  color: #E2E8F0;
}

/* Multi-Step Checkout Modal */
.checkout-stepper-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.checkout-step-indicator {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 8px;
  text-align: center;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.78rem;
  color: #64748B;
  transition: all 0.25s ease;
}

.checkout-step-indicator.active {
  background: rgba(56, 189, 248, 0.15);
  border-color: #38bdf8;
  color: #38bdf8;
  font-weight: 700;
}

.checkout-step-indicator.completed {
  background: rgba(16, 185, 129, 0.15);
  border-color: #10b981;
  color: #10b981;
}

.payment-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.payment-card-option {
  background: rgba(15, 23, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-card-option:hover {
  border-color: rgba(56, 189, 248, 0.4);
}

.payment-card-option input[type="radio"] {
  accent-color: #38bdf8;
  margin-top: 3px;
}

.pay-option-content strong {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.92rem;
  color: #FFFFFF;
  display: block;
}

.pay-option-content span {
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.76rem;
  color: #94A3B8;
  display: block;
  margin-top: 2px;
}

.receipt-box-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
  margin-top: 14px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.88rem;
  color: #CBD5E1;
}

/* Global Floating Toast */
.ecom-global-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: rgba(8, 13, 20, 0.95);
  border: 1.5px solid #38bdf8;
  color: #FFFFFF;
  font-family: 'DIN Next LT Arabic', sans-serif !important;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(8, 120, 209, 0.4);
  z-index: 20000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.ecom-global-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Hero Watch Living Floating & Breathing Effects */
@keyframes heroWatchFloat {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-16px) rotate(1.2deg) scale(1.02);
  }
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
}

@keyframes heroAuraPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.55;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.95;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.55;
  }
}

.hero-watch-floating {
  animation: heroWatchFloat 4.8s ease-in-out infinite;
  will-change: transform;
}

.hero-aura-pulsing {
  animation: heroAuraPulse 4.8s ease-in-out infinite;
  will-change: transform, opacity;
}



